mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
104 lines
1.6 KiB
TypeScript
104 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
illustrator: "Shin Nagasawa",
|
|
category: "Pokemon",
|
|
stage: "V-UNION",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Greninja V-UNION"
|
|
},
|
|
|
|
rarity: "None",
|
|
hp: 300,
|
|
types: ["Water"],
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Ninja Body"
|
|
},
|
|
|
|
effect: {
|
|
en: "Whenever your opponent plays an Item card from their hand, prevent all effects of that card done to this Pokémon."
|
|
}
|
|
}, {
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Antidote Jutsu"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon can't be Poisoned."
|
|
}
|
|
}, {
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Feel the Way"
|
|
},
|
|
|
|
effect: {
|
|
en: "Once during your turn, you may have your opponent reveal their hand."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Union Gain"
|
|
},
|
|
|
|
effect: {
|
|
en: "Attach up to 2 Water Energy cards from your discard pile to this Pokémon."
|
|
}
|
|
}, {
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Aqua Edge"
|
|
},
|
|
|
|
damage: 130
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Twister Shuriken"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 100 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
|
|
}
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Waterfall Bind"
|
|
},
|
|
|
|
damage: 180,
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
|
|
}
|
|
}],
|
|
|
|
regulationMark: "E",
|
|
suffix: "V"
|
|
}
|
|
|
|
export default card
|