import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Mankey", fr: "Férosinge", es: "Mankey", it: "Mankey", pt: "Mankey", de: "Menki" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Scratch", fr: "Griffe", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card