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:
73
data/Sword & Shield/SWSH Black Star Promos/SWSH166.ts
Normal file
73
data/Sword & Shield/SWSH Black Star Promos/SWSH166.ts
Normal file
@ -0,0 +1,73 @@
|
||||
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
|
Reference in New Issue
Block a user