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: "ex10-33", localId: 33, // Card informations name: { en: "Tyrogue", }, hp: 40, type: [ Type.FIGHTING, ], dexId: 236, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/33/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/33/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yuka Morii", abilities: [{ id: 23, type: AbilityType.POKEBODY, name: { en: "Baby Evolution", }, text: { en: "Once during your turn (before your attack), you may put Hitmonlee, Hitmonchan, or Hitmontop from your hand onto Tyrogue (this counts as evolving Tyrogue) and remove all damage counters from Tyrogue.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Desperate Punch", }, text: { en: "Does 10 damage times the number of Pokémon in play your opponent has more than you.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card