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: "ex5-9", localId: 9, // Card informations name: { en: "Machamp", }, hp: 120, type: [ Type.FIGHTING, ], dexId: 68, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/9/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/9/high.png", }, }, evolveFrom: { en: "Machoke", }, tags: [ Tag.STAGE2, ], illustrator: { id: 30, name: "Hajime Kusajima" }, abilities: [{ id: 978, type: AbilityType.POKEBODY, name: { en: "Overzealous", }, text: { en: "If your opponent has any Pokémon-ex in play, each of Machamp's attacks do 30 more damage to the Defending Pokémon.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Brick Smash", }, text: { en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 40 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Cross Chop", }, text: { en: "Flip a coin. If heads, this attack does 60 damage plus 30 more damage.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card