pokemon-showdown/mods/gen4/scripts.js
Guangcong Luo af2026436a More style fixes and Gulpfile updates
JSHint is now a fair bit stricter, and is now correctly checking
files in `mods/`.

The code has been fixed to match the new stricter standards.

JSHint has now caught its second actual bug: Gen 5 Pinap Berry
was Ice instead of Grass.
2014-08-10 20:43:53 -04:00

10 lines
168 B
JavaScript

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