import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Flaaffy", }, illustrator: "Shin-ichi Yoshida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 180, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Mareep", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Spark", }, effect: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card