variable-progression-balancing (#356)

This commit is contained in:
Doug Hoskisson
2022-05-11 00:13:21 -07:00
committed by GitHub
parent a5ca118bbf
commit c085ee47ed
11 changed files with 116 additions and 44 deletions

View File

@@ -572,8 +572,12 @@ class Accessibility(Choice):
default = 1
class ProgressionBalancing(DefaultOnToggle):
"""A system that moves progression earlier, to try and prevent the player from getting stuck and bored early."""
class ProgressionBalancing(Range):
"""A system that can move progression earlier, to try and prevent the player from getting stuck and bored early.
[0-99, default 50] A lower setting means more getting stuck. A higher setting means less getting stuck."""
default = 50
range_start = 0
range_end = 99
display_name = "Progression Balancing"