mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-14 08:20: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.
191 lines
2.8 KiB
TypeScript
191 lines
2.8 KiB
TypeScript
export const Items: {[k: string]: ModdedItemData} = {
|
|
abomasite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
absolite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
aerodactylite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
aggronite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
alakazite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
altarianite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
ampharosite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
audinite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
banettite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
beedrillite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
blastoisinite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
blazikenite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
cameruptite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
charizarditex: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
charizarditey: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
diancite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
galladite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
garchompite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
gardevoirite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
gengarite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
glalitite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
gyaradosite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
heracronite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
houndoominite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
kangaskhanite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
latiasite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
latiosite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
lopunnite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
lucarionite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
manectite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
mawilite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
medichamite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
metagrossite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
mewtwonitex: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
mewtwonitey: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
pidgeotite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
pinsirite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
sablenite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
salamencite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
sceptilite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
scizorite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
sharpedonite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
slowbronite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
steelixite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
swampertite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
tyranitarite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
venusaurite: {
|
|
inherit: true,
|
|
isNonstandard: null,
|
|
},
|
|
};
|