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: "ex9-107", localId: 107, // Card informations name: { en: "Farfetch'd", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 83, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/107/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/107/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 8, name: "Masakazu Fukuda" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Spearhead", }, text: { en: "Draw a card.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Nosedive", }, text: { en: "Farfetch'd does 10 damage to itself.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card