import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Honedge", fr: "Monorpale" }, illustrator: "Sekio", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Metal", "Colorless", ], name: { en: "Slicing Blade", fr: "Lame Tranchante" }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], retreat: 1, hp: 60, types: ["Metal"], regulationMark: "D" } export default card