mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 01:07:53 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Paldean Tauros",
|
|
fr: "Tauros de Paldea",
|
|
es: "Tauros de Paldea",
|
|
it: "Tauros di Paldea",
|
|
pt: "Tauros de Paldea",
|
|
de: "Paldea-Tauros"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smash Kick",
|
|
fr: "Coud'Pattes",
|
|
es: "Patada Destrucción",
|
|
it: "Calcio Esplosivo",
|
|
pt: "Chute Poderoso",
|
|
de: "Schmetterkick"
|
|
},
|
|
|
|
damage: 40
|
|
}, {
|
|
cost: ["Fighting", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Blocking Stomp",
|
|
fr: "Piétinement Bloquant",
|
|
es: "Pisotón Bloqueo",
|
|
it: "Pestonblocco",
|
|
pt: "Pisoteada Bloqueadora",
|
|
de: "Blockierstampfer"
|
|
},
|
|
|
|
effect: {
|
|
en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.",
|
|
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
|
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
|
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
|
|
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante o próximo turno do seu oponente.",
|
|
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|