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-41", localId: 41, // Card informations name: { en: "Machoke", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 67, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/41/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/41/high.png", }, }, evolveFrom: { en: "Machop", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, abilities: [{ id: 13, type: AbilityType.POKEBODY, name: { en: "Strikes Back", }, text: { en: "If Machoke is your Active Pokémon and is damaged by an opponent's attack (even if Machoke is Knocked Out), put 1 damage counter on the Attacking Pokémon.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Low Kick", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card