mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 21:39:55 +00:00
80 lines
1.2 KiB
TypeScript
80 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu V-UNION",
|
|
fr: "Pikachu V-UNION",
|
|
de: "Pikachu V-UNION",
|
|
es: "Pikachu V-UNIÓN",
|
|
pt: "Pikachu V-UNIÃO",
|
|
it: "Pikachu V UNIONE"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "V-UNION",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Union Gain"
|
|
},
|
|
|
|
effect: {
|
|
en: "Attach up to 2 Lightning Energy cards from your discard pile to this Pokémon."
|
|
}
|
|
}, {
|
|
cost: ["Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Shocking Shock"
|
|
},
|
|
|
|
damage: 120,
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
|
|
}
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Disconnect"
|
|
},
|
|
|
|
damage: 150,
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, they can't play any Item cards from their hand."
|
|
}
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Electro Ball Together"
|
|
},
|
|
|
|
damage: 250
|
|
}],
|
|
|
|
regulationMark: "E",
|
|
suffix: "V",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
hp: 300,
|
|
types: ["Lightning"],
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|