import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Primeape", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 57, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Mankey", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Tantrum", }, effect: { en: "Flip a coin. If tails, Primeape is now Confused (after doing damage).", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card