import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Carkol", fr: "Wagomine" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Rolycoly", fr: "Charbi" }, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Ram", fr: "Collision" }, damage: 30, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Heat Crash", fr: "Tacle Feu" }, damage: 60, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, hp: 100, types: ["Fighting"] } export default card