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: "ex16-18", localId: 18, // Card informations name: { en: "Mightyena", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/18/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/18/high", }, }, evolveFrom: { en: "Poochyena", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Plunder", }, text: { en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Dark Burst", }, text: { en: "If Sidney's Stadium is in play, this attack does 50 damage plus 20 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card