import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Mankey", fr: "Férosinge", }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Focus Energy", fr: "Puissance", }, effect: { en: "During your next turn, this Pokémon’s Flop attack’s base damage is 50.", fr: "Pendant votre prochain tour, les dégâts de base de l’attaque Flop de ce Pokémon sont de 50.", }, }, { cost: [ "Fighting", ], name: { en: "Flop", fr: "Flop", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card