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: "ex12-39", localId: 39, // Card informations name: { en: "Machoke", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 67, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex12/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex12/39/high.png", }, }, evolveFrom: { en: "Machop", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: 994, type: AbilityType.POKEBODY, name: { en: "Paranoid", }, text: { en: "As long as Machoke is Confused, Machoke's attacks do 50 more damage to the Defending Pokémon (before applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Split Kick", }, text: { en: "Does 20 damage to each Defending Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Magnum Punch", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Legend Maker", code: "ex12" } } export default card