import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Flaaffy", fr: "Lainergie" }, 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", fr: "Cage-éclair" }, 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é." }, damage: 10, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder", fr: "Fatal-foudre" }, effect: { en: "Flaaffy does 10 damage to itself.", fr: "Lainergie s'inflige 10 dégâts." }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card