UNPKG

godex

Version:

Javascript Library for Pokemon Go

2,738 lines (2,733 loc) 111 kB
/** levels.js | list of level data **/ var levelsData = { "1": { cpm: 0.094, dust: 200 }, "1.5": { cpm: 0.135137432, dust: 200 }, "2": { cpm: 0.16639787, dust: 200 }, "2.5": { cpm: 0.192650919, dust: 200 }, "3": { cpm: 0.21573247, dust: 400 }, "3.5": { cpm: 0.236572661, dust: 400 }, "4": { cpm: 0.25572005, dust: 400 }, "4.5": { cpm: 0.273530381, dust: 400 }, "5": { cpm: 0.29024988, dust: 600 }, "5.5": { cpm: 0.306057377, dust: 600 }, "6": { cpm: 0.3210876, dust: 600 }, "6.5": { cpm: 0.335445036, dust: 600 }, "7": { cpm: 0.34921268, dust: 800 }, "7.5": { cpm: 0.362457751, dust: 800 }, "8": { cpm: 0.37523559, dust: 800 }, "8.5": { cpm: 0.387592406, dust: 800 }, "9": { cpm: 0.39956728, dust: 1000 }, "9.5": { cpm: 0.411193551, dust: 1000 }, "10": { cpm: 0.42250001, dust: 1000 }, "10.5": { cpm: 0.432926419, dust: 1000 }, "11": { cpm: 0.44310755, dust: 1300 }, "11.5": { cpm: 0.4530599578, dust: 1300 }, "12": { cpm: 0.46279839, dust: 1300 }, "12.5": { cpm: 0.472336083, dust: 1300 }, "13": { cpm: 0.48168495, dust: 1600 }, "13.5": { cpm: 0.4908558, dust: 1600 }, "14": { cpm: 0.49985844, dust: 1600 }, "14.5": { cpm: 0.508701765, dust: 1600 }, "15": { cpm: 0.51739395, dust: 1900 }, "15.5": { cpm: 0.525942511, dust: 1900 }, "16": { cpm: 0.53435433, dust: 1900 }, "16.5": { cpm: 0.542635767, dust: 1900 }, "17": { cpm: 0.55079269, dust: 2200 }, "17.5": { cpm: 0.558830576, dust: 2200 }, "18": { cpm: 0.56675452, dust: 2200 }, "18.5": { cpm: 0.574569153, dust: 2200 }, "19": { cpm: 0.58227891, dust: 2500 }, "19.5": { cpm: 0.589887917, dust: 2500 }, "20": { cpm: 0.59740001, dust: 2500 }, "20.5": { cpm: 0.604818814, dust: 2500 }, "21": { cpm: 0.61215729, dust: 3000 }, "21.5": { cpm: 0.619399365, dust: 3000 }, "22": { cpm: 0.62656713, dust: 3000 }, "22.5": { cpm: 0.633644533, dust: 3000 }, "23": { cpm: 0.64065295, dust: 3500 }, "23.5": { cpm: 0.647576426, dust: 3500 }, "24": { cpm: 0.65443563, dust: 3500 }, "24.5": { cpm: 0.661214806, dust: 3500 }, "25": { cpm: 0.667934, dust: 4000 }, "25.5": { cpm: 0.674577537, dust: 4000 }, "26": { cpm: 0.68116492, dust: 4000 }, "26.5": { cpm: 0.687680648, dust: 4000 }, "27": { cpm: 0.69414365, dust: 4500 }, "27.5": { cpm: 0.700538673, dust: 4500 }, "28": { cpm: 0.70688421, dust: 4500 }, "28.5": { cpm: 0.713164996, dust: 4500 }, "29": { cpm: 0.71939909, dust: 5000 }, "29.5": { cpm: 0.725571552, dust: 5000 }, "30": { cpm: 0.7317, dust: 5000 }, "30.5": { cpm: 0.734741009, dust: 5000 }, "31": { cpm: 0.73776948, dust: 6000 }, "31.5": { cpm: 0.740785574, dust: 6000 }, "32": { cpm: 0.74378943, dust: 6000 }, "32.5": { cpm: 0.746781211, dust: 6000 }, "33": { cpm: 0.74976104, dust: 7000 }, "33.5": { cpm: 0.752729087, dust: 7000 }, "34": { cpm: 0.75568551, dust: 7000 }, "34.5": { cpm: 0.758630378, dust: 7000 }, "35": { cpm: 0.76156384, dust: 8000 }, "35.5": { cpm: 0.764486065, dust: 8000 }, "36": { cpm: 0.76739717, dust: 8000 }, "36.5": { cpm: 0.770297266, dust: 8000 }, "37": { cpm: 0.7731865, dust: 9000 }, "37.5": { cpm: 0.776064962, dust: 9000 }, "38": { cpm: 0.77893275, dust: 9000 }, "38.5": { cpm: 0.781790055, dust: 9000 }, "39": { cpm: 0.78463697, dust: 10000 }, "39.5": { cpm: 0.787473578, dust: 10000 }, "40": { cpm: 0.7903000, dust: 10000 } }; /** moves.js | list of move data **/ /* data garnered from pokemongo.gamepress.gg */ var movesData = { // quick moves "acid": { name: "Acid", moveType: "quick", type: "poison", attack: 10, cooldown: 1.05, energy: 10 }, "bite": { name: "Bite", moveType: "quick", type: "dark", attack: 6, cooldown: 0.5, energy: 7 }, "bubble": { name: "Bubble", moveType: "quick", type: "water", attack: 25, cooldown: 2.3, energy: 25 }, "bug-bite": { name: "Bug Bite", moveType: "quick", type: "bug", attack: 5, cooldown: 0.45, energy: 7 }, "bullet-punch": { name: "Bullet Punch", moveType: "quick", type: "steel", attack: 10, cooldown: 1.2, energy: 10 }, "confusion": { name: "Confusion", moveType: "quick", type: "psychic", attack: 15, cooldown: 1.51, energy: 14 }, "cut": { name: "Cut", moveType: "quick", type: "normal", attack: 12, cooldown: 1.13, energy: 10 }, "dragon-breath": { name: "Dragon Breath", moveType: "quick", type: "dragon", attack: 6, cooldown: 0.5, energy: 7 }, "ember": { name: "Ember", moveType: "quick", type: "fire", attack: 10, cooldown: 1.05, energy: 10 }, "feint-attack": { name: "Feint Attack", moveType: "quick", type: "dark", attack: 12, cooldown: 1.04, energy: 10 }, "fire-fang": { name: "Fire Fang", moveType: "quick", type: "fire", attack: 10, cooldown: 0.84, energy: 8 }, "frost-breath": { name: "Frost Breath", moveType: "quick", type: "ice", attack: 9, cooldown: 0.8, energy: 7 }, "fury-cutter": { name: "Fury Cutter", moveType: "quick", type: "bug", attack: 3, cooldown: 0.4, energy: 6 }, "ice-shard": { name: "Ice Shard", moveType: "quick", type: "ice", attack: 15, cooldown: 1.4, energy: 12 }, "karate-chop": { name: "Karate Chop", moveType: "quick", type: "fighting", attack: 6, cooldown: 0.8, energy: 8 }, "lick": { name: "Lick", moveType: "quick", type: "ghost", attack: 5, cooldown: 0.5, energy: 6 }, "low-kick": { name: "Low Kick", moveType: "quick", type: "fighting", attack: 5, cooldown: 0.6, energy: 7 }, "metal-claw": { name: "Metal Claw", moveType: "quick", type: "steel", attack: 8, cooldown: 0.63, energy: 7 }, "mud-shot": { name: "Mud Shot", moveType: "quick", type: "ground", attack: 6, cooldown: 0.55, energy: 7 }, "mud-slap": { name: "Mud Slap", moveType: "quick", type: "ground", attack: 15, cooldown: 1.35, energy: 12 }, "peck": { name: "Peck", moveType: "quick", type: "flying", attack: 10, cooldown: 1.15, energy: 10 }, "poison-jab": { name: "Poison Jab", moveType: "quick", type: "poison", attack: 12, cooldown: 1.05, energy: 10 }, "poison-sting": { name: "Poison Sting", moveType: "quick", type: "poison", attack: 6, cooldown: 0.58, energy: 8 }, "pound": { name: "Pound", moveType: "quick", type: "normal", attack: 7, cooldown: 0.54, energy: 7 }, "psycho-cut": { name: "Psycho Cut", moveType: "quick", type: "psychic", attack: 7, cooldown: 0.57, energy: 7 }, "quick-attack": { name: "Quick Attack", moveType: "quick", type: "normal", attack: 10, cooldown: 1.33, energy: 12 }, "razor-leaf": { name: "Razor Leaf", moveType: "quick", type: "grass", attack: 15, cooldown: 1.45, energy: 12 }, "rock-smash": { name: "Rock Smash", moveType: "quick", type: "fighting", attack: 15, cooldown: 1.41, energy: 12 }, "rock-throw": { name: "Rock Throw", moveType: "quick", type: "rock", attack: 12, cooldown: 1.36, energy: 15 }, "scratch": { name: "Scratch", moveType: "quick", type: "normal", attack: 6, cooldown: 0.5, energy: 7 }, "shadow-claw": { name: "Shadow Claw", moveType: "quick", type: "ghost", attack: 11, cooldown: 0.95, energy: 8 }, "spark": { name: "Spark", moveType: "quick", type: "electric", attack: 7, cooldown: 0.7, energy: 8 }, "splash": { name: "Splash", moveType: "quick", type: "water", attack: 0, cooldown: 1.23, energy: 10 }, "steel-wing": { name: "Steel Wing", moveType: "quick", type: "steel", attack: 15, cooldown: 1.33, energy: 12 }, "sucker-punch": { name: "Sucker Punch", moveType: "quick", type: "dark", attack: 7, cooldown: 0.7, energy: 9 }, "tackle": { name: "Tackle", moveType: "quick", type: "normal", attack: 12, cooldown: 1.1, energy: 10 }, "thunder-shock": { name: "Thunder Shock", moveType: "quick", type: "electric", attack: 5, cooldown: 0.6, energy: 8 }, "vine-whip": { name: "Vine Whip", moveType: "quick", type: "grass", attack: 7, cooldown: 0.65, energy: 7 }, "water-gun": { name: "Water Gun", moveType: "quick", type: "water", attack: 6, cooldown: 0.5, energy: 7 }, "wing-attack": { name: "Wing Attack", moveType: "quick", type: "flying", attack: 9, cooldown: 0.75, energy: 7 }, "zen-headbutt": { name: "Zen Headbutt", moveType: "quick", type: "psychic", attack: 12, cooldown: 1.05, energy: 9 }, // charge moves "aerial-ace": { name: "Aerial Ace", moveType: "charge", type: "flying", charges: 4, cooldown: 2.9, dodge: 0.6, critical: 0.05, attack: 30 }, "air-cutter": { name: "Air Cutter", moveType: "charge", type: "flying", charges: 4, cooldown: 3.3, dodge: 0.9, critical: 0.25, attack: 30 }, "ancient-power": { name: "Ancient Power", moveType: "charge", type: "rock", charges: 4, cooldown: 3.6, dodge: 0.35, critical: 0.05, attack: 35 }, "aqua-jet": { name: "Aqua Jet", moveType: "charge", type: "water", charges: 5, cooldown: 2.35, dodge: 0.4, critical: 0.05, attack: 25 }, "aqua-tail": { name: "Aqua Tail", moveType: "charge", type: "water", charges: 2, cooldown: 2.35, dodge: 0.2, critical: 0.05, attack: 45 }, "blizzard": { name: "Blizzard", moveType: "charge", type: "ice", charges: 1, cooldown: 3.9, dodge: 0, critical: 0.05, attack: 100 }, "body-slam": { name: "Body Slam", moveType: "charge", type: "normal", charges: 2, cooldown: 1.56, dodge: 0.2, critical: 0.05, attack: 40 }, "bone-club": { name: "Bone Club", moveType: "charge", type: "ground", charges: 4, cooldown: 1.6, dodge: 0.4, critical: 0.25, attack: 30 }, "brick-break": { name: "Brick Break", moveType: "charge", type: "fighting", charges: 3, cooldown: 1.6, dodge: 0.4, critical: 0.25, attack: 25 }, "brine": { name: "Brine", moveType: "charge", type: "water", charges: 4, cooldown: 2.4, dodge: 0.35, critical: 0.05, attack: 25 }, "bubble-beam": { name: "Bubble Beam", moveType: "charge", type: "water", charges: 4, cooldown: 2.9, dodge: 0.2, critical: 0.05, attack: 30 }, "bug-buzz": { name: "Bug Buzz", moveType: "charge", type: "bug", charges: 2, cooldown: 4.25, dodge: 1.5, critical: 0.05, attack: 75 }, "bulldoze": { name: "Bulldoze", moveType: "charge", type: "ground", charges: 4, cooldown: 3.4, dodge: 1.1, critical: 0.05, attack: 35 }, "cross-chop": { name: "Cross Chop", moveType: "charge", type: "fighting", charges: 1, cooldown: 2, dodge: 0.3, critical: 0.25, attack: 60 }, "cross-poison": { name: "Cross Poison", moveType: "charge", type: "poison", charges: 4, cooldown: 1.5, dodge: 0.3, critical: 0.25, attack: 25 }, "dark-pulse": { name: "Dark Pulse", moveType: "charge", type: "dark", charges: 3, cooldown: 3.5, dodge: 1.1, critical: 0.05, attack: 45 }, "dazzling-gleam": { name: "Dazzling Gleam", moveType: "charge", type: "fairy", charges: 3, cooldown: 4.2, dodge: 0.8, critical: 0.05, attack: 55 }, "dig": { name: "Dig", moveType: "charge", type: "ground", charges: 3, cooldown: 5.8, dodge: 0.4, critical: 0.05, attack: 70 }, "disarming-voice": { name: "Disarming Voice", moveType: "charge", type: "fairy", charges: 5, cooldown: 3.9, dodge: 1.8, critical: 0.05, attack: 25 }, "discharge": { name: "Discharge", moveType: "charge", type: "electric", charges: 3, cooldown: 2.5, dodge: 0.7, critical: 0.05, attack: 35 }, "dragon-claw": { name: "Dragon Claw", moveType: "charge", type: "dragon", charges: 2, cooldown: 1.6, dodge: 0.2, critical: 0.25, attack: 35 }, "dragon-pulse": { name: "Dragon Pulse", moveType: "charge", type: "dragon", charges: 2, cooldown: 3.6, dodge: 1.2, critical: 0.05, attack: 65 }, "draining-kiss": { name: "Draining Kiss", moveType: "charge", type: "fairy", charges: 5, cooldown: 2.8, dodge: 0.1, critical: 0.05, attack: 25 }, "drill-peck": { name: "Drill Peck", moveType: "charge", type: "flying", charges: 3, cooldown: 2.7, dodge: 0.9, critical: 0.05, attack: 40 }, "drill-run": { name: "Drill Run", moveType: "charge", type: "ground", charges: 3, cooldown: 3.4, dodge: 0.7, critical: 0.25, attack: 50 }, "earthquake": { name: "Earthquake", moveType: "charge", type: "ground", charges: 1, cooldown: 4.2, dodge: 1.95, critical: 0.05, attack: 100 }, "fire-blast": { name: "Fire Blast", moveType: "charge", type: "fire", charges: 1, cooldown: 4.1, dodge: 0.4, critical: 0.05, attack: 100 }, "fire-punch": { name: "Fire Punch", moveType: "charge", type: "fire", charges: 3, cooldown: 2.8, dodge: 0.51, critical: 0.05, attack: 40 }, "flame-burst": { name: "Flame Burst", moveType: "charge", type: "fire", charges: 4, cooldown: 2.1, dodge: 0.2, critical: 0.05, attack: 30 }, "flame-charge": { name: "Flame Charge", moveType: "charge", type: "fire", charges: 5, cooldown: 3.1, dodge: 0.2, critical: 0.05, attack: 25 }, "flame-wheel": { name: "Flame Wheel", moveType: "charge", type: "fire", charges: 4, cooldown: 4.6, dodge: 0.5, critical: 0.05, attack: 40 }, "flamethrower": { name: "Flamethrower", moveType: "charge", type: "fire", charges: 2, cooldown: 2.9, dodge: 0.9, critical: 0.05, attack: 55 }, "flash-cannon": { name: "Flash Cannon", moveType: "charge", type: "steel", charges: 3, cooldown: 3.9, dodge: 1.1, critical: 0.05, attack: 60 }, "gunk-shot": { name: "Gunk Shot", moveType: "charge", type: "poison", charges: 1, cooldown: 3, dodge: 0.4, critical: 0.05, attack: 65 }, "heat-wave": { name: "Heat Wave", moveType: "charge", type: "fire", charges: 1, cooldown: 3.8, dodge: 0.4, critical: 0.05, attack: 80 }, "horn-attack": { name: "Horn Attack", moveType: "charge", type: "normal", charges: 4, cooldown: 2.2, dodge: 0.3, critical: 0.05, attack: 25 }, "hurricane": { name: "Hurricane", moveType: "charge", type: "flying", charges: 1, cooldown: 3.2, dodge: 1.77, critical: 0.05, attack: 80 }, "hydro-pump": { name: "Hydro Pump", moveType: "charge", type: "water", charges: 1, cooldown: 3.8, dodge: 2.1, critical: 0.05, attack: 90 }, "hyper-beam": { name: "Hyper Beam", moveType: "charge", type: "normal", charges: 1, cooldown: 5, dodge: 0.8, critical: 0.05, attack: 120 }, "hyper-fang": { name: "Hyper Fang", moveType: "charge", type: "normal", charges: 3, cooldown: 2.1, dodge: 0.3, critical: 0.05, attack: 35 }, "ice-beam": { name: "Ice Beam", moveType: "charge", type: "ice", charges: 2, cooldown: 3.65, dodge: 1.35, critical: 0.05, attack: 65 }, "ice-punch": { name: "Ice Punch", moveType: "charge", type: "ice", charges: 3, cooldown: 3.5, dodge: 1.1, critical: 0.05, attack: 45 }, "icy-wind": { name: "Icy Wind", moveType: "charge", type: "ice", charges: 5, cooldown: 3.8, dodge: 0.7, critical: 0.05, attack: 25 }, "iron-head": { name: "Iron Head", moveType: "charge", type: "steel", charges: 2, cooldown: 2, dodge: 0.25, critical: 0.05, attack: 30 }, "leaf-blade": { name: "Leaf Blade", moveType: "charge", type: "grass", charges: 2, cooldown: 2.8, dodge: 1, critical: 0.25, attack: 55 }, "low-sweep": { name: "Low Sweep", moveType: "charge", type: "fighting", charges: 4, cooldown: 2.25, dodge: 0.15, critical: 0.05, attack: 30 }, "magnet-bomb": { name: "Magnet Bomb", moveType: "charge", type: "steel", charges: 4, cooldown: 2.8, dodge: 0.55, critical: 0.05, attack: 30 }, "megahorn": { name: "Megahorn", moveType: "charge", type: "bug", charges: 1, cooldown: 3.2, dodge: 0.3, critical: 0.05, attack: 80 }, "moonblast": { name: "Moonblast", moveType: "charge", type: "fairy", charges: 1, cooldown: 4.1, dodge: 0.6, critical: 0.05, attack: 85 }, "mud-bomb": { name: "Mud Bomb", moveType: "charge", type: "ground", charges: 4, cooldown: 2.6, dodge: 0.45, critical: 0.05, attack: 30 }, "night-slash": { name: "Night Slash", moveType: "charge", type: "dark", charges: 4, cooldown: 2.7, dodge: 0.2, critical: 0.25, attack: 30 }, "ominous-wind": { name: "Ominous Wind", moveType: "charge", type: "ghost", charges: 4, cooldown: 3.1, dodge: 0.25, critical: 0.05, attack: 30 }, "petal-blizzard": { name: "Petal Blizzard", moveType: "charge", type: "grass", charges: 2, cooldown: 3.2, dodge: 1, critical: 0.05, attack: 65 }, "play-rough": { name: "Play Rough", moveType: "charge", type: "fairy", charges: 2, cooldown: 2.9, dodge: 1.3, critical: 0.05, attack: 55 }, "poison-fang": { name: "Poison Fang", moveType: "charge", type: "poison", charges: 5, cooldown: 2.4, dodge: 0.2, critical: 0.05, attack: 25 }, "power-gem": { name: "Power Gem", moveType: "charge", type: "rock", charges: 3, cooldown: 2.9, dodge: 0.8, critical: 0.05, attack: 40 }, "power-whip": { name: "Power Whip", moveType: "charge", type: "grass", charges: 1, cooldown: 2.8, dodge: 1.3, critical: 0.25, attack: 70 }, "psybeam": { name: "Psybeam", moveType: "charge", type: "psychic", charges: 4, cooldown: 3.88, dodge: 1.3, critical: 0.05, attack: 40 }, "psychic": { name: "Psychic", moveType: "charge", type: "psychic", charges: 2, cooldown: 2.8, dodge: 1.2, critical: 0.05, attack: 55 }, "psyshock": { name: "Psyshock", moveType: "charge", type: "psychic", charges: 3, cooldown: 2.7, dodge: 0.5, critical: 0.05, attack: 40 }, "rock-slide": { name: "Rock Slide", moveType: "charge", type: "rock", charges: 3, cooldown: 3.2, dodge: 1.4, critical: 0.05, attack: 50 }, "rock-tomb": { name: "Rock Tomb", moveType: "charge", type: "rock", charges: 3, cooldown: 3.4, dodge: 0.9, critical: 0.25, attack: 30 }, "scald": { name: "Scald", moveType: "charge", type: "water", charges: 3, cooldown: 4, dodge: 2.1, critical: 0.05, attack: 55 }, "seed-bomb": { name: "Seed Bomb", moveType: "charge", type: "grass", charges: 3, cooldown: 2.4, dodge: 0.5, critical: 0.05, attack: 40 }, "shadow-ball": { name: "Shadow Ball", moveType: "charge", type: "ghost", charges: 3, cooldown: 3.08, dodge: 0.3, critical: 0.05, attack: 45 }, "signal-beam": { name: "Signal Beam", moveType: "charge", type: "bug", charges: 3, cooldown: 3.1, dodge: 1, critical: 0.05, attack: 45 }, "sludge": { name: "Sludge", moveType: "charge", type: "poison", charges: 4, cooldown: 2.6, dodge: 0.5, critical: 0.05, attack: 30 }, "sludge-bomb": { name: "Sludge Bomb", moveType: "charge", type: "poison", charges: 2, cooldown: 2.6, dodge: 0.5, critical: 0.05, attack: 55 }, "sludge-wave": { name: "Sludge Wave", moveType: "charge", type: "poison", charges: 1, cooldown: 3.4, dodge: 0.9, critical: 0.05, attack: 70 }, "solar-beam": { name: "Solar Beam", moveType: "charge", type: "grass", charges: 1, cooldown: 4.9, dodge: 1.7, critical: 0.05, attack: 120 }, "stomp": { name: "Stomp", moveType: "charge", type: "normal", charges: 4, cooldown: 2.1, dodge: 0.7, critical: 0.05, attack: 30 }, "stone-edge": { name: "Stone Edge", moveType: "charge", type: "rock", charges: 1, cooldown: 3.1, dodge: 0.4, critical: 0.05, attack: 80 }, "struggle": { name: "Struggle", moveType: "charge", type: "normal", charges: 5, cooldown: 1.7, dodge: 0.7, critical: 0.05, attack: 15 }, "submission": { name: "Submission", moveType: "charge", type: "fighting", charges: 3, cooldown: 2.1, dodge: 0.15, critical: 0.05, attack: 30 }, "swift": { name: "Swift", moveType: "charge", type: "normal", charges: 4, cooldown: 3, dodge: 0.5, critical: 0.05, attack: 30 }, "thunder": { name: "Thunder", moveType: "charge", type: "electric", charges: 1, cooldown: 4.3, dodge: 1.55, critical: 0.05, attack: 100 }, "thunder-punch": { name: "Thunder Punch", moveType: "charge", type: "electric", charges: 3, cooldown: 2.4, dodge: 0.25, critical: 0.05, attack: 40 }, "thunderbolt": { name: "Thunderbolt", moveType: "charge", type: "electric", charges: 2, cooldown: 2.7, dodge: 0.8, critical: 0.05, attack: 55 }, "twister": { name: "Twister", moveType: "charge", type: "dragon", charges: 5, cooldown: 2.7, dodge: 1.75, critical: 0.05, attack: 25 }, "vice-grip": { name: "Vice Grip", moveType: "charge", type: "normal", charges: 5, cooldown: 2.1, dodge: 0.25, critical: 0.05, attack: 25 }, "water-pulse": { name: "Water Pulse", moveType: "charge", type: "water", charges: 4, cooldown: 3.3, dodge: 1, critical: 0.05, attack: 35 }, "wrap": { name: "Wrap", moveType: "charge", type: "normal", charges: 5, cooldown: 4, dodge: 0.6, critical: 0.05, attack: 25 }, "x-scissor": { name: "X-Scissor", moveType: "charge", type: "bug", charges: 3, cooldown: 2.1, dodge: 0.25, critical: 0.05, attack: 35 } }; /** pokemon.js | list of pokemon data **/ var pokemonData = { "bulbasaur": { id: 1, egg: 2, buddy: 3, candy: 25, name: "Bulbasaur", cpm: [1.53, 1.58], stats: { stamina: 90, attack: 118, defense: 118 }, type: ["grass", "poison"], quickMoves: ["tackle", "vine-whip"], chargeMoves: ["power-whip", "seed-bomb", "sludge-bomb"], evolveTo: "ivysaur", fleeRate: 0.1 }, "ivysaur": { id: 2, egg: 0, buddy: 3, candy: 100, name: "Ivysaur", cpm: [1.2, 1.6], stats: { stamina: 120, attack: 151, defense: 151 }, type: ["grass", "poison"], quickMoves: ["vine-whip", "razor-leaf"], chargeMoves: ["power-whip", "sludge-bomb", "solar-beam"], evolveFrom: "bulbasaur", evolveTo: "venusaur", fleeRate: 0.07 }, "venusaur": { id: 3, egg: 0, buddy: 3, candy: 0, name: "Venusaur", stats: { stamina: 160, attack: 198, defense: 198 }, type: ["grass", "poison"], quickMoves: ["vine-whip", "razor-leaf"], chargeMoves: ["petal-blizzard", "sludge-bomb", "solar-beam"], evolveFrom: "ivysaur", fleeRate: 0.05 }, "charmander": { id: 4, egg: 2, buddy: 3, candy: 25, name: "Charmander", cpm: [1.64, 1.7], stats: { stamina: 78, attack: 116, defense: 96 }, type: ["fire"], quickMoves: ["ember", "scratch"], chargeMoves: ["flame-burst", "flame-charge", "flamethrower"], evolveTo: "charmeleon", fleeRate: 0.1 }, "charmeleon": { id: 5, egg: 0, buddy: 3, candy: 100, name: "Charmeleon", cpm: [1.71, 1.79], stats: { stamina: 116, attack: 158, defense: 129 }, type: ["fire"], quickMoves: ["ember", "scratch"], chargeMoves: ["fire-punch", "flame-burst", "flamethrower"], evolveFrom: "charmander", evolveTo: "charizard", fleeRate: 0.07 }, "charizard": { id: 6, egg: 0, buddy: 3, candy: 0, name: "Charizard", stats: { stamina: 156, attack: 223, defense: 176 }, type: ["fire", "flying"], quickMoves: ["ember", "wing-attack"], chargeMoves: ["dragon-claw", "fire-blast", "flamethrower"], evolveFrom: "charmeleon", fleeRate: 0.05 }, "squirtle": { id: 7, egg: 2, buddy: 3, candy: 25, name: "Squirtle", cpm: [1.58, 2.1], stats: { stamina: 88, attack: 94, defense: 122 }, type: ["water"], quickMoves: ["bubble", "tackle"], chargeMoves: ["aqua-jet", "aqua-tail", "water-pulse"], evolveTo: "wartortle", fleeRate: 0.1 }, "wartortle": { id: 8, egg: 0, buddy: 3, candy: 100, name: "Wartortle", cpm: [1.4, 1.68], stats: { stamina: 118, attack: 126, defense: 155 }, type: ["water"], quickMoves: ["bite", "water-gun"], chargeMoves: ["aqua-jet", "hydro-pump", "ice-beam"], evolveFrom: "squirtle", evolveTo: "blastoise", fleeRate: 0.07 }, "blastoise": { id: 9, egg: 0, buddy: 3, candy: 0, name: "Blastoise", stats: { stamina: 158, attack: 171, defense: 210 }, type: ["water"], quickMoves: ["bite", "water-gun"], chargeMoves: ["flash-cannon", "hydro-pump", "ice-beam"], evolveFrom: "wartortle", fleeRate: 0.05 }, "caterpie": { id: 10, egg: 2, buddy: 1, candy: 12, name: "Caterpie", cpm: [1.04, 1.08], stats: { stamina: 90, attack: 55, defense: 62 }, type: ["bug"], quickMoves: ["bug-bite", "tackle"], chargeMoves: ["struggle"], evolveTo: "metapod", fleeRate: 0.2 }, "metapod": { id: 11, egg: 0, buddy: 1, candy: 50, name: "Metapod", cpm: [3.05, 3.79], stats: { stamina: 100, attack: 45, defense: 94 }, type: ["bug"], quickMoves: ["bug-bite", "tackle"], chargeMoves: ["struggle"], evolveFrom: "caterpie", evolveTo: "butterfree", fleeRate: 0.09 }, "butterfree": { id: 12, egg: 0, buddy: 1, candy: 0, name: "Butterfree", stats: { stamina: 120, attack: 167, defense: 151 }, type: ["bug", "flying"], quickMoves: ["bug-bite", "confusion"], chargeMoves: ["bug-buzz", "signal-beam", "psychic"], evolveFrom: "metapod", fleeRate: 0.06 }, "weedle": { id: 13, egg: 2, buddy: 1, candy: 12, name: "Weedle", cpm: [1.06, 1.13], stats: { stamina: 80, attack: 63, defense: 55 }, type: ["bug", "poison"], quickMoves: ["bug-bite", "poison-sting"], chargeMoves: ["struggle"], evolveTo: "kakuna", fleeRate: 0.2 }, "kakuna": { id: 14, egg: 0, buddy: 1, candy: 50, name: "Kakuna", cpm: [3.01, 3.42], stats: { stamina: 90, attack: 46, defense: 86 }, type: ["bug", "poison"], quickMoves: ["bug-bite", "poison-sting"], chargeMoves: ["struggle"], evolveFrom: "weedle", evolveTo: "beedrill", fleeRate: 0.09 }, "beedrill": { id: 15, egg: 0, buddy: 1, candy: 0, name: "Beedrill", stats: { stamina: 130, attack: 169, defense: 150 }, type: ["bug", "poison"], quickMoves: ["bug-bite", "poison-jab"], chargeMoves: ["aerial-ace", "sludge-bomb", "x-scissor"], evolveFrom: "kakuna", fleeRate: 0.06 }, "pidgey": { id: 16, egg: 2, buddy: 1, candy: 12, name: "Pidgey", cpm: [1.71, 1.95], stats: { stamina: 80, attack: 85, defense: 76 }, type: ["normal", "flying"], quickMoves: ["tackle", "quick-attack"], chargeMoves: ["aerial-ace", "air-cutter", "twister"], evolveTo: "pidgeotto", fleeRate: 0.2 }, "pidgeotto": { id: 17, egg: 0, buddy: 1, candy: 50, name: "Pidgeotto", cpm: [1.73, 1.8], stats: { stamina: 126, attack: 117, defense: 108 }, type: ["normal", "flying"], quickMoves: ["steel-wing", "wing-attack"], chargeMoves: ["aerial-ace", "air-cutter", "twister"], evolveFrom: "pidgeot", evolveTo: "pidgeot", fleeRate: 0.09 }, "pidgeot": { id: 18, egg: 0, buddy: 1, candy: 0, name: "Pidgeot", stats: { stamina: 166, attack: 166, defense: 157 }, type: ["normal", "flying"], quickMoves: ["steel-wing", "wing-attack"], chargeMoves: ["aerial-ace", "air-cutter", "hurricane"], evolveFrom: "pidgeotto", fleeRate: 0.06 }, "rattata": { id: 19, egg: 2, buddy: 1, candy: 25, name: "Rattata", cpm: [2.55, 2.73], stats: { stamina: 60, attack: 103, defense: 70 }, type: ["normal"], quickMoves: ["tackle", "quick-attack"], chargeMoves: ["body-slam", "dig", "hyper-fang"], evolveTo: "raticate", fleeRate: 0.2 }, "raticate": { id: 20, egg: 0, buddy: 1, candy: 0, name: "Raticate", stats: { stamina: 110, attack: 161, defense: 144 }, type: ["normal"], quickMoves: ["bite", "quick-attack"], chargeMoves: ["dig", "hyper-beam", "hyper-fang"], evolveFrom: "rattata", fleeRate: 0.07 }, "spearow": { id: 21, egg: 2, buddy: 1, candy: 50, name: "Spearow", cpm: [2.58, 2.81], stats: { stamina: 80, attack: 112, defense: 61 }, type: ["normal", "flying"], quickMoves: ["peck", "quick-attack"], chargeMoves: ["aerial-ace", "drill-peck", "twister"], evolveTo: "fearow", fleeRate: 0.15 }, "fearow": { id: 22, egg: 0, buddy: 1, candy: 0, name: "Fearow", stats: { stamina: 130, attack: 182, defense: 135 }, type: ["normal", "flying"], quickMoves: ["peck", "steel-wing"], chargeMoves: ["aerial-ace", "drill-run", "twister"], evolveFrom: "spearow", fleeRate: 0.07 }, "ekans": { id: 23, egg: 5, buddy: 3, candy: 50, name: "Ekans", cpm: [2.21, 2.27], stats: { stamina: 70, attack: 110, defense: 102 }, type: ["poison"], quickMoves: ["acid", "poison-sting"], chargeMoves: ["gunk-shot", "sludge-bomb", "wrap"], evolveTo: "arbok", fleeRate: 0.15 }, "arbok": { id: 24, egg: 0, buddy: 3, candy: 0, name: "Arbok", stats: { stamina: 120, attack: 167, defense: 158 }, type: ["poison"], quickMoves: ["acid", "bite"], chargeMoves: ["dark-pulse", "gunk-shot", "sludge-wave"], evolveFrom: "ekans", fleeRate: 0.07 }, "pikachu": { id: 25, egg: 2, buddy: 1, candy: 50, name: "Pikachu", cpm: [2.33, 2.38], stats: { stamina: 70, attack: 112, defense: 101 }, type: ["electric"], quickMoves: ["thunder-shock", "quick-attack"], chargeMoves: ["discharge", "thunder", "thunderbolt"], evolveFrom: "pichu", evolveTo: "raichu", fleeRate: 0.1 }, "raichu": { id: 26, egg: 0, buddy: 1, candy: 0, name: "Raichu", stats: { stamina: 120, attack: 193, defense: 165 }, type: ["electric"], quickMoves: ["spark", "thunder-shock"], chargeMoves: ["brick-break", "thunder", "thunder-punch"], evolveFrom: "pikachu", fleeRate: 0.06 }, "sandshrew": { id: 27, egg: 5, buddy: 3, candy: 50, name: "Sandshrew", cpm: [2.3, 2.76], stats: { stamina: 100, attack: 126, defense: 145 }, type: ["ground"], quickMoves: ["mud-shot", "scratch"], chargeMoves: ["dig", "rock-slide", "rock-tomb"], evolveTo: "sandslash", fleeRate: 0.1 }, "sandslash": { id: 28, egg: 0, buddy: 3, candy: 0, name: "Sandslash", stats: { stamina: 150, attack: 182, defense: 202 }, type: ["ground"], quickMoves: ["metal-claw", "mud-shot"], chargeMoves: ["bulldoze", "earthquake", "rock-tomb"], evolveFrom: "sandshrew", fleeRate: 0.06 }, "nidoran-f": { id: 29, egg: 5, buddy: 3, candy: 25, name: "Nidoran ♀", cpm: [1.62, 1.66], stats: { stamina: 110, attack: 86, defense: 94 }, type: ["poison"], quickMoves: ["bite", "poison-sting"], chargeMoves: ["body-slam", "poison-fang", "sludge-bomb"], evolveTo: "nidorina", fleeRate: 0.15 }, "nidorina": { id: 30, egg: 0, buddy: 3, candy: 100, name: "Nidorina", cpm: [1.83, 2.48], stats: { stamina: 140, attack: 117, defense: 126 }, type: ["poison"], quickMoves: ["bite", "poison-sting"], chargeMoves: ["dig", "poison-fang", "sludge-bomb"], evolveFrom: "nidoran-f", evolveTo: "nidoqueen", fleeRate: 0.07 }, "nidoqueen": { id: 31, egg: 0, buddy: 3, candy: 0, name: "Nidoqueen", stats: { stamina: 180, attack: 180, defense: 174 }, type: ["poison", "ground"], quickMoves: ["bite", "poison-jab"], chargeMoves: ["earthquake", "sludge-wave", "stone-edge"], evolveFrom: "nidorina", fleeRate: 0.05 }, "nidoran-m": { id: 32, egg: 5, buddy: 3, candy: 25, name: "Nidoran ♂", cpm: [1.64, 1.7], stats: { stamina: 92, attack: 105, defense: 76 }, type: ["poison"], quickMoves: ["peck", "poison-sting"], chargeMoves: ["body-slam", "horn-attack", "sludge-bomb"], evolveTo: "nidorino", fleeRate: 0.15 }, "nidorino": { id: 33, egg: 0, buddy: 3, candy: 100, name: "Nidorino", cpm: [1.64, 1.86], stats: { stamina: 122, attack: 137, defense: 112 }, type: ["poison"], quickMoves: ["bite", "poison-jab"], chargeMoves: ["dig", "horn-attack", "sludge-bomb"], evolveFrom: "nidoran-m", evolveTo: "nidoking", fleeRate: 0.07 }, "nidoking": { id: 34, egg: 0, buddy: 3, candy: 0, name: "Nidoking", stats: { stamina: 162, attack: 204, defense: 157 }, type: ["poison", "ground"], quickMoves: ["fury-cutter", "poison-jab"], chargeMoves: ["earthquake", "megahorn", "sludge-wave"], evolveFrom: "nidorino", fleeRate: 0.05 }, "clefairy": { id: 35, egg: 2, buddy: 1, candy: 50, name: "Clefairy", cpm: [2.03, 2.14], stats: { stamina: 140, attack: 107, defense: 116 }, type: ["fairy"], quickMoves: ["pound", "zen-headbutt"], chargeMoves: ["body-slam", "disarming-voice", "moonblast"], evolveFrom: "cleffa", evolveTo: "clefable", fleeRate: 0.1 }, "clefable": { id: 36, egg: 0, buddy: 1, candy: 0, name: "Clefable", stats: { stamina: 190, attack: 178, defense: 171 }, type: ["fairy"], quickMoves: ["pound", "zen-headbutt"], chargeMoves: ["dazzling-gleam", "moonblast", "psychic"], evolveFrom: "clefairy", fleeRate: 0.06 }, "vulpix": { id: 37, egg: 5, buddy: 3, candy: 50, name: "Vulpix", cpm: [2.74, 2.81], stats: { stamina: 76, attack: 96, defense: 122 }, type: ["fire"], quickMoves: ["ember", "quick-attack"], chargeMoves: ["body-slam", "flame-charge", "flamethrower"], evolveTo: "ninetales", fleeRate: 0.1 }, "ninetales": { id: 38, egg: 0, buddy: 3, candy: 0, name: "Ninetales", stats: { stamina: 146, attack: 169, defense: 204 }, type: ["fire"], quickMoves: ["ember", "feint-attack"], chargeMoves: ["fire-blast", "flamethrower", "heat-wave"], evolveFrom: "vulpix", fleeRate: 0.06 }, "jigglypuff": { id: 39, egg: 2, buddy: 1, candy: 50, name: "Jigglypuff", cpm: [2.41, 2.47], stats: { stamina: 230, attack: 80, defense: 44 }, type: ["normal", "fairy"], quickMoves: ["feint-attack", "pound"], chargeMoves: ["body-slam", "disarming-voice", "dazzling-gleam"], legacyMoves: ["play-rough"], evovleFrom: "igglybuff", evolveTo: "wigglytuff", fleeRate: 0.1 }, "wigglytuff": { id: 40, egg: 0, buddy: 1, candy: 0, name: "Wigglytuff", stats: { stamina: 280, attack: 156, defense: 93 }, type: ["normal", "fairy"], quickMoves: ["feint-attack", "pound"], chargeMoves: ["dazzling-gleam", "hyper-beam", "play-rough"], evolveFrom: "jigglypuff", fleeRate: 0.06 }, "zubat": { id: 41, egg: 2, buddy: 1, candy: 50, name: "Zubat", cpm: [2.6, 3.67], stats: { stamina: 80, attack: 83, defense: 76 }, type: ["poison", "flying"], quickMoves: ["bite", "quick-attack"], chargeMoves: ["air-cutter", "poison-fang", "sludge-bomb"], evolveTo: "golbat", fleeRate: 0.2 }, "golbat": { id: 42, egg: 0, buddy: 1, candy: 0, name: "Golbat", stats: { stamina: 150, attack: 161, defense: 153 }, type: ["poison", "flying"], quickMoves: ["bite", "wing-attack"], chargeMoves: ["air-cutter", "ominous-wind", "poison-fang"], evolveFrom: "zubat", fleeRate: 0.07 }, "oddish": { id: 43, egg: 5, buddy: 3, candy: 25, name: "Oddish", cpm: [1.48, 1.51], stats: { stamina: 90, attack: 131, defense: 116 }, type: ["poison", "grass"], quickMoves: ["acid", "razor-leaf"], chargeMoves: ["moonblast", "seed-bomb", "sludge-bomb"], evolveTo: "gloom", fleeRate: 0.15 }, "gloom": { id: 44, egg: 0, buddy: 3, candy: 100, name: "Gloom", cpm: [1.48, 1.53], stats: { stamina: 120, attack: 153, defense: 139 }, type: ["poison", "grass"], quickMoves: ["acid", "razor-leaf"], chargeMoves: ["moonblast", "petal-blizzard", "sludge-bomb"], evolveFrom: "oddish", evolveTo: "vileplume", fleeRate: 0.07 }, "vileplume": { id: 45, egg: 0, buddy: 3, candy: 0, name: "Vileplume", stats: { stamina: 150, attack: 202, defense: 170 }, type: ["poison", "grass"], quickMoves: ["acid", "razor-leaf"], chargeMoves: ["moonblast", "petal-blizzard", "solar-beam"], evolveFrom: "gloom", fleeRate: 0.05 }, "paras": { id: 46, egg: 5, buddy: 3, candy: 50, name: "Paras", cpm: [1.92, 2.02], stats: { stamina: 70, attack: 121, defense: 99 }, type: ["bug", "grass"], quickMoves: ["bug-bite", "scratch"], chargeMoves: ["cross-poison", "seed-bomb", "x-scissor"], evolveTo: "parasect", fleeRate: 0.15 }, "parasect": { id: 47, egg: 0, buddy: 3, candy: 0, name: "Parasect", stats: { stamina: 120, attack: 165, defense: 146 }, type: ["bug", "grass"], quickMoves: ["bug-bite", "fury-cutter"], chargeMoves: ["cross-poison", "solar-beam", "x-scissor"], evolveFrom: "paras", fleeRate: 0.07 }, "venonat": { id: 48, egg: 5, buddy: 3, candy: 50, name: "Venonat", cpm: [1.86, 1.9], stats: { stamina: 120, attack: 100, defense: 102 }, type: ["bug", "poison"], quickMoves: ["bug-bite", "confusion"], chargeMoves: ["poison-fang", "psybeam", "signal-beam"], evolveTo: "venomoth", fleeRate: 0.15 }, "venomoth": { id: 49, egg: 0, buddy: 3, candy: 0, name: "Venomoth", stats: { stamina: 140, attack: 179, defense: 150 }, type: ["bug", "poison"], quickMoves: ["bug-bite", "confusion"], chargeMoves: ["bug-buzz", "poison-fang", "psychic"], evolveFrom: "venonat", fleeRate: 0.07 }, "diglett": { id: 50, egg: 5, buddy: 3, candy: 50, name: "Diglett", cpm: [2.68, 2.77], stats: { stamina: 20, attack: 109, defense: 88 }, type: ["ground"], quickMoves: ["mud-slap", "scratch"], chargeMoves: ["dig", "mud-bomb", "rock-tomb"], legacyMoves: ["mud-shot"], evolveTo: "dugtrio", fleeRate: 0.1 }, "dugtrio": { id: 51, egg: 0, buddy: 3, candy: 0, name: "Dugtrio", stats: { stamina: 70, attack: 167, defense: 147 }, type: ["ground"], quickMoves: ["mud-slap", "sucker-punch"], chargeMoves: ["earthquake", "mud-bomb", "stone-edge"], legacyMoves: ["mud-shot"], evolveFrom: "diglett", fleeRate: 0.06 }, "meowth": { id: 52, egg: 5, buddy: 3, candy: 50, name: "Meowth", cpm: [1.98, 2.24], stats: { stamina: 80, attack: 92, defense: 81 }, type: ["normal"], quickMoves: ["bite", "scratch"], chargeMoves: ["body-slam", "dark-pulse", "night-slash"], evolveTo: "persian", fleeRate: 0.15 }, "persian": { id: 53, egg: 0, buddy: 3, candy: 0, name: "Persian", stats: { stamina: 130, attack: 150, defense: 139 }, type: ["normal"], quickMoves: ["feint-attack", "scratch"], chargeMoves: ["night-slash", "play-rough", "power-gem"], evolveFrom: "meowth", fleeRate: 0.07 }, "psyduck": { id: 54, egg: 5, buddy: 3, candy: 50, name: "Psyduck", cpm: [2.22, 2.29], stats: { stamina: 100, attack: 122, defense: 96 }, type: ["water"], quickMoves: ["water-gun", "zen-headbutt"], chargeMoves: ["aqua-tail", "cross-chop", "psybeam"], evolveTo: "golduck", fleeRate: 0.1 }, "golduck": { id: 55, egg: 0, buddy: 3, candy: 0, name: "Golduck", stats: { stamina: 160, attack: 191, defense: 163 }, type: ["water"], quickMoves: ["confusion", "water-gun"], chargeMoves: ["hydro-pump", "ice-beam", "psychic"], evolveFrom: "psyduck", fleeRate: 0.06 }, "mankey": { id: 56, egg: 5, buddy: 3, candy: 50, name: "Mankey", cpm: [2.18, 2.28], stats: { stamina: 80, attack: 148, defense: 87 }, type: ["fighting"], quickMoves: ["karate-chop", "scratch"], chargeMoves: ["brick-break", "cross-chop", "low-sweep"], evolveTo: "primeape", fleeRate: 0.1 }, "primeape": { id: 57, egg: 0, buddy: 3, candy: 0, name: "Primeape", stats: { stamina: 130, attack: 207, defense: 144 }, type: ["fighting"], quickMoves: ["karate-chop", "low-kick"], chargeMoves: ["cross-chop", "low-sweep", "night-slash"], evolveFrom: "mankey", fleeRate: 0.06 }, "growlithe": { id: 58, egg: 5, buddy: 3, candy: 50, name: "Growlithe", cpm: [2.31, 2.36], stats: { stamina: 110, attack: 136, defense: 96 }, type: ["fire"], quickMoves: ["bite", "ember"], chargeMoves: ["body-slam", "flame-wheel", "flamethrower"], evolveTo: "arcanine", fleeRate: 0.1 }, "arcanine": { id: 59, egg: 0, buddy: 3, candy: 0, name: "Arcanine", stats: { stamina: 180, attack: 227, defense: 166 }, type: ["fire"], quickMoves: ["bite", "fire-fang"], chargeMoves: ["bulldoze", "fire-blast", "flamethrower"], evolveFrom: "growlithe", fleeRate: 0.06 }, "poliwag": { id: 60, egg: 5, buddy: 3, candy: 25, name: "Poliwag", cpm: [1.72, 1.77], stats: { stamina: 80, attack: 101, defense: 82 }, type: ["water"], quickMoves: ["bubble", "mud-shot"], chargeMoves: ["body-slam", "bubble-beam", "mud-bomb"], evolveTo: "poliwhirl", fleeRate: 0.15 }, "poliwhirl": { id: 61, egg: 0, buddy: 3, candy: 100, name: "Poliwhirl", cpm: [1.9, 1.96], stats: { stamina: 130, attack: 130, defense: 130 }, type: ["water"], quickMoves: ["bubble", "mud-shot"], chargeMoves: ["bubble-beam", "scald", "mud-bomb"], evolveFrom: "poliwag", evolveTo: "poliwrath", fleeRate: 0.07 }, "poliwrath": { id: 62, egg: 0, buddy: 3, candy: 0, name: "Poliwrath", stats: { stamina: 180, attack: 182, defense: 187 }, type: ["water", "fighting"], quickMoves: ["bubble", "mud-shot"], chargeMoves: ["hydro-pump", "ice-punch", "submission"], evolveFrom: "poliwhirl", fleeRate: 0.05 }, "abra": { id: 63, egg: 5, buddy: 3, candy: 25, name: "Abra", stats: { stamina: 50, attack: 195, defense: 103 }, type: ["psychic"], cpm: [1.36, 1.95], quickMoves: ["zen-headbutt"], chargeMoves: ["psyshock", "shadow-ball", "signal-beam"], evolveTo: "kadabra", fleeRate: 0.99 }, "kadabra": { id: 64, egg: 0, buddy: 3, candy: 100, name: "Kadabra", cpm: [1.4, 1.65], stats: { stamina: 80, attack: 232, defense: 138 }, type: ["psychic"], quickMoves: ["confusion", "psycho-cut"], chargeMoves: ["dazzling-gleam", "psybeam", "shadow-ball"], evolveFrom: "abra", evolveTo: "alakazam", fleeRate: 0.07 }, "alakazam": { id: 65, egg: 0, buddy: 3, candy: 0, name: "Alakazam", stats: { stamina: 110, attack: 271, defense: 194 }, type: ["psychic"], quickMoves: ["confusion", "psycho-cut"], chargeMoves: ["dazzling-gleam", "psychic", "shadow-ball"], evolveFrom: "kadabra", fleeRate: 0.05 }, "machop": { id: 66, egg: 5, buddy: 3, candy: 25, name: "Machop", cpm: [1.62, 1.67], stats: { stamina: 140, attack: 137, defense: 88 }, type: ["fighting"], quickMoves: ["karate-chop", "low-kick"], chargeMoves: ["brick-break", "cross-chop", "low-sweep"], evolveTo: "machoke", fleeRate: 0.1 }, "machoke": { id: 67, egg: 0, buddy: 3, candy: 100, name: "Machoke", cpm: [1.48, 1.7], stats: { stamina: 160, attack: 177, defense: 130 }, type: ["fighting"], quickMoves: ["karate-chop", "low-kick"], chargeMoves: ["brick-break", "cross-chop", "submission"], evolveFrom: "machop", evolveTo: "machamp", fleeRate: 0.07 }, "machamp": { id: 68, egg: 0, buddy: 3, candy: 0, name: "Machamp", stats: { stamina: 180, attack: 234, defense: 162 }, type: ["fighting"], quickMoves: ["bullet-punch", "karate-chop"], chargeMoves: ["cross-chop", "stone-edge", "submission"], evolveFrom: "machoke", fleeRate: 0.05 }, "bellsprout": { id: 69, egg: 5, buddy: 3, candy: 25, name: "Bellsprout", cpm: [1.54, 1.6], stats: { stamina: 100, attack: 139, defense: 64 }, type: ["grass", "poison"], quickMoves: ["acid", "vine-whip"], chargeMoves: ["power-whip", "sludge-bomb", "wrap"], evolveTo: "weepinbell", fleeRate: 0.15 }, "weepinbell": { id: 70, egg: 0, buddy: 3, candy: 100, name: "Weepinbell", cpm: [1.47, 1.59], stats: { stamina: 130, attack: 172, defense: 95 }, type: ["grass", "poison"], quickMoves: ["acid", "razor-leaf"], chargeMoves: ["power-whip", "seed-bomb", "sludge-bomb"], evolveFrom: "