import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Alolan Geodude" }, illustrator: "Hitoshi Ariga", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Lightning"], description: { en: "If you mistake it for a rock and step on it, it will headbutt you in anger. In addition to the pain, it will also zap you with a shock." }, stage: "Basic", attacks: [{ name: { en: "Knuckle Punch" }, damage: 40, cost: ["Lightning", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 2 } export default card