import { Card } from '../../../interfaces' import Set from '../Platinum' const card: Card = { name: { en: "Flaaffy", fr: "Lainergie", de: "Waaty" }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 180, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Mareep", fr: "Wattouat", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Spark", fr: "Étincelle", de: "Spark" }, effect: { en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 10 dégâts à 2 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", de: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for benched Pokémon.)" }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Tail Code", fr: "Queue codée", de: "Tail Code" }, effect: { en: "Move an Energy card attached to the Defending Pokémon to another of your opponent's Pokémon.", fr: "Déplacez une carte Énergie attachée au Pokémon Défenseur sur un autre des Pokémon de votre adversaire.", de: "Move an Energy card attached to the Defending Pokémon to another of your opponent's Pokémon." }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+20" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card