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: "ecard1-66", localId: 66, // Card informations name: { en: "Tyranitar", }, hp: 120, type: [ Type.DARKNESS, ], dexId: 248, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/66/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/66/high", }, }, evolveFrom: { en: "Pupitar", }, tags: [ Tag.STAGE2, ], illustrator: "Kimiya Masago", abilities: [{ id: 317, type: AbilityType.POKEBODY, name: { en: "Dark Aura", }, text: { en: "All Energy attached to Tyranitar is Dark instead of its usual type.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.DARKNESS, Type.DARKNESS ], name: { en: "Stamp", }, text: { en: "Flip a coin. If heads, this attack does 50 damage plus 10 more damage and does 10 damage to each of your opponent's Benched Pokémon, if any. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card