mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Sword & Shield Fixes (#84)
* 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
This commit is contained in:
103
data/Sword & Shield/SWSH Black Star Promos/SWSH158.ts
Normal file
103
data/Sword & Shield/SWSH Black Star Promos/SWSH158.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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
|
Reference in New Issue
Block a user