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: "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.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/135/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/135/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/135/high.png", }, }, evolveFrom: { en: "Jigglypuff", fr: "Rondoudou", }, tags: [ Tag.STAGE1, ], illustrator: { id: 146, name: "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