mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-29 04:06:54 -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.
63 lines
834 B
TypeScript
63 lines
834 B
TypeScript
export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
aegislash: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
blaziken: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
blazikenmega: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
genesect: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
gengarmega: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
greninja: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
kangaskhanmega: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
landorus: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
mawilemega: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
salamencemega: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
deoxysdefense: {
|
|
inherit: true,
|
|
tier: "Uber",
|
|
},
|
|
deoxysspeed: {
|
|
inherit: true,
|
|
tier: "Uber",
|
|
},
|
|
hoopaunbound: {
|
|
inherit: true,
|
|
tier: "OU",
|
|
},
|
|
kyurem: {
|
|
inherit: true,
|
|
tier: "Uber",
|
|
},
|
|
kyuremblack: {
|
|
inherit: true,
|
|
tier: "Uber",
|
|
},
|
|
};
|