import { Card } from '../../../interfaces' import Set from '../HGSS Black Star Promos' const card: Card = { name: { en: "Plusle", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 311, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", }, effect: { en: "Draw 2 cards.", }, }, { cost: [ "Lightning", ], name: { en: "Thunder Jolt", }, effect: { en: "Flip a coin. If tails, this attack does 10 damage to Plusle.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card