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: "bw5-49", localId: 49, // Card informations name: { en: "Slowking", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 199, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/49/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/49/high.png", }, }, evolveFrom: { en: "Slowpoke", }, tags: [ Tag.STAGE1, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psy Bolt", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hand Press", }, text: { en: "If you have more cards in your hand than your opponent, this attack does 30 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card