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: "sm1-67", localId: 67, // Card informations name: { en: "Makuhita", fr: "Makuhita", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 296, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/67/low", fr: "https://assets.tcgdex.net/fr/sm/sm1/67/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/67/high", fr: "https://assets.tcgdex.net/fr/sm/sm1/67/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mina Nakai", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Surprise Attack", fr: "Attaque Surprise", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Strength", fr: "Force", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card