1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

54 lines
762 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Cufant",
fr: "Charibari",
es: "Cufant",
it: "Cufant",
pt: "Cufant",
de: "Kupfanti"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30
}, {
cost: ["Metal", "Metal", "Colorless"],
name: {
en: "Confront",
fr: "Confrontation",
es: "Confrontar",
it: "Confronto",
pt: "Confrontar",
de: "Konfrontieren"
},
damage: 70
}],
retreat: 3,
regulationMark: "H"
}
export default card