import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Farfetch'd" }, illustrator: "Miki Tanaka", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Leek Slap" }, damage: "40" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "The stalk this Pokémon carries in its wings serves as a sword to cut down opponents. In a dire situation, the stalk can also serve as food.", } } export default card