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: "pop1-17", localId: 17, // Card informations name: { en: "Tyranitar ex", }, hp: 150, type: [ Type.DARKNESS, ], dexId: 248, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/17/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/17/high", }, }, evolveFrom: { en: "Pupitar", }, tags: [ Tag.STAGE2, ], illustrator: "Hikaru Koike", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Critical Crush", }, text: { en: "Discard 2 Basic Energy cards attached to Tyranitar ex or this attack does nothing.", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" },{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card