1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

87 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Holo Rare V",
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",
fr: "Système Poing de Fusion",
es: "Sistema Golpe Fusión",
it: "Sistema Colpo Fusione",
de: "Fusionsangriff-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.",
fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir autant en main que vous avez de Pokémon Poing de Fusion en jeu.",
es: "Una vez durante tu turno, puedes robar cartas hasta que tengas tantas cartas en tu mano como Pokémon Golpe Fusión tengas en juego.",
it: "Una sola volta durante il tuo turno, puoi pescare fino ad avere in mano un numero di carte uguale a quello dei tuoi Pokémon Colpo Fusione in gioco.",
de: "Einmal während deines Zuges kannst du so lange Karten ziehen, bis du so viele Karten auf deiner Hand hast, wie du Fusionsangriff-Pokémon im Spiel hast."
}
}],
attacks: [{
cost: ["Metal", "Metal", "Colorless"],
name: {
en: "Techno Blast",
fr: "Techno-Buster",
es: "Tecno Shock",
it: "Tecnobotto",
de: "Techblaster"
},
damage: 210,
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card