pokemon-showdown/data/mods/ssb/pokedex.js
2019-09-22 14:47:33 -04:00

192 lines
3.7 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
},
*/
// ACakeWearingAHat
dunsparce: {
inherit: true,
types: ['Normal', 'Ghost'],
},
// Akiamara
croagunk: {
inherit: true,
baseStats: {hp: 83, atk: 106, def: 65, spa: 86, spd: 65, spe: 85},
},
// Arrested
blastoisemega: {
inherit: true,
abilities: {0: "Shell Shocker"},
},
// Birdy
oricorio: {
inherit: true,
abilities: {0: "Arabesque"},
},
oricoriopau: {
inherit: true,
abilities: {0: "Arabesque"},
},
oricoriopompom: {
inherit: true,
abilities: {0: "Arabesque"},
},
oricoriosensu: {
inherit: true,
abilities: {0: "Arabesque"},
},
// E4 Flint
steelixmega: {
inherit: true,
abilities: {0: 'Stark Mountain'},
types: ['Steel', 'Ground', 'Fire'],
},
// Elgino
mimikyubusted: {
inherit: true,
abilities: {0: 'Gib love pls'},
},
// eternally
ducklett: {
inherit: true,
// Doubled def, spa, spd and spe
baseStats: {hp: 62, atk: 44, def: 100, spa: 88, spd: 100, spe: 110},
},
// fart
kartana: {
inherit: true,
types: ['Fairy', 'Steel'],
},
// GMars
minior: {
inherit: true,
abilities: {0: 'mysteryshell'},
},
miniormeteor: {
inherit: true,
abilities: {0: 'mysteryshell'},
},
// grimAuxiliatrix
aggronmega: {
inherit: true,
abilities: {0: 'Intimidate'},
},
// guishark
sharpedomega: {
inherit: true,
abilities: {0: 'gz guishark'},
},
// Kaiju Bunny
gliscor: {
inherit: true,
abilities: {0: 'Poison Heal'}, // Ability change is permanent
},
// Kris
rotomfan: {
inherit: true,
abilities: {0: "Adaptability"},
baseStats: {hp: 50, atk: 65, def: 127, spa: 145, spd: 127, spe: 106},
},
rotomfrost: {
inherit: true,
abilities: {0: "Adaptability"},
baseStats: {hp: 50, atk: 65, def: 127, spa: 145, spd: 127, spe: 106},
},
rotomheat: {
inherit: true,
abilities: {0: "Adaptability"},
baseStats: {hp: 50, atk: 65, def: 127, spa: 145, spd: 127, spe: 106},
},
rotommow: {
inherit: true,
abilities: {0: "Adaptability"},
baseStats: {hp: 50, atk: 65, def: 127, spa: 145, spd: 127, spe: 106},
},
rotomwash: {
inherit: true,
abilities: {0: "Adaptability"},
baseStats: {hp: 50, atk: 65, def: 127, spa: 145, spd: 127, spe: 106},
},
// Level 51
porygon2: {
inherit: true,
abilities: {0: 'Stamina'},
},
// 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'},
},
// OM
flareon: {
inherit: true,
types: ['Fire', 'Fairy'],
},
// Overneat
absolmega: {
inherit: true,
abilities: {0: 'Filter'},
types: ['Dark', 'Fairy'],
},
// Pirate Princess
gulpin: {
inherit: true,
baseStats: {hp: 70, atk: 43, def: 53, spa: 86, spd: 53, spe: 40},
},
// pre
deoxys: {
inherit: true,
abilities: {0: 'Optimize'},
},
deoxysattack: {
inherit: true,
abilities: {0: 'Optimize'},
},
deoxysdefense: {
inherit: true,
abilities: {0: 'Optimize'},
},
deoxysspeed: {
inherit: true,
abilities: {0: 'Optimize'},
},
// Psynergy
blazikenmega: {
inherit: true,
abilities: {0: 'Wrath'},
},
// Rach
pikachulibre: {
inherit: true,
types: ['Electric', 'Fighting'],
},
// Sunny
sceptilemega: {
inherit: true,
abilities: {0: 'Contrary'},
},
// Zalm
weedle: {
inherit: true,
baseStats: {hp: 85, atk: 100, def: 90, spa: 20, spd: 90, spe: 90},
},
};
exports.BattlePokedex = BattlePokedex;