mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-17 18:51:43 -05:00
`BattlePokedex` is now `Pokedex`, `BattleItems` is now `Items`, etc. I also renamed `Movedex` to `Moves` and `Statuses` to `Conditions`. `TypeChart` isn't `Types` yet, because unlike the others, it's not indexed by ID. That should probably be fixed one day.
19 lines
325 B
TypeScript
19 lines
325 B
TypeScript
export const Pokedex: {[k: string]: ModdedSpeciesData} = {
|
|
genesectdouse: {
|
|
inherit: true,
|
|
types: ["Bug", "Water"],
|
|
},
|
|
genesectshock: {
|
|
inherit: true,
|
|
types: ["Bug", "Electric"],
|
|
},
|
|
genesectburn: {
|
|
inherit: true,
|
|
types: ["Bug", "Fire"],
|
|
},
|
|
genesectchill: {
|
|
inherit: true,
|
|
types: ["Bug", "Ice"],
|
|
},
|
|
};
|