import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Charbi", en: "Rolycoly" }, illustrator: "Shigenori Negishi", rarity: "Ultra Rare", category: "Pokemon", hp: 70, types: ["Fighting"], attacks: [{ name: { fr: "Collision", en: "Ram" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 2, regulationMark: "D" } export default card