import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Mankey δ", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 56, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Fire", "Colorless", ], name: { en: "Low Kick", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card