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: "ex7-32", localId: 32, // Card informations name: { en: "Dark Dragonair", }, hp: 80, type: [ Type.DARKNESS, Type.DARKNESS, ], dexId: 148, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/32/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/32/high", }, }, evolveFrom: { en: "Dratini", }, tags: [ Tag.STAGE1, ], illustrator: "Tomoaki Imakuni", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Double Tackle", }, text: { en: "Does 20 damage to each Defending Pokémon.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crushing Blow", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" },{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card