import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Cufant", fr: "Charibari" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, hp: 100, types: [ "Metal", ], attacks: [ { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Strength", fr: "Force" }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], retreat: 3, } export default card