import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Mankey" }, illustrator: "Kanako Eo", category: "Pokemon", hp: 60, types: ["Fighting"], stage: "Basic", attacks: [{ cost: ["Fighting"], name: { en: "Low Kick" }, damage: "20" }], weaknesses: [{ type: "Psychic", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It lives in groups in the treetops. If it loses sight of its group, it becomes infuriated by its loneliness.", } } export default card