import { Card } from '../../../interfaces' import Set from '../Call of Legends' const card: Card = { name: { en: "Flaaffy", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 180, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Mareep", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Thunder Spear", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card