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: "neo2-1", localId: 1, // Card informations name: { en: "Espeon", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 196, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo2/1/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo2/1/high", }, }, evolveFrom: { en: "Dodrio", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Bite", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psychic", }, text: { en: "Does 30 damage plus 10 more for each Energy Card attached to the Defending Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Neo Discovery", code: "neo2" } } export default card