1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-14 13:55:09 +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,50 @@
import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Charcadet",
fr: "Charbambin",
es: "Charcadet",
it: "Charcadet",
pt: "Charcadet",
de: "Knarbon"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Ember",
fr: "Flammèche",
es: "Ascuas",
it: "Braciere",
pt: "Brasa",
de: "Glut"
},
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: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card