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: "swsh1-94", localId: 94, // Card informations name: { en: "Hitmonlee", fr: "Kicklee", }, hp: 120, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/94/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/94/low", } }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Shigenori Negishi", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Low Sweep", fr: "Balayette", }, damage: 40 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Coordinated Strike", fr: "Frappe Coordonnée", }, text: { en: "If Hitmonchan is on your Bench, this attack does 80 more damage.", fr: "Si Tygnon est sur votre Banc, cette attaque inflige 80 dégâts supplémentaires.", }, damage: "80+" }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card