xdgfhkmd,zf

This commit is contained in:
cay 2026-04-13 10:25:55 +01:00
parent b52367312e
commit 734dd6dcca

View File

@ -388,7 +388,15 @@
hand.appendChild(deckSlot);
// ── Slots 24: aufgedeckte Handkarten (leer bis API lädt) ───
const handCardIds = ["hand-card-1", "hand-card-2", "hand-card-3"];
const handCardIds = [
"hand-card-1",
"hand-card-2",
"hand-card-3",
"hand-card-4",
"hand-card-5",
"hand-card-6",
"hand-card-7",
];
handCardIds.forEach((id) => {
const s = document.createElement("div");
s.className = "hand-slot hand-slot-card";
@ -397,14 +405,6 @@
hand.appendChild(s);
});
// ── Slots 58: leere Slots ───────────────────────────
for (let i = 0; i < 4; i++) {
const s = document.createElement("div");
s.className = "hand-slot";
s.innerHTML = '<span class="hs-icon">🃏</span>';
hand.appendChild(s);
}
// ══════════════════════════════════════════════════════
// HAND & DECK SYSTEM
// ══════════════════════════════════════════════════════