import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Mankey", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Mug", }, effect: { en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rage", }, effect: { en: "This attack does 10 damage plus 10 more damage for each damage counter on Mankey.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card