import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Honedge", fr: "Monorpale", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 679, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Metal Sound", fr: "Strido-Son", }, effect: { en: "Your opponent’s Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2, } export default card