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-134", localId: 134, // Card informations name: { en: "Jigglypuff", fr: "Rondoudou", }, hp: 70, type: [ Type.FAIRY, ], dexId: 39, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/134/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/134/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/134/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/134/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 58, name: "Yumi" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Ball Roll", fr: "Boulé-Roulade", }, text: { en: "Flip a coin until you get tails. This attack does 20 damage for each heads.", fr: "Lancez une pièce jusqu’à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts pour chaque côté face.", }, damage: 20 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card