import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Rufflet", fr: "Furaiglon", es: "Rufflet", it: "Rufflet", pt: "Rufflet", de: "Geronimatz" }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 627, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Chirp", fr: "Gazouillis", }, effect: { en: "Search your deck for 2 Pokémon with Fighting Resistance, reveal them, and put them into your hand. Shuffle your deck afterward.", fr: "Cherchez dans votre deck 2 Pokémon avec une Résistance à Fighting, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Sharp Beak", fr: "Bec Aiguisé", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card