1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00

63 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Charcadet",
fr: "Charbambin",
es: "Charcadet",
it: "Charcadet",
pt: "Charcadet",
de: "Knarbon"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Light Punch",
fr: "Poing Léger",
es: "Puño Ligero",
it: "Pugnetto",
pt: "Soco de Luz",
de: "Leichter Hieb"
},
damage: 10
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta un'Energia da questo Pokémon.",
pt: "Descarte uma Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 70
}],
retreat: 2,
regulationMark: "H"
}
export default card