1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

78 lines
2.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
dexId: [892],
set: Set,
name: {
en: "Single Strike Urshifu V",
fr: "Shifours Poing Final V",
es: "Urshifu Golpe Brusco V",
it: "Urshifu Singolcolpo V",
pt: "Urshifu Golpe Decisivo V",
de: "Fokussierter-Angriff-Wulaosu V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
attacks: [{
cost: ["Fighting"],
name: {
en: "Laser Focus",
fr: "Affilage",
es: "Aguzar",
it: "Concentrazione",
pt: "Aguçar",
de: "Konzentration"
},
effect: {
en: "Search your deck for up to 2 Fighting Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Fighting, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 cartas de Energía Fighting y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due carte Energia Fighting e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 cartas de Energia Fighting no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Fighting-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
}
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
en: "Impact Blow",
fr: "Coup à Impact",
es: "Golpe Impactante",
it: "Colpoimpatto",
pt: "Golpe Impactante",
de: "Einschlag"
},
effect: {
en: "During your next turn, this Pokémon can't use Impact Blow.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup à Impact.",
es: "Durante tu próximo turno, este Pokémon no puede usar Golpe Impactante.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Colpoimpatto.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe Impactante.",
de: "Während deines nächsten Zuges kann dieses Pokémon Einschlag nicht einsetzen."
},
damage: 180
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card