pokemon-showdown/data/mods/roulettemons/items.ts
scoopapa d86b9435a3
Add April 2022 Pet Mod of the Season (#8712)
* Add PMOTS

Adding Restrictions and Roulettemons Random Battles

* Update pokedex.ts

* Update random-teams.ts

* Update config/formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update config/formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update config/formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2022-04-28 18:49:52 -06:00

18 lines
450 B
TypeScript

export const Items: {[k: string]: ModdedItemData} = {
chillytite: {
name: "Chillytite",
spritenum: 594,
megaStone: "Chillyte-Mega",
megaEvolves: "Chillyte",
itemUser: ["Chillyte"],
onTakeItem(item, source) {
if (item.megaEvolves === source.baseSpecies.baseSpecies) return false;
return true;
},
num: 673,
gen: 8,
isNonstandard: "Past",
desc: "If held by a Chillyte, this item allows it to Mega Evolve in battle.",
},
};