Files
geograsim/App/Don_t_Deploy/2026-04-24-logistik-l3-balance-fix.sql
T
Adminator 1e51ef7def Nachtrag: alle bisher untracked Ordner + hängende Änderungen mit-committen
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/
- 12 code-workspace-Files
- STATUS-*.md
- viele M/D/R-Änderungen an bereits getrackten Files
- .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-08 02:27:02 +02:00

28 lines
986 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- Logistik L3 Balance-Fix (Regel R-1: Startbudget-Runway)
-- Stand: 2026-04-24
-- Atlas hat den Fix an Logistik delegiert (Mail 2026-04-24 11:00).
--
-- Problem:
-- L3 hatte startBudget = 2.500 EUR.
-- Tagesfixkosten = 5 vehicles × 500 €/Tag Miete + 5 × 5 €/h × 12h Idle
-- = 2.500 + 300 = 2.800 €/Tag.
-- Runway = 2.500 / 2.800 = 0.89 Tage. Tag 1 endet sicher im Minus.
-- Regel R-1 fordert: startBudget >= 1.5 × Tagesfixkosten = 4.650 €.
--
-- Fix (Option A aus Mail 2026-04-23 17:30):
-- startBudget 2.500 -> 5.000 EUR (passt R-1 mit Reserve, Profi-Identitaet
-- bleibt: knapp aber nicht unfair).
--
-- Quelle: App/sims/logistik/level-progression.md §2
SET NAMES utf8mb4;
UPDATE game_levels
SET params = JSON_SET(params, '$.startBudget', 5000)
WHERE game_id = 'logistik' AND sort_order = 3;
-- Verifikation:
-- SELECT JSON_EXTRACT(params, '$.startBudget') FROM game_levels
-- WHERE game_id='logistik' AND sort_order=3;
-- Erwartet: 5000