import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Fletchling", fr: "Passerouge", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 661, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Warble", fr: "Gazouillement", }, effect: { en: "Search your deck for up to 2 Fletchling, reveal them, and put them into your hand. Shuffle your deck afterward.", fr: "Cherchez jusqu'à 2 Passerouge dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card