From e962f7b457dff4da3ccc7b12a8b0da3b3910a6aa Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:05:58 -0400 Subject: [PATCH 1/9] clamped time in government --- common/scripted_effects/cwp_corruption_effect.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/common/scripted_effects/cwp_corruption_effect.txt b/common/scripted_effects/cwp_corruption_effect.txt index c6d733ff6..2042c3092 100644 --- a/common/scripted_effects/cwp_corruption_effect.txt +++ b/common/scripted_effects/cwp_corruption_effect.txt @@ -44,9 +44,14 @@ calc_ig_corruption = { else = { change_variable = { name = ig_time_in_government - add = -1 + add = -2 } } + clamp_variable = { + name = ig_time_in_government + max = 20 + min = 0 + } if = { limit = { NOT = { From f87f74011ce58d76026b4b42577e51dfc61c6208 Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:15:10 -0400 Subject: [PATCH 2/9] rebalance ig membership pop types --- common/interest_groups/CWP_Bureaucrats.txt | 20 +++++++++++++ common/interest_groups/CWP_Elites.txt | 12 +++++++- common/interest_groups/CWP_Entrepreneurs.txt | 10 +++++++ common/interest_groups/CWP_Intelligentisa.txt | 10 +++++++ common/interest_groups/CWP_Laborists.txt | 1 - common/interest_groups/CWP_Moralists.txt | 10 +++++++ common/interest_groups/CWP_Patriots.txt | 10 +++++++ common/interest_groups/CWP_Ruralists.txt | 10 +++++++ common/interest_groups/CWP_Urbanists.txt | 30 ------------------- 9 files changed, 81 insertions(+), 32 deletions(-) diff --git a/common/interest_groups/CWP_Bureaucrats.txt b/common/interest_groups/CWP_Bureaucrats.txt index 7af48113f..b2409175b 100644 --- a/common/interest_groups/CWP_Bureaucrats.txt +++ b/common/interest_groups/CWP_Bureaucrats.txt @@ -43,7 +43,9 @@ OR = { is_pop_type = administrators is_pop_type = officers + is_pop_type = servicemembers is_pop_type = service_workers + is_pop_type = academics } } pop_weight = { @@ -67,6 +69,24 @@ value = 50 } } + add = { + desc = "POP_SERVICEMEMBERS" + if = { + limit = { + is_pop_type = servicemembers + } + value = 50 + } + } + add = { + desc = "POP_ACADEMICS" + if = { + limit = { + is_pop_type = academics + } + value = 50 + } + } add = { desc = "POP_SERVICE_WORKERS" if = { diff --git a/common/interest_groups/CWP_Elites.txt b/common/interest_groups/CWP_Elites.txt index 550b21eec..88622e0cf 100644 --- a/common/interest_groups/CWP_Elites.txt +++ b/common/interest_groups/CWP_Elites.txt @@ -48,6 +48,7 @@ is_pop_type = professionals is_pop_type = academics is_pop_type = officers + is_pop_type = engineers is_pop_type = clergy } } @@ -69,7 +70,16 @@ limit = { is_pop_type = landlords } - value = 100 + value = 200 + } + } + add = { + desc = "POP_ENGINEERS" + if = { + limit = { + is_pop_type = engineers + } + value = 50 } } add = { diff --git a/common/interest_groups/CWP_Entrepreneurs.txt b/common/interest_groups/CWP_Entrepreneurs.txt index 3451e6797..6013db62d 100644 --- a/common/interest_groups/CWP_Entrepreneurs.txt +++ b/common/interest_groups/CWP_Entrepreneurs.txt @@ -45,6 +45,7 @@ is_pop_type = landlords is_pop_type = professionals is_pop_type = farmers + is_pop_type = engineers is_pop_type = service_workers is_pop_type = technicians is_pop_type = creatives @@ -98,6 +99,15 @@ value = 50 } } + add = { + desc = "POP_ENGINEERS" + if = { + limit = { + is_pop_type = engineers + } + value = 50 + } + } add = { desc = "POP_CREATIVES" if = { diff --git a/common/interest_groups/CWP_Intelligentisa.txt b/common/interest_groups/CWP_Intelligentisa.txt index 7ba013256..45a2db18e 100644 --- a/common/interest_groups/CWP_Intelligentisa.txt +++ b/common/interest_groups/CWP_Intelligentisa.txt @@ -50,6 +50,7 @@ is_pop_type = clergy is_pop_type = service_workers is_pop_type = creatives + is_pop_type = engineers } } pop_weight = { @@ -127,6 +128,15 @@ value = 50 } } + add = { + desc = "POP_ENGINEERS" + if = { + limit = { + is_pop_type = engineers + } + value = 50 + } + } multiply = { desc = "LEADER_POPULARITY" scope:interest_group = { diff --git a/common/interest_groups/CWP_Laborists.txt b/common/interest_groups/CWP_Laborists.txt index 91ca5a0c2..a0c1961cd 100644 --- a/common/interest_groups/CWP_Laborists.txt +++ b/common/interest_groups/CWP_Laborists.txt @@ -43,7 +43,6 @@ OR = { is_pop_type = laborers is_pop_type = technicians - is_pop_type = engineers is_pop_type = service_workers is_pop_type = creatives } diff --git a/common/interest_groups/CWP_Moralists.txt b/common/interest_groups/CWP_Moralists.txt index 015cf8f34..6c6a50b85 100644 --- a/common/interest_groups/CWP_Moralists.txt +++ b/common/interest_groups/CWP_Moralists.txt @@ -45,6 +45,7 @@ is_pop_type = clergy is_pop_type = laborers is_pop_type = academics + is_pop_type = informal_workers } } pop_weight = { @@ -68,6 +69,15 @@ value = 100 } } + add = { + desc = "POP_INFORMAL_WORKERS" + if = { + limit = { + is_pop_type = informal_workers + } + value = 50 + } + } add = { desc = "POP_ACADEMICS" if = { diff --git a/common/interest_groups/CWP_Patriots.txt b/common/interest_groups/CWP_Patriots.txt index 78b65bf5e..85344bd2f 100644 --- a/common/interest_groups/CWP_Patriots.txt +++ b/common/interest_groups/CWP_Patriots.txt @@ -51,6 +51,7 @@ is_pop_type = investors is_pop_type = landlords is_pop_type = engineers + is_pop_type = informal_workers } } pop_weight = { @@ -146,6 +147,15 @@ value = 50 } } + add = { + desc = "POP_INFORMAL_WORKERS" + if = { + limit = { + is_pop_type = informal_workers + } + value = 50 + } + } multiply = { desc = "LEADER_POPULARITY" scope:interest_group = { diff --git a/common/interest_groups/CWP_Ruralists.txt b/common/interest_groups/CWP_Ruralists.txt index 0900e3784..e7114d0b9 100644 --- a/common/interest_groups/CWP_Ruralists.txt +++ b/common/interest_groups/CWP_Ruralists.txt @@ -45,6 +45,7 @@ is_pop_type = farmers is_pop_type = laborers is_pop_type = clergy + is_pop_type = informal_workers } } pop_weight = { @@ -68,6 +69,15 @@ value = 100 } } + add = { + desc = "POP_INFORMAL_WORKERS" + if = { + limit = { + is_pop_type = informal_workers + } + value = 100 + } + } add = { desc = "POP_CLERGY" if = { diff --git a/common/interest_groups/CWP_Urbanists.txt b/common/interest_groups/CWP_Urbanists.txt index b354c072c..8e8b84073 100644 --- a/common/interest_groups/CWP_Urbanists.txt +++ b/common/interest_groups/CWP_Urbanists.txt @@ -41,26 +41,14 @@ pop_potential = { # Defines which pops are ALLOWED TO join the IG OR = { - is_pop_type = engineers is_pop_type = service_workers is_pop_type = professionals - is_pop_type = academics - is_pop_type = landlords is_pop_type = creatives } } pop_weight = { # Describes the likelihood (weight) certain pops are to join the IG value = 0 - add = { - desc = "POP_ENGINEERS" - if = { - limit = { - is_pop_type = engineers - } - value = 200 - } - } add = { desc = "POP_SERVICE_WORKERS" if = { @@ -88,24 +76,6 @@ value = 100 } } - add = { - desc = "POP_ACADEMICS" - if = { - limit = { - is_pop_type = academics - } - value = 100 - } - } - add = { - desc = "POP_LANDLORDS" - if = { - limit = { - is_pop_type = landlords - } - value = 50 - } - } multiply = { desc = "LEADER_POPULARITY" scope:interest_group = { From 2546fac2026fad23b90c36621a237c98fdda92aa Mon Sep 17 00:00:00 2001 From: Max200012 Date: Sat, 29 Jul 2023 17:15:18 +0200 Subject: [PATCH 3/9] fix: china's early flag --- common/flag_definitions/00_flag_definitions_CWP.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/flag_definitions/00_flag_definitions_CWP.txt b/common/flag_definitions/00_flag_definitions_CWP.txt index ab6c50147..19fedbc2c 100644 --- a/common/flag_definitions/00_flag_definitions_CWP.txt +++ b/common/flag_definitions/00_flag_definitions_CWP.txt @@ -785,7 +785,7 @@ PRC = { coa = PRC subject_canton = PRC priority = 1500 - trigger = { + trigger = { coa_def_communist_flag_trigger = yes } } @@ -795,7 +795,7 @@ PRC = { trigger = { coa_def_communist_flag_trigger = yes scope:actor = { - is_at_war = yes + is_diplomatic_play_committed_participant = yes } game_date < 1949.10.1 } From 7610132c4d7efb8dee38f691c2480838694c29a7 Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:23:17 -0400 Subject: [PATCH 4/9] refactored post decolonization effect to use existing on_action --- .../cwp_decolonization_effects.txt | 85 +------------------ 1 file changed, 1 insertion(+), 84 deletions(-) diff --git a/common/scripted_effects/cwp_decolonization_effects.txt b/common/scripted_effects/cwp_decolonization_effects.txt index 86dbd3e01..ed846d43c 100644 --- a/common/scripted_effects/cwp_decolonization_effects.txt +++ b/common/scripted_effects/cwp_decolonization_effects.txt @@ -16907,90 +16907,7 @@ effect_post_decolonization = { months = 24 is_decaying = yes } - if = { - limit = { - not = { - has_variable = foreign_reserves - } - } - set_variable = { - name = foreign_reserves - value = 0 - } - } - if = { - limit = { - not = { - has_variable = inflation_rate - } - } - set_variable = { - name = inflation_rate - value = 0 - } - } - if = { - limit = { - not = { - has_variable = interest_rate_gui - } - } - set_variable = { - name = interest_rate_gui - value = 2 - } - } - if = { - limit = { - not = { - has_variable = interest_rate - } - } - set_variable = { - name = interest_rate - value = 2 - } - add_modifier = { - name = interest_rates - multiplier = 2 - } - } - if = { - limit = { - nor = { - has_variable = contractionary_monetary_policy - has_variable = stable_monetary_policy - has_variable = expansionary_monetary_policy - } - } - set_variable = stable_monetary_policy - } - if = { - limit = { - not = { - has_variable = bank_credibility - } - } - set_variable = { - name = bank_credibility - value = 19 - } - set_variable = { - name = previous_bank_credibility - value = var:bank_credibility - } - } - if = { - limit = { - not = { - has_variable = money_supply - } - } - set_variable = { - name = money_supply - value = 0 - } - } + onaction_monetary_variables_creation = yes setup_parties = yes setup_starting_ideologies = yes } From 86753a72ff4423c867665eb773574f61d6ff491a Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:29:09 -0400 Subject: [PATCH 5/9] saudi arabia was a un member in 46 --- common/history/countries/nej - saudi arabia.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/common/history/countries/nej - saudi arabia.txt b/common/history/countries/nej - saudi arabia.txt index c5a7328ca..293456449 100644 --- a/common/history/countries/nej - saudi arabia.txt +++ b/common/history/countries/nej - saudi arabia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:NEJ = { + effect_un_member = yes # Politics activate_law = law_type:law_hereditary activate_law = law_type:law_autocracy From cf485dd695e56806083173fd3c85aa1b5b8eb692 Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:42:56 -0400 Subject: [PATCH 6/9] cheaper livestock ranches --- common/production_methods/02_agro.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/common/production_methods/02_agro.txt b/common/production_methods/02_agro.txt index 25fcaaf10..48555f620 100644 --- a/common/production_methods/02_agro.txt +++ b/common/production_methods/02_agro.txt @@ -559,7 +559,6 @@ pm_butchering_tools = { texture = "gfx/interface/icons/production_method_icons/agriculture/butchering_tools.dds" building_modifiers = { workforce_scaled = { - building_input_tools_add = 10 building_output_meat_add = 15 } } @@ -572,7 +571,7 @@ pm_slaughterhouses = { } building_modifiers = { workforce_scaled = { - building_input_tools_add = 15 + building_input_tools_add = 5 building_output_meat_add = 25 } } @@ -585,8 +584,8 @@ pm_mechanized_slaughtering = { } building_modifiers = { workforce_scaled = { - building_input_tools_add = 15 - building_input_engines_add = 10 + building_input_tools_add = 10 + building_input_engines_add = 5 building_output_meat_add = 45 } } From 84eeae24acac4ac3e471371be640326d4171999e Mon Sep 17 00:00:00 2001 From: JackEPepper <100242026+JackEPepper@users.noreply.github.com> Date: Sat, 29 Jul 2023 11:48:27 -0400 Subject: [PATCH 7/9] I forgot this was in months, not years --- common/scripted_effects/cwp_corruption_effect.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripted_effects/cwp_corruption_effect.txt b/common/scripted_effects/cwp_corruption_effect.txt index 2042c3092..bb54be263 100644 --- a/common/scripted_effects/cwp_corruption_effect.txt +++ b/common/scripted_effects/cwp_corruption_effect.txt @@ -49,7 +49,7 @@ calc_ig_corruption = { } clamp_variable = { name = ig_time_in_government - max = 20 + max = 240 min = 0 } if = { From 929ebc241d544ea8911d69f30a062140ae6be403 Mon Sep 17 00:00:00 2001 From: Max200012 Date: Sat, 29 Jul 2023 18:01:55 +0200 Subject: [PATCH 8/9] feat: all un nations --- common/history/countries/ast - australia.txt | 1 + common/history/countries/bol - bolivia.txt | 1 + common/history/countries/can - canada.txt | 1 + common/history/countries/clm - colombia.txt | 1 + common/history/countries/cos - costa rica.txt | 1 + common/history/countries/czh - czechoslovakia.txt | 1 + common/history/countries/den - denmark.txt | 1 + common/history/countries/ecu - ecuador.txt | 1 + common/history/countries/els - el salvador.txt | 1 + common/history/countries/eth - ethiopia.txt | 1 + common/history/countries/gua - guatemala.txt | 1 + common/history/countries/hnd - india.txt | 1 + common/history/countries/hon - honduras.txt | 1 + common/history/countries/irq - iraq.txt | 1 + common/history/countries/leb - lebanon.txt | 1 + common/history/countries/mex - mexico.txt | 1 + common/history/countries/nic - nicaragua.txt | 1 + common/history/countries/nor - norway.txt | 1 + common/history/countries/nzl - New Zealand.txt | 1 + common/history/countries/peu - peru.txt | 1 + common/history/countries/pnm - panama.txt | 1 + common/history/countries/prg - paraguay.txt | 1 + common/history/countries/saf - south africa.txt | 1 + common/history/countries/syr - syria.txt | 1 + common/history/countries/uru - uruguay.txt | 1 + common/history/countries/vnz - venezuela.txt | 1 + common/history/countries/yug - yugoslavia.txt | 1 + 27 files changed, 27 insertions(+) diff --git a/common/history/countries/ast - australia.txt b/common/history/countries/ast - australia.txt index 473fe92e9..3b8a8a923 100644 --- a/common/history/countries/ast - australia.txt +++ b/common/history/countries/ast - australia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:AST = { + effect_un_member = yes # Politics # Capital diff --git a/common/history/countries/bol - bolivia.txt b/common/history/countries/bol - bolivia.txt index 114f746c4..54b82f441 100644 --- a/common/history/countries/bol - bolivia.txt +++ b/common/history/countries/bol - bolivia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:BOL = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/can - canada.txt b/common/history/countries/can - canada.txt index bc49fd3e1..106ce26b4 100644 --- a/common/history/countries/can - canada.txt +++ b/common/history/countries/can - canada.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:CAN = { + effect_un_member = yes add_journal_entry = { type = newfoundland_referendum } diff --git a/common/history/countries/clm - colombia.txt b/common/history/countries/clm - colombia.txt index 70c568b82..1d209bae2 100644 --- a/common/history/countries/clm - colombia.txt +++ b/common/history/countries/clm - colombia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:CLM = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/cos - costa rica.txt b/common/history/countries/cos - costa rica.txt index 26106b061..b94d3c8d9 100644 --- a/common/history/countries/cos - costa rica.txt +++ b/common/history/countries/cos - costa rica.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:COS = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/czh - czechoslovakia.txt b/common/history/countries/czh - czechoslovakia.txt index c9e72cbe8..438d5a82c 100644 --- a/common/history/countries/czh - czechoslovakia.txt +++ b/common/history/countries/czh - czechoslovakia.txt @@ -2,6 +2,7 @@ c:CZH = { effect_starting_technology_tier_1_tech = yes set_tax_level = medium + effect_un_member = yes # Laws effect_create_law_package = { headOfGovernment = administrative diff --git a/common/history/countries/den - denmark.txt b/common/history/countries/den - denmark.txt index fa1446f3d..25d5965ed 100644 --- a/common/history/countries/den - denmark.txt +++ b/common/history/countries/den - denmark.txt @@ -6,6 +6,7 @@ set_tax_level = high effect_starting_technology_tier_1_tech = yes effect_currency_dkk = yes + effect_un_member = yes # Laws effect_create_law_package = { headOfGovernment = hereditary diff --git a/common/history/countries/ecu - ecuador.txt b/common/history/countries/ecu - ecuador.txt index 7f1de2257..626ab42c8 100644 --- a/common/history/countries/ecu - ecuador.txt +++ b/common/history/countries/ecu - ecuador.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:ECU = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/els - el salvador.txt b/common/history/countries/els - el salvador.txt index 61f701fc9..c344fd07b 100644 --- a/common/history/countries/els - el salvador.txt +++ b/common/history/countries/els - el salvador.txt @@ -5,6 +5,7 @@ # Tech and Tax set_tax_level = high effect_starting_technology_tier_2_tech = yes + effect_un_member = yes # Laws effect_create_law_package = { headOfGovernment = executive diff --git a/common/history/countries/eth - ethiopia.txt b/common/history/countries/eth - ethiopia.txt index 9a5e4b39c..290920094 100644 --- a/common/history/countries/eth - ethiopia.txt +++ b/common/history/countries/eth - ethiopia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:ETH = { + effect_un_member = yes effect_starting_technology_tier_5_tech = yes activate_law = law_type:law_no_nationalization activate_law = law_type:law_unrestricted_human_testing diff --git a/common/history/countries/gua - guatemala.txt b/common/history/countries/gua - guatemala.txt index f3b47fc0b..622c6e5c8 100644 --- a/common/history/countries/gua - guatemala.txt +++ b/common/history/countries/gua - guatemala.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:GUA = { + effect_un_member = yes set_tax_level = medium effect_starting_technology_tier_3_tech = yes #laws diff --git a/common/history/countries/hnd - india.txt b/common/history/countries/hnd - india.txt index 65cf780b2..919c98521 100644 --- a/common/history/countries/hnd - india.txt +++ b/common/history/countries/hnd - india.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:HND = { + effect_un_member = yes # Politics add_journal_entry = { type = indian_partition diff --git a/common/history/countries/hon - honduras.txt b/common/history/countries/hon - honduras.txt index 6202e8038..8558bb9a2 100644 --- a/common/history/countries/hon - honduras.txt +++ b/common/history/countries/hon - honduras.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:HON = { + effect_un_member = yes set_tax_level = medium effect_starting_technology_tier_3_tech = yes # Politics diff --git a/common/history/countries/irq - iraq.txt b/common/history/countries/irq - iraq.txt index e631ce69d..aa3ce7fef 100644 --- a/common/history/countries/irq - iraq.txt +++ b/common/history/countries/irq - iraq.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:IRQ = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/leb - lebanon.txt b/common/history/countries/leb - lebanon.txt index c0be3540d..39300bc21 100644 --- a/common/history/countries/leb - lebanon.txt +++ b/common/history/countries/leb - lebanon.txt @@ -2,6 +2,7 @@ c:LEB = { # Politics #todo IGs and Ideologies + effect_un_member = yes # Tech and Tax effect_starting_technology_tier_4_tech = yes effect_create_law_package = { diff --git a/common/history/countries/mex - mexico.txt b/common/history/countries/mex - mexico.txt index c1c7402fd..bb7daa3cf 100644 --- a/common/history/countries/mex - mexico.txt +++ b/common/history/countries/mex - mexico.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:MEX = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/nic - nicaragua.txt b/common/history/countries/nic - nicaragua.txt index 796e0ff72..6ac4045f2 100644 --- a/common/history/countries/nic - nicaragua.txt +++ b/common/history/countries/nic - nicaragua.txt @@ -2,6 +2,7 @@ c:NIC = { set_tax_level = medium effect_starting_technology_tier_2_tech = yes + effect_un_member = yes # Politics effect_create_law_package = { headOfGovernment = executive diff --git a/common/history/countries/nor - norway.txt b/common/history/countries/nor - norway.txt index 86b0cec9b..fe5893122 100644 --- a/common/history/countries/nor - norway.txt +++ b/common/history/countries/nor - norway.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:NOR = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/nzl - New Zealand.txt b/common/history/countries/nzl - New Zealand.txt index 980d3453f..552bd7f9c 100644 --- a/common/history/countries/nzl - New Zealand.txt +++ b/common/history/countries/nzl - New Zealand.txt @@ -7,6 +7,7 @@ effect_starting_technology_tier_1_tech = yes effect_starting_technology_wartime_participant_tech = yes effect_currency_nzp = yes + effect_un_member = yes # Laws effect_create_law_package = { headOfGovernment = hereditary diff --git a/common/history/countries/peu - peru.txt b/common/history/countries/peu - peru.txt index 2a1378fbf..8fa624922 100644 --- a/common/history/countries/peu - peru.txt +++ b/common/history/countries/peu - peru.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:PEU = { + effect_un_member = yes # Politics #todo IGs and Ideologies effect_currency_pen = yes diff --git a/common/history/countries/pnm - panama.txt b/common/history/countries/pnm - panama.txt index d88dd2a5d..ed3b25fe5 100644 --- a/common/history/countries/pnm - panama.txt +++ b/common/history/countries/pnm - panama.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:PNM = { + effect_un_member = yes activate_law = law_type:law_parliamentary effect_starting_technology_tier_5_tech = yes activate_law = law_type:law_unrestricted_human_testing diff --git a/common/history/countries/prg - paraguay.txt b/common/history/countries/prg - paraguay.txt index b6a7d7f57..249cc9538 100644 --- a/common/history/countries/prg - paraguay.txt +++ b/common/history/countries/prg - paraguay.txt @@ -2,6 +2,7 @@ c:PRG = { set_tax_level = medium effect_starting_technology_tier_2_tech = yes + effect_un_member = yes # Politics activate_law = law_type:law_representative_democracy activate_law = law_type:law_decentralization diff --git a/common/history/countries/saf - south africa.txt b/common/history/countries/saf - south africa.txt index 8d839cb20..4e5038af1 100644 --- a/common/history/countries/saf - south africa.txt +++ b/common/history/countries/saf - south africa.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:SAF = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/syr - syria.txt b/common/history/countries/syr - syria.txt index d3a08fff1..9178afc3f 100644 --- a/common/history/countries/syr - syria.txt +++ b/common/history/countries/syr - syria.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:SYR = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/uru - uruguay.txt b/common/history/countries/uru - uruguay.txt index 5309b4fcc..a3e5eb818 100644 --- a/common/history/countries/uru - uruguay.txt +++ b/common/history/countries/uru - uruguay.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:URU = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/vnz - venezuela.txt b/common/history/countries/vnz - venezuela.txt index b1348d8e3..c2bc61413 100644 --- a/common/history/countries/vnz - venezuela.txt +++ b/common/history/countries/vnz - venezuela.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:VNZ = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax diff --git a/common/history/countries/yug - yugoslavia.txt b/common/history/countries/yug - yugoslavia.txt index 4ffd1c092..f5c6b7f04 100644 --- a/common/history/countries/yug - yugoslavia.txt +++ b/common/history/countries/yug - yugoslavia.txt @@ -3,6 +3,7 @@ effect_starting_technology_tier_2_tech = yes effect_starting_technology_wartime_participant_tech = yes set_tax_level = medium + effect_un_member = yes # Laws effect_create_law_package = { headOfGovernment = executive From c5961285c65ee6243feba2ee0066ac012726d45a Mon Sep 17 00:00:00 2001 From: Max200012 Date: Sat, 29 Jul 2023 18:06:09 +0200 Subject: [PATCH 9/9] oops --- common/history/countries/lib - liberia.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/common/history/countries/lib - liberia.txt b/common/history/countries/lib - liberia.txt index c3c2b294e..f237f2915 100644 --- a/common/history/countries/lib - liberia.txt +++ b/common/history/countries/lib - liberia.txt @@ -1,5 +1,6 @@ COUNTRIES = { c:LIB = { + effect_un_member = yes # Politics #todo IGs and Ideologies # Tech and Tax