import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Farfetch'd", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 83, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Spearhead", }, effect: { en: "Draw a card.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Nosedive", }, effect: { en: "Farfetch'd does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card