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' import set from '../../../sets/swsh/swsh4' const card: Card = { // Card Global Informations id: "swsh4-88", localId: 88, name: { en: "Hitmontop", }, tags: [ ], illustrator: "Sanosuke Sakuma", rarity: Rarity.UNCOMMON, category: Category.POKEMON, set, // Card Pokémon Informations hp: 90, type: [ Type.FIGHTING, ], attacks: [ { cost: [ Type.COLORLESS, ], name: { en: "Cycle Draw", }, text: { en: "Discard a card from your hand. If you do, draw 3 cards.", }, }, { cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Tornado Kick", }, text: { en: "If you played Bea from your hand during this turn, this attack does 80 more damage.", }, damage: "50+", }, ], weaknesses: [ { type: Type.PSYCHIC, value: "×2", }, ], retreat: 1, // Card Trainer/Energy informations } export default card