mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-09 12:36:41 -05:00
Formats for its own validateSet, statuses, learnsets (from Veekun), items, move changes, formats data for tiering, ability none, and battle scripts.
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
/**
|
|
* Gen 2 had no abilities whatsoever.
|
|
*/
|
|
exports.BattleAbilities = {
|
|
"None": {
|
|
desc: "This Pokemon has no ability.",
|
|
shortDesc: "This Pokemon has no ability.",
|
|
id: "none",
|
|
name: "None",
|
|
rating: 1,
|
|
num: 1
|
|
}
|
|
};
|