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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/17/high.png", }, }, evolveFrom: { en: "Pupitar", }, tags: [ Tag.STAGE2, ], illustrator: { id: 74, name: "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