import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Farfetch'd", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 83, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gust", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Leek Jab", }, effect: { en: "This attack can't be used during your next turn. (Benching Farfetch'd ends this effect.)", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card