import { Card } from "../../../interfaces" import Set from "../Brilliant Stars" const card: Card = { dexId: [622], set: Set, name: { en: "Golett", fr: "Gringolem", es: "Golett", it: "Golett", pt: "Golett", de: "Golbit" }, rarity: "Common", category: "Pokemon", hp: 100, types: ["Fighting"], stage: "Basic", attacks: [{ cost: ["Fighting"], name: { en: "Mud-Slap", fr: "Coud'Boue", es: "Bofetón Lodo", it: "Fangosberla", pt: "Tapa de Lama", de: "Lehmschelle" }, damage: 10 }, { cost: ["Fighting", "Colorless"], name: { en: "Pound", fr: "Écras'Face", es: "Destructor", it: "Botta", pt: "Pancada", de: "Klaps" }, damage: 20 }], retreat: 4, regulationMark: "F", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card