mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Reshiram V",
|
|
fr: "Reshiram V",
|
|
es: "Reshiram V",
|
|
it: "Reshiram V",
|
|
pt: "Reshiram V",
|
|
de: "Reshiram V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 220,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Sparkling Wing",
|
|
fr: "Aile Scintillante",
|
|
es: "Ala Centelleante",
|
|
it: "Ala Sfavillante",
|
|
pt: "Asa Cintilante",
|
|
de: "Funkelnde Flügel"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 basic Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à l'un de vos Pokémon. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a 1 de tus Pokémon. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 cartas de Energia básica no seu baralho e ligue-as a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie an 1 deiner Pokémon an. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Fire", "Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "White Blaze",
|
|
fr: "Brasier Blanc",
|
|
es: "Llamarada Blanca",
|
|
it: "Fiammata Bianca",
|
|
pt: "Labareda Branca",
|
|
de: "Weißer Brand"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If tails, during your next turn, this Pokémon can't attack.",
|
|
fr: "Lancez une pièce. Si c'est pile, pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Lanza 1 moneda. Si sale cruz, este Pokémon no puede atacar durante tu próximo turno.",
|
|
it: "Lancia una moneta. Se esce croce, durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Jogue 1 moeda. Se sair coroa, durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Wirf 1 Münze. Bei Zahl kann dieses Pokémon während deines nächsten Zuges nicht angreifen."
|
|
},
|
|
|
|
damage: 200
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |