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: "xy3-57", localId: 57, // Card informations name: { en: "Mienshao", fr: "Shaofouine", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 620, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/57/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/57/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/57/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/57/high.png", }, }, evolveFrom: { en: "Mienfoo", fr: "Kungfouine", }, tags: [ Tag.STAGE1, ], illustrator: { id: 20, name: "TOKIYA" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Aero Turn", fr: "Tour Aérien", }, text: { en: "Return this Pokémon and all cards attached to it to your hand.", fr: "Reprenez ce Pokémon et toutes les cartes qui lui sont attachées dans votre main.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "High Jump Kick", fr: "Pied Voltige", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card