pokemon-showdown/data/mods/ssb/items.ts
2021-03-22 22:06:59 -04:00

46 lines
1.0 KiB
TypeScript

export const Items: {[k: string]: ModdedItemData} = {
// Alpha
caioniumz: {
name: "Caionium Z",
onTakeItem: false,
zMove: "Blistering Ice Age",
zMoveFrom: "Blizzard",
itemUser: ["Aurorus"],
gen: 8,
desc: "If held by an Aurorus with Blizzard, it can use Blistering Ice Age.",
},
// A Quag To The Past
quagniumz: {
name: "Quagnium Z",
onTakeItem: false,
zMove: "Bounty Place",
zMoveFrom: "Scorching Sands",
itemUser: ["Quagsire"],
gen: 8,
desc: "If held by a Quagsire with Scorching Sands, it can use Bounty Place.",
},
// Kalalokki
kalalokkiumz: {
name: "Kalalokkium Z",
onTakeItem: false,
zMove: "Gaelstrom",
zMoveFrom: "Blackbird",
itemUser: ["Wingull"],
gen: 8,
desc: "If held by a Wingull with Blackbird, it can use Gaelstrom.",
},
// Robb576
modium6z: {
name: "Modium-6 Z",
onTakeItem: false,
zMove: "Integer Overflow",
zMoveFrom: "Photon Geyser",
itemUser: ["Necrozma-Ultra"],
gen: 8,
desc: "If held by a Robb576 with Photon Geyser, it can use Integer Overflow.",
},
};