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: "det1-13", localId: 13, // Card informations name: { en: "Machamp", fr: "Mackogneur", }, hp: 160, type: [ Type.FIGHTING, ], dexId: 68, image: { low: { en: "https://assets.tcgdex.net/en/sm/det1/13/low.png", fr: "https://assets.tcgdex.net/fr/sm/det1/13/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/det1/13/high.png", fr: "https://assets.tcgdex.net/fr/sm/det1/13/high.png", }, }, evolveFrom: { en: "Machoke", fr: "Machopeur", }, tags: [ Tag.STAGE2, ], attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Directing Traffic", fr: "Diriger la Circulation", }, text: { en: "Look at the top 5 cards of your deck and put them back in any order.", fr: "Regardez les 5 cartes du dessus de votre deck et replacez-les dans l’ordre de votre choix.", }, },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Cross Chop", fr: "Coup-Croix", }, text: { en: "Flip a coin. If heads, this attack does 60 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Detective Pikachu", code: "det1" } } export default card