mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-09 12:36:41 -05:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
exports.BattleScripts = {
|
|
init: function () {
|
|
for (var i in this.data.Pokedex) {
|
|
this.modData('Pokedex', i).baseStats = {hp:100, atk:100, def:100, spa:100, spd:100, spe:100};
|
|
}
|
|
}
|
|
};
|