pokemon-showdown/mods/gen4/scripts.js
Guangcong Luo a39fdd6006 Split off team validation to team-validator.js
This is the first step in a refactor to split team validation into
its own process.
2014-01-09 17:35:19 -08:00

10 lines
166 B
JavaScript

exports.BattleScripts = {
inherit: 'gen5',
gen: 4,
init: function() {
for (var i in this.data.Pokedex) {
delete this.data.Pokedex[i].abilities['H'];
}
}
}