1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +00:00

110 lines
2.1 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Cinderace",
fr: "Pyrobut",
es: "Cinderace",
it: "Cinderace",
pt: "Cinderace",
de: "Liberlo"
},
illustrator: "Naoki Saito",
rarity: "Holo Rare VMAX",
category: "Pokemon",
set: Set,
hp: 170,
types: [
"Fire",
],
evolveFrom: {
en: "Raboot",
fr: "Lapyro",
es: "Raboot",
it: "Raboot",
pt: "Raboot",
de: "Kickerlo"
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Pyro Ball",
fr: "Ballon Brûlant",
es: "Balón Ígneo",
it: "Palla Infuocata",
pt: "Bola Incendiária",
de: "Feuerball"
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 50,
},
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Burning Kick",
fr: "Coup de Pied Brûlant",
es: "Patada Ardiente",
it: "Calcio Fiammeggiante",
pt: "Petardo",
de: "Brennender Schuss"
},
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute l'Énergie de ce Pokémon.",
es: "Descarta todas las Energías de este Pokémon.",
it: "Scarta tutte le Energie da questo Pokémon.",
pt: "Descarte todas as Energias deste Pokémon.",
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 160,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
description: {
en: "It juggles a pebble with its feet, turning it into a burning soccer ball. Its shots strike opponents hard and leave them scorched."
},
dexId: [815]
}
export default card