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