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: "xyp-XY108", localId: "XY108", // Card informations name: { en: "Machamp-EX", fr: "Mackogneur-EX", }, hp: 180, type: [ Type.FIGHTING, ], dexId: 68, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY108/low.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY108/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY108/high.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY108/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 38, name: "Eske Yoshinob" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Steaming Mad", fr: "Fou Furax", }, text: { en: "This attack does 20 damage times the number of damage counters on this Pokémon. This Pokémon is now Confused.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de marqueurs de dégâts placés sur ce Pokémon. Ce Pokémon est maintenant Confus.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 3, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card