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: "neo3-31", localId: 31, // Card informations name: { en: "Jynx", }, hp: 60, type: [ Type.WATER, ], dexId: 124, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo3/31/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/31/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Tomokazu Komiya", attacks: [{ cost: [ Type.WATER ], name: { en: "Freezing Kiss Goodnight", }, text: { en: "The Defending Pokémon is now Asleep.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Strange Dance", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage and the Defending Pokémon is now Confused. If tails, this attack does 20 damage.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Neo Revelation", code: "neo3" } } export default card