import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "hgss1-19", localId: 19, // Card informations name: { en: "Farfetch'd", fr: "Canarticho", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 83, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss1/19/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/19/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss1/19/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/19/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Aya Kusube", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", fr: "Collectionner", }, text: { en: "Draw 2 cards.", fr: "Piochez 2 cartes.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Spin Turn", fr: "Tournoyer", }, text: { en: "Switch Farfetch'd with 1 of your Benched Pokémon.", fr: "Échangez Canarticho avec un Pokémon de votre Banc.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "HeartGold & SoulSilver", code: "hgss1" } } export default card