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: "smp-SM200", localId: "SM200", // Card informations name: { en: "Snubbull", }, hp: 60, type: [ Type.FAIRY, ], dexId: 209, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM200/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM200/high", }, }, 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