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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/14/high.png", }, }, evolveFrom: { en: "Slowpoke", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "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