import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Mankey", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Mischief", }, effect: { en: "Shuffle your opponent's deck.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Light Punch", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card