mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-21 14:59:50 -05:00
17 lines
246 B
JavaScript
17 lines
246 B
JavaScript
/**
|
|
* Gen 2 had no abilities whatsoever.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
exports.BattleAbilities = {
|
|
"None": {
|
|
desc: "This Pokemon has no ability.",
|
|
shortDesc: "This Pokemon has no ability.",
|
|
id: "none",
|
|
name: "None",
|
|
rating: 1,
|
|
num: 1,
|
|
},
|
|
};
|