import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ecard3-H15", localId: "H15", // Card informations name: { en: "Machamp", }, hp: 120, type: [ Type.FIGHTING, ], dexId: 68, evolveFrom: { en: "Machoke", }, tags: [ Tag.STAGE2, ], illustrator: "Naoyo Kimura", abilities: [{ id: 433, type: AbilityType.POKEBODY, name: { en: "Immunity", }, text: { en: "Prevent all effects of your opponent's attacks done to Machamp.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Drag Off", }, text: { en: "Before doing damage, if your opponent has any Benched Pokémon, choose 1 of them and switch it with the Defending Pokémon. If your opponent has no Benched Pokémon, ignore this effect.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hurricane Punch", }, text: { en: "Flip 4 coins. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card