import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Golett" }, illustrator: "Kyoko Umemoto", category: "Pokemon", hp: 90, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Psychic", "Colorless", "Colorless"], name: { en: "Mega Punch" }, damage: "50" }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 3, rarity: "One Diamond", description: { en: "They were sculpted from clay in ancient times. No one knows why, but some of them are driven to continually line up boulders.", } } export default card