import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Farfetch’d", fr: "Canarticho", }, illustrator: "Kagemaru Himeno", rarity: "None", category: "Pokemon", set: Set, dexId: [ 83, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card