© 2026 Hedgehog Software, LLC
https://raw.githubusercontent.com/${GITHUB}/master/images
const moon = { "Waxing Crescent" : `${IMAGE_LINK}/meteo/moon/waxing-crescent.png`, //🌒 "First Quarter" : `${IMAGE_LINK}/meteo/moon/first-quarter.png`, //🌓 "New" : `${IMAGE_LINK}/meteo/moon/new-moon.png`, //🌑 "Waxing Gibbous" : `${IMAGE_LINK}/meteo/moon/waxing-gibbous.png`, //🌔 "Full" : `${IMAGE_LINK}/meteo/moon/full-moon.png`, //🌕 "Waning Gibbous" : `${IMAGE_LINK}/meteo/moon/waning-gibbous.png`, //🌖 "Last Quarter" : `${IMAGE_LINK}/meteo/moon/third-quarter.png`, //🌗 "Waning Crescent" : `${IMAGE_LINK}/meteo/moon/waning-crescent.png`, //🌘 }; let embed = new EmbedBuilder() .setThumbnail(icon) .setDescription(capitalize(data.weather.description)) .setAuthor({ name: `${city} · ${main}`, iconURL: `${moon[Moon.lunarPhase()]}` as string, })