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: "smp-SM200", localId: "SM200", // Card informations name: { en: "Snubbull", }, hp: 60, type: [ Type.FAIRY, ], dexId: 209, evolveFrom: {}, tags: [ Tag.BASIC, ], attacks: [{ cost: [ Type.FAIRY ], name: { en: "Bite", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Paralyzing Gaze", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", }, }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card