import { Card } from '../../../interfaces' import Set from '../Hidden Fates' const card: Card = { name: { en: "Farfetch’d", fr: "Canarticho", }, illustrator: "Eri Yamaki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 83, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Leek Slap", fr: "Coup d’Oignon", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card