import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Rufflet", fr: "Furaiglon", es: "Rufflet", it: "Rufflet", pt: "Rufflet", de: "Geronimatz" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 627, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Peck", fr: "Picpic", es: "Picotazo", it: "Beccata", pt: "Bicada", de: "Schnabel" }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card