1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Duncan 2b6d06184d
fix: Add SV08 Surging Sparks card variants (#592)
* fix: Add SV08 Surging Sparks card variants

* fix: Fix validate by adding 'abbreviation' to Set interface
2024-12-01 23:26:45 +01:00

55 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Fuecoco",
fr: "Chochodile",
es: "Fuecoco",
it: "Fuecoco",
pt: "Fuecoco",
de: "Krokel"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
en: "Heat Burn",
fr: "Chaleur Brûlante",
es: "Quemazón",
it: "Brucia Calore",
pt: "Queimadura por Calor",
de: "Brandwunde"
},
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: 20
}],
retreat: 2,
regulationMark: "H",
variants: {
holo: false
}
}
export default card