mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
60
data/Sword & Shield/Fusion Strike/254.ts
Normal file
60
data/Sword & Shield/Fusion Strike/254.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Genesect V",
|
||||
fr: "Genesect V",
|
||||
es: "Genesect V",
|
||||
it: "Genesect V",
|
||||
pt: "Genesect V",
|
||||
de: "Genesect V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "PLANETA Tsuji",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Fusion Strike System"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may draw cards until you have as many cards in your hand as you have Fusion Strike Pokémon in play."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Techno Blast"
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user