1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

45 lines
598 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Charbambin",
en: "Charcadet",
es: "Charcadet",
it: "Charcadet",
pt: "Charcadet",
de: "Knarbon"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
fr: "Koud'Pied",
en: "Kick",
es: "Patada",
it: "Calcio",
pt: "Chute",
de: "Tritt"
},
damage: 30
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card