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: "ex1-12", localId: 12, // Card informations name: { en: "Slaking", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 289, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/12/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/12/high", }, }, evolveFrom: { en: "Vigoroth", }, tags: [ Tag.STAGE2, ], illustrator: "Ken Sugimori", abilities: [{ id: 615, type: AbilityType.POKEBODY, name: { en: "Lazy", }, text: { en: "As long as Slaking is your Active Pokémon, your opponent's Pokémon can't use any Poké-Powers.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Critical Move", }, text: { en: "Discard a basic Energy card attached to Slaking or this attack does nothing. Slaking can't attack during your next turn.", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card