import { Card } from '../../../interfaces' import Set from '../Cosmic Eclipse' const card: Card = { name: { en: "Flabébé", fr: "Flabébé", }, illustrator: "tetsuya koizumi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 669, ], hp: 30, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Floral Invitation", fr: "Invitation Florale", }, effect: { en: "Search your deck for up to 2 Fairy Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 Pokémon Fairy dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], retreat: 1, } export default card