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: "dp2-56", localId: 56, // Card informations name: { en: "Nidorina", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 30, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/56/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/56/high", }, }, evolveFrom: { en: "Nidoran♀", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Rescue", }, text: { en: "Search your discard pile for up to 2 Pokémon, show them to your opponent, and put them into your hand.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Scratch", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "+20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card