import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Rolycoly", fr: "Charbi" }, illustrator: "Misa Tsutsui", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision" }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, hp: 70, types: ["Fighting"] } export default card