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: "sm9-74", localId: 74, // Card informations name: { en: "Hitmonchan", fr: "Tygnon", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 107, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/74/low", fr: "https://assets.tcgdex.net/fr/sm/sm9/74/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/74/high", fr: "https://assets.tcgdex.net/fr/sm/sm9/74/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Tomokazu Komiya", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Hit and Run", fr: "Frappe et Fuite", }, text: { en: "You may switch this Pokémon with 1 of your Benched Pokémon.", fr: "Vous pouvez échanger ce Pokémon avec l’un de vos Pokémon de Banc.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Magnum Punch", fr: "Poing Magnum", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card