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: "bw5-24", localId: 24, // Card informations name: { en: "Slowbro", }, hp: 100, type: [ Type.WATER, ], dexId: 80, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/24/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/24/high", }, }, evolveFrom: { en: "Slowpoke", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", abilities: [{ id: 782, type: AbilityType.TALENT, name: { en: "Airhead", }, text: { en: "If you have 2, 4, or 6 Prize cards left, this Pokémon can't attack.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Lazy Headbutt", }, text: { en: "This Pokémon is now Asleep.", }, damage: 80 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card