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: "sm10-135", localId: 135, // Card informations name: { en: "Wigglytuff", fr: "Grodoudou", }, hp: 110, type: [ Type.FAIRY, ], dexId: 40, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/135/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/135/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/135/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/135/high", }, }, evolveFrom: { en: "Jigglypuff", fr: "Rondoudou", }, tags: [ Tag.STAGE1, ], illustrator: "miki kudo", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Orb Polish", fr: "Orbe Lustré", }, text: { en: "Put 3 Energy cards from your discard pile into your hand.", fr: "Ajoutez 3 cartes Énergie de votre pile de défausse à votre main.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sleepy Ball", fr: "Boule Dodo", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 80 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card