import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Flaaffy δ", }, illustrator: "Yuka Morii", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 180, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Mareep", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card