import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Flabébé", fr: "Flabébé", }, illustrator: "Saya Tsuruta", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 669, ], hp: 40, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Razor Leaf", fr: "Tranch'Herbe", }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], retreat: 1, } export default card