-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create india_values.txt * Slight scaling on liberty desire from prestige from the diplo action * eic_reinvestment_failure modifier commented out * Reformatted all files to common sense --------- Co-authored-by: Danarca <[email protected]>
- Loading branch information
Showing
2 changed files
with
121 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
free_cotton_producing_arable_land = { | ||
value = 0 | ||
every_scope_state = { | ||
limit = { | ||
can_construct_building = building_cotton_plantation | ||
} | ||
add = this.free_arable_land | ||
} | ||
} | ||
|
||
free_opium_producing_arable_land = { | ||
value = 0 | ||
every_scope_state = { | ||
limit = { | ||
can_construct_building = building_opium_plantation | ||
} | ||
add = this.free_arable_land | ||
} | ||
} | ||
|
||
free_tea_producing_arable_land = { | ||
value = 0 | ||
every_scope_state = { | ||
limit = { | ||
can_construct_building = building_tea_plantation | ||
} | ||
add = this.free_arable_land | ||
} | ||
} | ||
|
||
free_dye_producing_arable_land = { | ||
value = 0 | ||
every_scope_state = { | ||
limit = { | ||
can_construct_building = building_dye_plantation | ||
} | ||
add = this.free_arable_land | ||
} | ||
} | ||
|
||
free_tobacco_producing_arable_land = { | ||
value = 0 | ||
every_scope_state = { | ||
limit = { | ||
can_construct_building = building_tobacco_plantation | ||
} | ||
add = this.free_arable_land | ||
} | ||
} | ||
|
||
variable_princely_state_liberty_desire_change = { | ||
scope:target_country ?= { | ||
add = { | ||
add = prestige | ||
desc = DOCTRINE_OF_LAPSE_PRESTIGE | ||
} | ||
if = { | ||
limit = { | ||
ruler ?= { | ||
is_female = yes | ||
} | ||
} | ||
multiply = { | ||
add = 0.5 | ||
desc = DOCTRINE_OF_LAPSE_NO_MALE_RULER | ||
} | ||
} | ||
if = { | ||
limit = { | ||
ruler ?= { | ||
is_female = no | ||
} | ||
AND = { | ||
ruler = { | ||
age >= define:NCharacters|OLD_AGE | ||
} | ||
OR = { | ||
NOT = { exists = heir } | ||
heir ?= { | ||
is_female = yes | ||
} | ||
} | ||
} | ||
} | ||
multiply = { | ||
add = 0.5 | ||
desc = DOCTRINE_OF_LAPSE_OLD_WITH_NO_MALE_HEIR | ||
} | ||
} | ||
divide = { | ||
add = { | ||
add = radical_population_fraction | ||
multiply = 5 # e.g. if the country has 20 Prestige and up to 20% Radicals, the LD gain is 20; if it's 25% Radicals, the LD gain is 16; if it's 50% Radicals, the LD gain is 8 | ||
min = 1 | ||
} | ||
desc = DOCTRINE_OF_LAPSE_RADICALS | ||
} | ||
} | ||
multiply = 0.75 | ||
round = yes | ||
min = 1 | ||
max = annex_subject_max_liberty_desire_change | ||
} | ||
|
||
basic_princely_state_relations_change = 10 | ||
|
||
uneasy_raj_stability_critical_lower_bound = 0 | ||
uneasy_raj_stability_critical_upper_bound = 75 | ||
uneasy_raj_stability_low_lower_bound = 75 | ||
uneasy_raj_stability_low_upper_bound = 150 | ||
uneasy_raj_stability_medium_lower_bound = 150 | ||
uneasy_raj_stability_medium_upper_bound = 225 | ||
uneasy_raj_stability_high_lower_bound = 225 | ||
uneasy_raj_stability_high_upper_bound = 300 |