This commit is contained in:
team3
2026-06-21 18:32:55 +02:00
parent 3965bc5bf9
commit befd509c08
15 changed files with 1315 additions and 12 deletions

View File

@@ -74,9 +74,10 @@ const aktSchwer = computed(() => {
return schwer.value
})
const modusRegel = computed(() => {
if (zeigeForm.value === 'quiz') return aktSchwer.value ? 'x von 4 · +3/1' : '1 von 4 · +1/1'
if (zeigeForm.value === 'lueckentext') return aktSchwer.value ? 'frei tippen · +3/1' : 'Begriff aus 4 · +1/1'
return '+1/+2/+3 · Nachfragen max +1 · schwach 1'
const m = imZufall.value ? '3' : '1' // Zufallband: Fehler kostet 3
if (zeigeForm.value === 'quiz') return aktSchwer.value ? `x von 4 · +3/${m}` : `1 von 4 · +1/${m}`
if (zeigeForm.value === 'lueckentext') return aktSchwer.value ? `frei tippen · +3/${m}` : `Begriff aus 4 · +1/${m}`
return imZufall.value ? '+1/+2/+3 · Fehler 3' : '+1/+2/+3 · Nachfragen max +1 · schwach 1'
})
// Ende des aktuellen Bands (nächster Meilenstein).
const bandZiel = computed(() => {