1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

78 lines
1.5 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 '../SWSH Black Star Promos'
const card: Card = {
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"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
attacks: [{
name: {
en: "Low Kick",
fr: "Balayage",
es: "Patada Baja",
it: "Colpo Basso",
pt: "Rasteira",
de: "Fußkick"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
en: "Brawny Knuckle",
fr: "Poing Batailleur",
es: "Nudillo Fornido",
it: "Pugno Vigoroso",
pt: "Punho Musculoso",
de: "Muskelfaust"
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
es: "El daño de este ataque no se ve afectado por Resistencia.",
it: "I danni di questo attacco non sono influenzati dalla resistenza.",
pt: "O dano deste ataque não é afetado por Resistência.",
de: "Der Schaden dieser Attacke wird durch Resistenz nicht verändert."
},
damage: 180,
cost: ["Fighting", "Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
stage: "Basic",
dexId: [892],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "E",
suffix: "V"
}
export default card