-
Notifications
You must be signed in to change notification settings - Fork 10
Miscellaneous Notes
In common/script_values/99_steward_values.txt, Paradox lists the following equation under current_development_penalty:
value = 9.13 # Due to the way the development penalty is calculated, this means you reach maximum penalty at Development Level 10.
# If you want really mathy-stuff, the formula is: Monthly Increase - (Monthly Increase(Development Level/100)*Above Number)
Simplifying a bit, we can rewrite this as:
DL = Development Level
AN = Above Number
and then have
1-(DL/100)*AN
where AN = 9.13*multiply being the innovation multiply value (e.g., 0.1111 for renaissance thought)
To add new development level limits, you want the following: DL*multiplier = 10
where multiplier is 10 times the reciprocal of the new development level; 10/90 for renaissance thought, 10/55=2/11 for urbanization, &c.