import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Flaaffy", fr: "Lainergie", de: "Waaty" }, 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", fr: "Éclair", de: "Thundershock" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Spark", fr: "Étincelle", de: "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.)", fr: "Si votre adversaire a des Pokémon sur son Banc, choisissez l'un d'eux ; cette attaque lui inflige 10 dégâts. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)", de: "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