import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "hgss4-40", localId: 40, // Card informations name: { en: "Machoke", fr: "Machopeur", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 67, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss4/40/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/40/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss4/40/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/40/high.png", }, }, evolveFrom: { en: "Machop", fr: "Machoc", }, tags: [ Tag.STAGE1, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Knuckle Down", fr: "Poing de chute", }, text: { en: "This attack's damage isn't affected by 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 les Poké-Powers, les Poké-Bodies ou tout autre effet en action sur le Pokémon Défenseur.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Strength", fr: "Force", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "HS—Triumphant", code: "hgss4" } } export default card