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-SM93", localId: "SM93", // Card informations name: { en: "Marshadow", fr: "Marshadow", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 802, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "kirisAki", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Shadowy Echoes", fr: "Échos Obscurs", }, text: { en: "Put a Basic Pokémon from each player's discard pile onto its owner's Bench.", fr: "Prenez un Pokémon de base dans la pile de défausse de chaque joueur et placez-le sur son Banc.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Surprise Attack", fr: "Attaque Surprise", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 40 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card