import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Honedge", fr: "Monorpale", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 679, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], 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: "Darkness", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-20" }, ], retreat: 2, } export default card