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: "dp7-41", localId: 41, // Card informations name: { en: "Machoke", fr: "Machoke", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 67, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp7/41/low", fr: "https://assets.tcgdex.net/fr/dp/dp7/41/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp7/41/high", fr: "https://assets.tcgdex.net/fr/dp/dp7/41/high", }, }, evolveFrom: { en: "Machop", fr: "Machoc", }, tags: [ Tag.STAGE1, ], illustrator: "Sachiko Adachi", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Steady Punch", fr: "Poing énergétique", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Brick Break", fr: "Casse-brique", }, text: { en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet sur le Pokémon Défenseur.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "+20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Stormfront", code: "dp7" } } export default card