mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-24 06:49:11 -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.
28 lines
490 B
TypeScript
28 lines
490 B
TypeScript
export const Pokedex: {[k: string]: ModdedSpeciesData} = {
|
|
milotic: {
|
|
inherit: true,
|
|
evoType: 'levelExtra',
|
|
evoCondition: 'with high Beauty',
|
|
},
|
|
rotomheat: {
|
|
inherit: true,
|
|
types: ["Electric", "Ghost"],
|
|
},
|
|
rotomwash: {
|
|
inherit: true,
|
|
types: ["Electric", "Ghost"],
|
|
},
|
|
rotomfrost: {
|
|
inherit: true,
|
|
types: ["Electric", "Ghost"],
|
|
},
|
|
rotomfan: {
|
|
inherit: true,
|
|
types: ["Electric", "Ghost"],
|
|
},
|
|
rotommow: {
|
|
inherit: true,
|
|
types: ["Electric", "Ghost"],
|
|
},
|
|
};
|