import { Card } from '../../../interfaces' import Set from '../Shining Legends' const card: Card = { name: { en: "Plusle", fr: "Posipi", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 311, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Tag Team Boost", fr: "Boost de Groupe", }, effect: { en: "If Minun is on your Bench, this attack does 50 more damage.", fr: "Si Négapi est sur votre Banc, cette attaque inflige 50 dégâts supplémentaires.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card