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