import { Card } from '../../../interfaces' import Set from '../Majestic Dawn' const card: Card = { name: { en: "Minun", fr: "Negapi", }, illustrator: "Suwama Chiaki", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 312, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", fr: "Écras'face", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "(+) Spark", fr: "Étincelle (+)", }, effect: { en: "If Plusle is on your Bench, this attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Si Posipi est sur votre Banc, cette attaque inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card