mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-23 00:06:15 -05:00
Also move mods/ to data/mods/ This makes PS more monorepo-like. The intent is to further separate the sim and the server code, but without fully committing to splitting the repository itself. We now support `./pokemon-showdown start` in addition to `./pokemon-showdown`. I'm not clear which I want to be the default yet.
24 lines
391 B
JavaScript
24 lines
391 B
JavaScript
'use strict';
|
|
|
|
/**@type {{[k: string]: ModdedTemplateData}} */
|
|
let BattlePokedex = {
|
|
genesectdouse: {
|
|
inherit: true,
|
|
types: ["Bug", "Water"],
|
|
},
|
|
genesectshock: {
|
|
inherit: true,
|
|
types: ["Bug", "Electric"],
|
|
},
|
|
genesectburn: {
|
|
inherit: true,
|
|
types: ["Bug", "Fire"],
|
|
},
|
|
genesectchill: {
|
|
inherit: true,
|
|
types: ["Bug", "Ice"],
|
|
},
|
|
};
|
|
|
|
exports.BattlePokedex = BattlePokedex;
|