1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39:18 +00:00

feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s

This commit is contained in:
2023-11-12 14:56:22 +01:00
committed by GitHub
parent e0e3a1a4fd
commit 3c93a3534c
988 changed files with 56362 additions and 22 deletions

View File

@ -0,0 +1,54 @@
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"
}
export default card