import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Flaaffy", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 180, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Mareep", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Thunder Wave", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder", }, effect: { en: "Flaaffy does 10 damage to itself.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card