Spaces:
Paused
Paused
| ; | |
| var __defProp = Object.defineProperty; | |
| var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | |
| var __getOwnPropNames = Object.getOwnPropertyNames; | |
| var __hasOwnProp = Object.prototype.hasOwnProperty; | |
| var __export = (target, all) => { | |
| for (var name in all) | |
| __defProp(target, name, { get: all[name], enumerable: true }); | |
| }; | |
| var __copyProps = (to, from, except, desc) => { | |
| if (from && typeof from === "object" || typeof from === "function") { | |
| for (let key of __getOwnPropNames(from)) | |
| if (!__hasOwnProp.call(to, key) && key !== except) | |
| __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | |
| } | |
| return to; | |
| }; | |
| var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); | |
| var pokedex_exports = {}; | |
| __export(pokedex_exports, { | |
| Pokedex: () => Pokedex | |
| }); | |
| module.exports = __toCommonJS(pokedex_exports); | |
| const Pokedex = { | |
| gastly: { | |
| inherit: true, | |
| baseStats: { hp: 30, atk: 35, def: 30, spa: 70, spd: 35, spe: 60 }, | |
| abilities: { 0: "Frisk", 1: "Protean", H: "Neutralizing Gas" } | |
| }, | |
| swablu: { | |
| inherit: true, | |
| types: ["Fairy", "Flying"], | |
| baseStats: { hp: 45, atk: 45, def: 60, spa: 45, spd: 75, spe: 50 }, | |
| abilities: { 0: "Natural Cure", 1: "Scrappy", H: "Pixilate" } | |
| }, | |
| slugma: { | |
| inherit: true, | |
| baseStats: { hp: 30, atk: 40, def: 40, spa: 80, spd: 30, spe: 40 }, | |
| abilities: { 0: "Flame Body", 1: "Weak Armor", H: "Magmatic Entrance" } | |
| }, | |
| sprigatito: { | |
| inherit: true, | |
| baseStats: { hp: 40, atk: 65, def: 54, spa: 31, spd: 45, spe: 75 }, | |
| abilities: { 0: "Overgrow", H: "Entertainer" } | |
| }, | |
| dreepy: { | |
| inherit: true, | |
| baseStats: { hp: 41, atk: 60, def: 40, spa: 42, spd: 40, spe: 82 } | |
| }, | |
| tepig: { | |
| inherit: true, | |
| types: ["Fire", "Ground"], | |
| baseStats: { hp: 65, atk: 63, def: 50, spa: 35, spd: 50, spe: 45 }, | |
| abilities: { 0: "Blaze", H: "Sap Sipper" } | |
| }, | |
| meowthgalar: { | |
| inherit: true, | |
| baseStats: { hp: 60, atk: 65, def: 65, spa: 40, spd: 40, spe: 40 }, | |
| abilities: { 0: "Tough Claws", H: "Spiked Fur" } | |
| }, | |
| toxel: { | |
| inherit: true, | |
| baseStats: { hp: 60, atk: 48, def: 55, spa: 64, spd: 55, spe: 40 }, | |
| abilities: { 0: "Rattled", 1: "Static", H: "Pickpocket" } | |
| }, | |
| fletchling: { | |
| inherit: true, | |
| types: ["Fire", "Flying"], | |
| baseStats: { hp: 45, atk: 50, def: 55, spa: 40, spd: 38, spe: 52 } | |
| }, | |
| spoink: { | |
| inherit: true, | |
| types: ["Psychic", "Rock"], | |
| baseStats: { hp: 60, atk: 25, def: 35, spa: 70, spd: 75, spe: 70 }, | |
| abilities: { 0: "Magic Resistance", 1: "Own Tempo", H: "Gluttony" } | |
| }, | |
| cutiefly: { | |
| inherit: true, | |
| baseStats: { hp: 50, atk: 35, def: 50, spa: 50, spd: 50, spe: 25 }, | |
| abilities: { 0: "Oblivious", 1: "Shield Dust", H: "Hover" } | |
| }, | |
| shieldon: { | |
| inherit: true, | |
| abilities: { 0: "Sturdy", 1: "Battle Armor", H: "Stall" } | |
| }, | |
| wooperpaldea: { | |
| inherit: true, | |
| baseStats: { hp: 55, atk: 65, def: 65, spa: 25, spd: 45, spe: 35 } | |
| }, | |
| wooper: { | |
| inherit: true, | |
| baseStats: { hp: 55, atk: 65, def: 65, spa: 25, spd: 45, spe: 35 }, | |
| abilities: { 0: "Damp", 1: "Go with the Flow" } | |
| }, | |
| corphish: { | |
| inherit: true, | |
| types: ["Water", "Dark"], | |
| baseStats: { hp: 50, atk: 80, def: 65, spa: 50, spd: 35, spe: 46 }, | |
| abilities: { 0: "Adaptability", 1: "Hyper Cutter", H: "Shell Armor" } | |
| }, | |
| jangmoo: { | |
| inherit: true, | |
| types: ["Dragon", "Fairy"], | |
| baseStats: { hp: 65, atk: 65, def: 65, spa: 55, spd: 55, spe: 55 }, | |
| abilities: { 0: "Bulletproof", 1: "Overcoat", H: "Marvel Scale" } | |
| }, | |
| mareep: { | |
| inherit: true, | |
| types: ["Electric", "Grass"], | |
| baseStats: { hp: 55, atk: 40, def: 40, spa: 65, spd: 60, spe: 35 }, | |
| abilities: { 0: "Static", H: "Fluffy Charger" } | |
| }, | |
| cetoddle: { | |
| inherit: true, | |
| abilities: { 0: "Thick Fat", 1: "Sheer Force", H: "Sliding Whale" } | |
| }, | |
| eevee: { | |
| inherit: true, | |
| baseStats: { hp: 60, atk: 55, def: 50, spa: 45, spd: 65, spe: 55 }, | |
| abilities: { 0: "Run Away", 1: "Supreme Survivor", H: "Anticipation" } | |
| } | |
| }; | |
| //# sourceMappingURL=pokedex.js.map | |