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: "neo1-14", localId: 14, // Card informations name: { en: "Slowking", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 199, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/14/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/14/high", }, }, evolveFrom: { en: "Slowpoke", }, tags: [ Tag.STAGE1, ], illustrator: "Ken Sugimori", abilities: [{ id: 193, type: AbilityType.POKEPOWER, name: { en: "Mind Games", }, text: { en: "Whenever your opponent plays a Trainer card, you may flip a coin. If heads, that card does nothing. Put it on top of your opponent's deck. This power can't be used if Slowking is Asleep, Confused, or Paralyzed.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Mind Blast", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 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.RARE, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card