import { Card } from '../../../interfaces' import Set from '../Crimson Invasion' const card: Card = { name: { en: "Mankey", fr: "Férosinge", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Three-Step Strike", fr: "Attaque en Trois Étapes", }, effect: { en: "Flip 3 coins. This attack does 10 damage for each heads.", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card