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:
parent
4703ff1e05
commit
9e1e0112c9
1 changed files with 2 additions and 0 deletions
|
|
@ -29,6 +29,8 @@
|
||||||
{"itemDefinitionId": "box_legendary", "weight": 1},
|
{"itemDefinitionId": "box_legendary", "weight": 1},
|
||||||
{"itemDefinitionId": "box_adventure", "weight": 1},
|
{"itemDefinitionId": "box_adventure", "weight": 1},
|
||||||
{"itemDefinitionId": "box_style", "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_improvement", "weight": 3, "condition": {"type": "BoxesOpenedAbove", "value": 10}},
|
||||||
{"itemDefinitionId": "box_supply", "weight": 1, "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}},
|
{"itemDefinitionId": "box_story", "weight": 1, "condition": {"type": "BoxesOpenedAbove", "value": 5}},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue