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: "sm2-65", localId: 65, // Card informations name: { en: "Machamp", fr: "Mackogneur", }, hp: 160, type: [ Type.FIGHTING, ], dexId: 68, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm2/65/low", fr: "https://assets.tcgdex.net/fr/sm/sm2/65/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm2/65/high", fr: "https://assets.tcgdex.net/fr/sm/sm2/65/high", }, }, evolveFrom: { en: "Machoke", fr: "Machopeur", }, tags: [ Tag.STAGE2, ], illustrator: "Hitoshi Ariga", attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Settle the Score", fr: "Règlement de Comptes", }, text: { en: "This attack does 80 more damage for each Prize card your opponent took on their last turn.", fr: "Cette attaque inflige 80 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée lors de son dernier tour.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Submission", fr: "Sacrifice", }, text: { en: "This Pokémon does 30 damage to itself.", fr: "Ce Pokémon s’inflige 30 dégâts.", }, damage: 150 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Guardians Rising", code: "sm2" } } export default card