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