Regeln nach Recherche korrigiert: Schadensformel, Odds L8/L9, Start-Level 2, Streak ab 2, Verkaufsregel

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
team3
2026-07-23 06:25:23 +02:00
parent 76acd026ec
commit c0cd303eb0
7 changed files with 31 additions and 23 deletions

View File

@@ -19,7 +19,8 @@ def test_shop_odds_shape(c):
def test_xp_reaches_max_level(c):
assert len(c["xp"]["to_next"]) == c["xp"]["max_level"] - 1
start = c["xp"].get("start_level", 1)
assert len(c["xp"]["to_next"]) == c["xp"]["max_level"] - start
assert all(x > 0 for x in c["xp"]["to_next"])