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: "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.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/19/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss1/19/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/19/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 43, name: "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