import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "neo3-43", localId: 43, // Card informations name: { en: "Farfetch'd", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 83, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo3/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/43/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "Miki Tanaka" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Gust", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Leek Jab", }, text: { en: "This attack can't be used during your next turn. (Benching Farfetch'd ends this effect.)", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Neo Revelation", code: "neo3" } } export default card