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: "sm11-248", localId: 248, // Card informations name: { en: "Dragonite-GX", }, hp: 250, type: [ Type.DRAGON, ], dexId: 149, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/248/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/248/high", }, }, evolveFrom: { en: "Dragonair", }, tags: [ Tag.STAGE2, ], attacks: [{ cost: [ Type.LIGHTNING, Type.WATER, Type.COLORLESS ], name: { en: "Dragon Claw", }, damage: 130 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sky Judgment", }, text: { en: "Discard 3 Energy from this Pokémon.", }, damage: 270 },{ cost: [ Type.COLORLESS ], name: { en: "Mach Delivery GX", }, text: { en: "You may discard any number of cards from your hand until you have 9 or fewer. Draw cards until you have 10 cards in your hand. (You can't use more than 1 GX attack in a game.)", }, }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card