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: "basep-32", localId: 32, // Card informations name: { en: "Smeargle", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 235, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/32/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/32/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Tomokazu Komiya", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Paint", }, text: { en: "Flip a coin. If heads, choose a type (other than colorless) and put a Coloring counter on the Defending Pokémon. That Pokémon is now the type you choose. If it already had a Coloring counter, remove the old one. If tails, this attack does nothing.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card