/* ================================ Eigene Benachrichtigung ================================ */ function showNotification(message, title = "Hinweis", icon = "⚔️") { const overlay = document.getElementById("game-notification-overlay"); const notification = document.getElementById("game-notification"); const msgEl = document.getElementById("notification-message"); const titleEl = document.getElementById("notification-title"); const iconEl = document.getElementById("notification-icon"); const okBtn = document.getElementById("notification-ok"); msgEl.innerText = message; titleEl.innerText = title; iconEl.innerText = icon; overlay.classList.add("show"); notification.style.display = "block"; requestAnimationFrame(() => { notification.classList.add("show"); }); okBtn.onclick = () => { notification.classList.remove("show"); overlay.classList.remove("show"); setTimeout(() => { notification.style.display = "none"; }, 200); }; } export async function loadSchwarzmarkt() { const ui = document.querySelector(".building-ui"); ui.innerHTML = `
Erweitere deinen Taschenplatz indem du zusätzliche Taschen freischaltest
⚗️ Noch keine Artefakte verfügbar
🤫 Schwarzmarkt Angebote folgen bald...