pokemon-showdown/mods/gen4/scripts.js
2016-01-01 00:20:07 +01:00

12 lines
184 B
JavaScript

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