import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Rufflet", fr: "Furaiglon", es: "Rufflet", it: "Rufflet", pt: "Rufflet", de: "Geronimatz" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 627, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card