import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/56/high.png", }, }, evolveFrom: { en: "Nidoran♀", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "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