Reduce pacing variance with conditional weight boosts

Add pity-timer style conditional entries in box_of_boxes:
- box_meta_basics weight 3 after 15 boxes (direct meta path)
- box_adventure weight 3 after 30 boxes (adventure safety net)

This reduces early-game variance significantly:
- 1st Meta UI spread: 7x → 3.3x
- 1st Adventure spread: 14x → 7x
- All Adventures: faster across all seeds
This commit is contained in:
Samuel Bouchet 2026-03-11 21:00:51 +01:00
parent 4703ff1e05
commit 9e1e0112c9

View file

@ -29,6 +29,8 @@
{"itemDefinitionId": "box_legendary", "weight": 1},
{"itemDefinitionId": "box_adventure", "weight": 1},
{"itemDefinitionId": "box_style", "weight": 1},
{"itemDefinitionId": "box_meta_basics", "weight": 3, "condition": {"type": "BoxesOpenedAbove", "value": 15}},
{"itemDefinitionId": "box_adventure", "weight": 3, "condition": {"type": "BoxesOpenedAbove", "value": 30}},
{"itemDefinitionId": "box_improvement", "weight": 3, "condition": {"type": "BoxesOpenedAbove", "value": 10}},
{"itemDefinitionId": "box_supply", "weight": 1, "condition": {"type": "BoxesOpenedAbove", "value": 10}},
{"itemDefinitionId": "box_story", "weight": 1, "condition": {"type": "BoxesOpenedAbove", "value": 5}},