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: "ex1-10", localId: 10, // Card informations name: { en: "Mightyena", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/10/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/10/high", }, }, evolveFrom: { en: "Poochyena", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", abilities: [{ id: 111, type: AbilityType.POKEBODY, name: { en: "Intimidating Fang", }, text: { en: "As long as Mightyena is your Active Pokémon, any damage done to your Pokémon done by an opponent's attack is reduced by 10 (before applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Shakedown", }, text: { en: "Flip a coin. If heads, choose 1 card from your opponent's hand without looking and discard it.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card