import { Card } from '../../../interfaces' import Set from '../Team Rocket' const card: Card = { name: { en: "Mankey", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Mischief", }, effect: { en: "Shuffle your opponent's deck.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Anger", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage; if tails, this attack does 20 damage.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card