import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Electabuzz", fr: "Élektek" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Knuckle Punch", fr: "Coud’Phalange" }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electroslug", fr: "Électro Frappe" }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, hp: 90, types: ["Lightning"] } export default card