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: "xy3-45", localId: 45, // Card informations name: { en: "Machoke", fr: "Machopeur", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 67, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/45/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/45/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/45/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/45/high", }, }, evolveFrom: { en: "Machop", fr: "Machoc", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Beatdown", fr: "Dérouillée", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card