import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Mankey", fr: "Férosinge", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals their hand.", fr: "Votre adversaire dévoile sa main.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Low Kick", fr: "Balayage", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card