1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

46 lines
671 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Charcadet",
fr: "Charbambin",
es: "Charcadet",
it: "Charcadet",
pt: "Charcadet",
de: "Knarbon"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
es: "Explosión de Calor",
it: "Caldobomba",
pt: "Raio de Calor",
de: "Hitzestoß"
},
damage: 60
}],
retreat: 1,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card