import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Hitmonchan" }, illustrator: "Tomokazu Komiya", rarity: "One Diamond", category: "Pokemon", hp: 90, types: ["Fighting"], description: { en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn." }, stage: "Basic", attacks: [{ name: { en: "Magnum Punch" }, damage: 90, cost: ["Fighting", "Fighting", "Fighting"] }], weaknesses: [{ type: "Psychic", value: "+20" }], retreat: 1 } export default card