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: "bw10-39", localId: 39, // Card informations name: { en: "Munna", fr: "Munna", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 517, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw10/39/low", fr: "https://assets.tcgdex.net/fr/bw/bw10/39/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw10/39/high", fr: "https://assets.tcgdex.net/fr/bw/bw10/39/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mizue", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Mumble", fr: "Murmure", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Focused Wish", fr: "Vœu Fervent", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Plasma Blast", code: "bw10" } } export default card