mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
ESLint has a whole new config format, so I figure it's a good time to make the config system saner. - First, we no longer have separate eslint-no-types configs. Lint performance shouldn't be enough of a problem to justify the relevant maintenance complexity. - Second, our base config should work out-of-the-box now. `npx eslint` will work as expected, without any CLI flags. You should still use `npm run lint` which adds the `--cached` flag for performance. - Third, whatever updates I did fixed style linting, which apparently has been bugged for quite some time, considering all the obvious mixed-tabs-and-spaces issues I found in the upgrade. Also here are some changes to our style rules. In particular: - Curly brackets (for objects etc) now have spaces inside them. Sorry for the huge change. ESLint doesn't support our old style, and most projects use Prettier style, so we might as well match them in this way. See https://github.com/eslint-stylistic/eslint-stylistic/issues/415 - String + number concatenation is no longer allowed. We now consistently use template strings for this.
390 lines
7.9 KiB
TypeScript
390 lines
7.9 KiB
TypeScript
export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable = {
|
|
charizardmegax: {
|
|
inherit: true,
|
|
color: "Red",
|
|
},
|
|
arbok: {
|
|
inherit: true,
|
|
baseStats: { hp: 60, atk: 85, def: 69, spa: 65, spd: 79, spe: 80 },
|
|
},
|
|
pikachu: {
|
|
inherit: true,
|
|
formeOrder: ["Pikachu", "Pikachu-Rock-Star", "Pikachu-Belle", "Pikachu-Pop-Star", "Pikachu-PhD", "Pikachu-Libre", "Pikachu-Cosplay"],
|
|
},
|
|
dugtrio: {
|
|
inherit: true,
|
|
baseStats: { hp: 35, atk: 80, def: 50, spa: 50, spd: 70, spe: 120 },
|
|
},
|
|
alakazammega: {
|
|
inherit: true,
|
|
baseStats: { hp: 55, atk: 50, def: 65, spa: 175, spd: 95, spe: 150 },
|
|
},
|
|
farfetchd: {
|
|
inherit: true,
|
|
baseStats: { hp: 52, atk: 65, def: 55, spa: 58, spd: 62, spe: 60 },
|
|
},
|
|
dodrio: {
|
|
inherit: true,
|
|
baseStats: { hp: 60, atk: 110, def: 70, spa: 60, spd: 60, spe: 100 },
|
|
},
|
|
gengar: {
|
|
inherit: true,
|
|
abilities: { 0: "Levitate" },
|
|
},
|
|
electrode: {
|
|
inherit: true,
|
|
baseStats: { hp: 60, atk: 50, def: 70, spa: 80, spd: 80, spe: 140 },
|
|
},
|
|
exeggutor: {
|
|
inherit: true,
|
|
baseStats: { hp: 95, atk: 95, def: 85, spa: 125, spd: 65, spe: 55 },
|
|
},
|
|
noctowl: {
|
|
inherit: true,
|
|
baseStats: { hp: 100, atk: 50, def: 50, spa: 76, spd: 96, spe: 70 },
|
|
},
|
|
ariados: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 90, def: 70, spa: 60, spd: 60, spe: 40 },
|
|
},
|
|
qwilfish: {
|
|
inherit: true,
|
|
baseStats: { hp: 65, atk: 95, def: 75, spa: 55, spd: 55, spe: 85 },
|
|
},
|
|
magcargo: {
|
|
inherit: true,
|
|
baseStats: { hp: 50, atk: 50, def: 120, spa: 80, spd: 80, spe: 30 },
|
|
},
|
|
corsola: {
|
|
inherit: true,
|
|
baseStats: { hp: 55, atk: 55, def: 85, spa: 65, spd: 85, spe: 35 },
|
|
},
|
|
mantine: {
|
|
inherit: true,
|
|
baseStats: { hp: 65, atk: 40, def: 70, spa: 80, spd: 140, spe: 70 },
|
|
},
|
|
raikou: {
|
|
inherit: true,
|
|
abilities: { 0: "Pressure", H: "Volt Absorb" },
|
|
unreleasedHidden: true,
|
|
},
|
|
entei: {
|
|
inherit: true,
|
|
abilities: { 0: "Pressure", H: "Flash Fire" },
|
|
unreleasedHidden: true,
|
|
},
|
|
suicune: {
|
|
inherit: true,
|
|
abilities: { 0: "Pressure", H: "Water Absorb" },
|
|
unreleasedHidden: true,
|
|
},
|
|
swellow: {
|
|
inherit: true,
|
|
baseStats: { hp: 60, atk: 85, def: 60, spa: 50, spd: 50, spe: 125 },
|
|
},
|
|
wingull: {
|
|
inherit: true,
|
|
abilities: { 0: "Keen Eye", H: "Rain Dish" },
|
|
},
|
|
pelipper: {
|
|
inherit: true,
|
|
baseStats: { hp: 60, atk: 50, def: 100, spa: 85, spd: 70, spe: 65 },
|
|
abilities: { 0: "Keen Eye", H: "Rain Dish" },
|
|
},
|
|
masquerain: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 60, def: 62, spa: 80, spd: 82, spe: 60 },
|
|
},
|
|
delcatty: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 65, def: 65, spa: 55, spd: 55, spe: 70 },
|
|
},
|
|
volbeat: {
|
|
inherit: true,
|
|
baseStats: { hp: 65, atk: 73, def: 55, spa: 47, spd: 75, spe: 85 },
|
|
abilities: { 0: "Illuminate", 1: "Swarm", H: "Prankster" },
|
|
},
|
|
illumise: {
|
|
inherit: true,
|
|
baseStats: { hp: 65, atk: 47, def: 55, spa: 73, spd: 75, spe: 85 },
|
|
},
|
|
torkoal: {
|
|
inherit: true,
|
|
abilities: { 0: "White Smoke", H: "Shell Armor" },
|
|
},
|
|
lunatone: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 55, def: 65, spa: 95, spd: 85, spe: 70 },
|
|
},
|
|
solrock: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 95, def: 85, spa: 55, spd: 65, spe: 70 },
|
|
},
|
|
castform: {
|
|
inherit: true,
|
|
color: "White",
|
|
},
|
|
castformsunny: {
|
|
inherit: true,
|
|
color: "White",
|
|
},
|
|
castformrainy: {
|
|
inherit: true,
|
|
color: "White",
|
|
},
|
|
chimecho: {
|
|
inherit: true,
|
|
baseStats: { hp: 65, atk: 50, def: 70, spa: 95, spd: 80, spe: 65 },
|
|
},
|
|
latiasmega: {
|
|
inherit: true,
|
|
color: "Red",
|
|
},
|
|
latiosmega: {
|
|
inherit: true,
|
|
color: "Blue",
|
|
},
|
|
burmy: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
},
|
|
wormadam: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
},
|
|
wormadamsandy: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
},
|
|
wormadamtrash: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
},
|
|
cherrim: {
|
|
inherit: true,
|
|
color: "Pink",
|
|
},
|
|
arceus: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
},
|
|
arceusbug: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Insect Plate"],
|
|
},
|
|
arceusdark: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Dread Plate"],
|
|
},
|
|
arceusdragon: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Draco Plate"],
|
|
},
|
|
arceuselectric: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Zap Plate"],
|
|
},
|
|
arceusfairy: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Pixie Plate"],
|
|
},
|
|
arceusfighting: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Fist Plate"],
|
|
},
|
|
arceusfire: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Flame Plate"],
|
|
},
|
|
arceusflying: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Sky Plate"],
|
|
},
|
|
arceusghost: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Spooky Plate"],
|
|
},
|
|
arceusgrass: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Meadow Plate"],
|
|
},
|
|
arceusground: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Earth Plate"],
|
|
},
|
|
arceusice: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Icicle Plate"],
|
|
},
|
|
arceuspoison: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Toxic Plate"],
|
|
},
|
|
arceuspsychic: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Mind Plate"],
|
|
},
|
|
arceusrock: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Stone Plate"],
|
|
},
|
|
arceussteel: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Iron Plate"],
|
|
},
|
|
arceuswater: {
|
|
inherit: true,
|
|
color: "Gray",
|
|
requiredItems: ["Splash Plate"],
|
|
},
|
|
roggenrola: {
|
|
inherit: true,
|
|
abilities: { 0: "Sturdy", H: "Sand Force" },
|
|
},
|
|
boldore: {
|
|
inherit: true,
|
|
abilities: { 0: "Sturdy", H: "Sand Force" },
|
|
},
|
|
gigalith: {
|
|
inherit: true,
|
|
abilities: { 0: "Sturdy", H: "Sand Force" },
|
|
},
|
|
woobat: {
|
|
inherit: true,
|
|
baseStats: { hp: 55, atk: 45, def: 43, spa: 55, spd: 43, spe: 72 },
|
|
},
|
|
audinomega: {
|
|
inherit: true,
|
|
color: "Pink",
|
|
},
|
|
darmanitanzen: {
|
|
inherit: true,
|
|
color: "Red",
|
|
},
|
|
crustle: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 95, def: 125, spa: 65, spd: 75, spe: 45 },
|
|
},
|
|
vanillite: {
|
|
inherit: true,
|
|
abilities: { 0: "Ice Body", H: "Weak Armor" },
|
|
},
|
|
vanillish: {
|
|
inherit: true,
|
|
abilities: { 0: "Ice Body", H: "Weak Armor" },
|
|
},
|
|
vanilluxe: {
|
|
inherit: true,
|
|
abilities: { 0: "Ice Body", H: "Weak Armor" },
|
|
},
|
|
deerling: {
|
|
inherit: true,
|
|
color: "Yellow",
|
|
},
|
|
cubchoo: {
|
|
inherit: true,
|
|
abilities: { 0: "Snow Cloak", H: "Rattled" },
|
|
},
|
|
beartic: {
|
|
inherit: true,
|
|
baseStats: { hp: 95, atk: 110, def: 80, spa: 70, spd: 80, spe: 50 },
|
|
abilities: { 0: "Snow Cloak", H: "Swift Swim" },
|
|
},
|
|
cryogonal: {
|
|
inherit: true,
|
|
baseStats: { hp: 70, atk: 50, def: 30, spa: 95, spd: 135, spe: 105 },
|
|
},
|
|
greninja: {
|
|
inherit: true,
|
|
abilities: { 0: "Torrent", H: "Protean" },
|
|
},
|
|
vivillon: {
|
|
inherit: true,
|
|
color: "Black",
|
|
},
|
|
meowstic: {
|
|
inherit: true,
|
|
color: "White",
|
|
},
|
|
zygarde: {
|
|
inherit: true,
|
|
abilities: { 0: "Aura Break" },
|
|
},
|
|
necturna: {
|
|
inherit: true,
|
|
baseStats: { hp: 64, atk: 120, def: 100, spa: 85, spd: 120, spe: 81 },
|
|
},
|
|
malaconda: {
|
|
inherit: true,
|
|
abilities: { 0: "Harvest", 1: "Infiltrator" },
|
|
},
|
|
naviathan: {
|
|
inherit: true,
|
|
abilities: { 0: "Water Veil", 1: "Heatproof", H: "Light Metal" },
|
|
},
|
|
crucibellemega: {
|
|
inherit: true,
|
|
baseStats: { hp: 106, atk: 135, def: 75, spa: 85, spd: 125, spe: 114 },
|
|
},
|
|
syclant: {
|
|
inherit: true,
|
|
abilities: { 0: "Compound Eyes", 1: "Mountaineer" },
|
|
},
|
|
revenankh: {
|
|
inherit: true,
|
|
abilities: { 0: "Air Lock", H: "Shed Skin" },
|
|
},
|
|
pyroak: {
|
|
inherit: true,
|
|
abilities: { 0: "Rock Head", 1: "Battle Armor" },
|
|
},
|
|
fidgit: {
|
|
inherit: true,
|
|
abilities: { 0: "Persistent", 1: "Vital Spirit" },
|
|
},
|
|
stratagem: {
|
|
inherit: true,
|
|
abilities: { 0: "Levitate", 1: "Technician" },
|
|
},
|
|
arghonaut: {
|
|
inherit: true,
|
|
abilities: { 0: "Unaware" },
|
|
},
|
|
kitsunoh: {
|
|
inherit: true,
|
|
abilities: { 0: "Frisk", 1: "Limber" },
|
|
},
|
|
cyclohm: {
|
|
inherit: true,
|
|
abilities: { 0: "Shield Dust", 1: "Static" },
|
|
},
|
|
colossoil: {
|
|
inherit: true,
|
|
abilities: { 0: "Rebound", 1: "Guts" },
|
|
},
|
|
krilowatt: {
|
|
inherit: true,
|
|
abilities: { 0: "Trace", 1: "Magic Guard" },
|
|
},
|
|
voodoom: {
|
|
inherit: true,
|
|
abilities: { 0: "Volt Absorb", 1: "Lightning Rod" },
|
|
},
|
|
};
|