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: "xy1-91", localId: 91, // Card informations name: { en: "Mr. Mime", fr: "M. Mime", }, hp: 80, type: [ Type.FAIRY, ], dexId: 122, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/91/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy1/91/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/91/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy1/91/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 3, name: "Mizue" }, attacks: [{ cost: [ Type.FAIRY, Type.COLORLESS ], name: { en: "Massage", fr: "Massage", }, text: { en: "Heal 60 damage from 1 of your Benched Pokémon.", fr: "Soignez 60 dégâts à l'un de vos Pokémon de Banc.", }, },{ cost: [ Type.FAIRY, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slap Down", fr: "Aplatissement", }, text: { en: "Flip 2 coins. This attack does 20 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", }, damage: 40 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card