import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Primeape δ", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 57, ], hp: 70, types: [ "Fire", ], evolveFrom: { en: "Mankey", }, stage: "Stage1", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Wreck", }, effect: { en: "If there is any Stadium card in play, this attack does 30 damage plus 30 more damage. Discard that Stadium card.", }, damage: 30, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Flames of Rage", }, effect: { en: "Discard 2 Energy attached to Primeape. This attack does 10 damage plus 20 more damage for each damage counter on Primeape.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card