mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-13 08:01:06 -05:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
exports.BattleScripts = {
|
|
inherit: 'gen5',
|
|
gen: 4,
|
|
init: function () {
|
|
for (var i in this.data.Pokedex) {
|
|
delete this.data.Pokedex[i].abilities['H'];
|
|
}
|
|
}
|
|
}
|