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-64", localId: 64, // Card informations name: { en: "Spinarak", }, hp: 50, type: [ Type.GRASS, ], dexId: 167, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo2/64/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo2/64/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yukiko Baba", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Poison Sting", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Neo Discovery", code: "neo2" } } export default card