mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
58 lines
811 B
TypeScript
58 lines
811 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Charbambin",
|
|
en: "Charcadet",
|
|
es: "Charcadet",
|
|
it: "Charcadet",
|
|
pt: "Charcadet",
|
|
de: "Knarbon"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Poing Léger",
|
|
en: "Light Punch",
|
|
es: "Puño Ligero",
|
|
it: "Pugnetto",
|
|
pt: "Soco de Luz",
|
|
de: "Leichter Hieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Fournaise",
|
|
en: "Combustion",
|
|
es: "Combustión",
|
|
it: "Fuoco Continuo",
|
|
pt: "Combustão",
|
|
de: "Glühen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |