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
74 lines
1.1 KiB
TypeScript
74 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
illustrator: "PLANETA Tsuji",
|
|
category: "Pokemon",
|
|
stage: "V-UNION",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Zacian V-UNION"
|
|
},
|
|
|
|
rarity: "None",
|
|
hp: 320,
|
|
types: ["Metal"],
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Union Gain"
|
|
},
|
|
|
|
effect: {
|
|
en: "Attach up to 2 Metal Energy cards from your discard pile to this Pokémon."
|
|
}
|
|
}, {
|
|
cost: ["Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Dance of the Crowned Sword"
|
|
},
|
|
|
|
damage: 150,
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, the Defending Pokémon's attacks do 150 less damage (before applying Weakness and Resistance)."
|
|
}
|
|
}, {
|
|
cost: ["Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Steel Cut"
|
|
},
|
|
|
|
damage: 200
|
|
}, {
|
|
cost: ["Metal", "Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Master Blade"
|
|
},
|
|
|
|
damage: 340,
|
|
|
|
effect: {
|
|
en: "Discard 3 Energy from this Pokémon."
|
|
}
|
|
}],
|
|
|
|
regulationMark: "E",
|
|
suffix: "V"
|
|
}
|
|
|
|
export default card
|