mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-26 00:05:29 -05:00
Also move mods/ to data/mods/ This makes PS more monorepo-like. The intent is to further separate the sim and the server code, but without fully committing to splitting the repository itself. We now support `./pokemon-showdown start` in addition to `./pokemon-showdown`. I'm not clear which I want to be the default yet.
97 lines
1.8 KiB
JavaScript
97 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
/**@type {{[k: string]: ModdedTemplateData}} */
|
|
let BattlePokedex = {
|
|
/*
|
|
// Example
|
|
speciesid: {
|
|
inherit: true, // Always use this, makes the pokemon inherit its default values from the parent mod (gen7)
|
|
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100}, // the base stats for the pokemon
|
|
},
|
|
*/
|
|
// Andy
|
|
absolmega: {
|
|
inherit: true,
|
|
abilities: {0: "Adaptability"},
|
|
},
|
|
// Arrested
|
|
blastoisemega: {
|
|
inherit: true,
|
|
abilities: {0: "Shell Shocker"},
|
|
},
|
|
// Bhris Brown
|
|
swampertmega: {
|
|
inherit: true,
|
|
abilities: {0: "Stimulated Pride"},
|
|
},
|
|
// deg
|
|
gengarmega: {
|
|
inherit: true,
|
|
abilities: {0: "Bad Dreams"},
|
|
},
|
|
// E4 Flint
|
|
steelixmega: {
|
|
inherit: true,
|
|
abilities: {0: 'Stark Mountain'},
|
|
types: ['Steel', 'Ground', 'Fire'],
|
|
},
|
|
// eternally
|
|
ducklett: {
|
|
inherit: true,
|
|
// Doubled spa and spe
|
|
baseStats: {hp: 62, atk: 44, def: 50, spa: 88, spd: 50, spe: 110},
|
|
},
|
|
// grimAuxiliatrix
|
|
aggronmega: {
|
|
inherit: true,
|
|
abilities: {0: 'Intimidate'},
|
|
},
|
|
// Kaiju Bunny
|
|
gliscor: {
|
|
inherit: true,
|
|
abilities: {0: 'Poison Heal'}, // Ability change is permanent
|
|
},
|
|
// Level 51
|
|
porygon2: {
|
|
inherit: true,
|
|
abilities: {0: 'Stamina'},
|
|
},
|
|
// Lionyx
|
|
gardevoirmega: {
|
|
inherit: true,
|
|
abilities: {0: 'Frozen Skin'},
|
|
},
|
|
// MacChaeger
|
|
mantyke: {
|
|
inherit: true,
|
|
baseStats: {hp: 90, atk: 40, def: 100, spa: 120, spd: 240, spe: 100},
|
|
},
|
|
// martha
|
|
dianciemega: {
|
|
inherit: true,
|
|
abilities: {0: 'Pixilate'},
|
|
},
|
|
// Morfent
|
|
banettemega: {
|
|
inherit: true,
|
|
abilities: {0: 'Comatose'},
|
|
},
|
|
// Psynergy
|
|
blazikenmega: {
|
|
inherit: true,
|
|
abilities: {0: 'Wrath'},
|
|
},
|
|
// Saburo
|
|
metagrossmega: {
|
|
inherit: true,
|
|
abilities: {0: 'Levitate'},
|
|
},
|
|
// Teclis
|
|
gallademega: {
|
|
inherit: true,
|
|
abilities: {0: 'Natural Cure'},
|
|
},
|
|
};
|
|
|
|
exports.BattlePokedex = BattlePokedex;
|