import { Card } from '../../../interfaces' import Set from '../POP Series 1' const card: Card = { name: { en: "Plusle", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 311, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Quick Attack", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Plusle during your opponent's next turn.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card