Skip to content

Commit bfcbf99

Browse files
committed
SIS - general preparatory update
1 parent f74c20b commit bfcbf99

15 files changed

+104
-52
lines changed

Subject Interaction Suite/.metadata/metadata.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"Diplomacy",
1010
"Expansion",
1111
"Gameplay",
12-
"1.9",
13-
"1.10"
12+
"1.12"
1413
],
1514
"relationships" : [],
1615
"game_custom_data" : {

Subject Interaction Suite/STEAM_PAGE.bbcode

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[img]https://i.imgur.com/7xuCZqW.png[/img]
2-
[img]https://img.shields.io/badge/Supports_Game_Version-1.10-blue[/img] (and onwards)
2+
[img]https://img.shields.io/badge/Supports_Game_Version-1.12-blue[/img] (and onwards)
33
[url=https://github.com/MasterOfGrey/Grey-Victoria3-Reworks][img]https://img.shields.io/github/v/tag/MasterOfGrey/Grey-Victoria3-Reworks?sort=date&filter=*SIS-*&label=Mod%20Tag%20%26%20Version&color=7700CF[/img][/url][url=https://discord.gg/SnUghEkQQz][img]https://img.shields.io/discord/1377452253715107912?&label=Discord&color=7700CF[/img][/url]
44
Please consider rating this if you like it! It really helps out. [img]https://i.imgur.com/tE28cZ7.gif[/img]
55
[spoiler]Originally made for: Version 1.7[/spoiler]
@@ -44,7 +44,7 @@ It contains a [i]complete overhaul[/i] of Liberty Desire, and a range of additio
4444
[*]Forced Slavery Ban - forcibly change a subject's law to Slavery Banned, may upset some people...
4545
[*]Forced Slave Trade - forcibly change a subject's law to Slave Trade, will upset [b]a lot[/b] of people...
4646
[*]Recognize - Recognise an unrecognized subject.
47-
[*]Offer Convoy Contribution - As subject, give excess convoys to overlord
47+
[*]Offer Convoy Contribution - As subject, give excess convoys to overlord (decision can disable)
4848
[/list]
4949

5050
NOTE: These appear contextually - they won't show for a particular subject if they're not potentially valid.

Subject Interaction Suite/common/ai_strategies/MoG_diplomatic_strategies_SIS.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ ai_strategy_territorial_expansion = {
158158
}
159159

160160
possible = {
161-
always = yes # Modded
161+
can_have_subjects = yes # Modded
162162
}
163163

164164
weight = {
@@ -228,7 +228,7 @@ ai_strategy_territorial_expansion = {
228228
}
229229

230230
if = {
231-
limit = { country_is_in_europe = yes }
231+
limit = { is_in_geographic_region = geographic_region_europe }
232232
multiply = 0.25
233233
}
234234

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
occ_offer_convoys_decision_dynamic_name = {
2+
type = country
3+
random_valid = no
4+
5+
text = {
6+
trigger = {
7+
has_global_variable = offer_convoys_disabled
8+
}
9+
localization_key = occ_enable_convoys
10+
}
11+
text = {
12+
localization_key = occ_disable_convoys
13+
}
14+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
occ_offer_convoys_decision = {
2+
is_shown = {
3+
num_diplomatic_pacts = { # If any subject has the agreement with you.
4+
type = occ_offer_convoys
5+
value > 0
6+
}
7+
}
8+
9+
possible = {
10+
always = yes
11+
}
12+
13+
when_taken = {
14+
if = {
15+
limit = { has_global_variable = offer_convoys_disabled }
16+
remove_global_variable = offer_convoys_disabled
17+
}
18+
else = {
19+
set_global_variable = offer_convoys_disabled
20+
}
21+
}
22+
23+
ai_chance = {
24+
value = 0
25+
}
26+
}

Subject Interaction Suite/common/diplomatic_actions/04_trade_statez.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
is_under_colonization = no
140140
is_incorporated = no
141141
NOT = { is_homeland_of_country_cultures = owner }
142-
state_is_in_africa = yes
142+
is_in_geographic_region = geographic_region_africa
143143
NOT = { state_region = s:STATE_INDIAN_OCEAN_TERRITORY } # Special exception to african state trading
144144
}
145145

@@ -148,7 +148,7 @@
148148
is_under_colonization = no
149149
is_incorporated = no
150150
NOT = { is_homeland_of_country_cultures = owner }
151-
state_is_in_africa = yes
151+
is_in_geographic_region = geographic_region_africa
152152
NOT = { state_region = s:STATE_INDIAN_OCEAN_TERRITORY } # Special exception to african state trading
153153
}
154154

Subject Interaction Suite/common/diplomatic_actions/yMoG_S10_offer_convoy_contribution.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
text = "TRIGGER_COUNTRY_CONVOY_CONTRIBUTION_LESS_THAN_MAX"
2525
modifier:country_convoy_contribution_to_market_owner_add < 0.65
2626
}
27+
hidden_trigger = {
28+
NOT = { has_global_variable = offer_convoys_disabled }
29+
}
2730
}
2831

2932
#accept_effect = {}
@@ -64,6 +67,12 @@
6467
}
6568
}
6669
}
70+
71+
#requirement_to_maintain = {
72+
# hidden_trigger = {
73+
# NOT = { has_global_variable = offer_convoys_disabled }
74+
# }
75+
#}
6776
#manual_break_effect = {}
6877
}
6978

Subject Interaction Suite/localization/english/change_religion_00_l_english.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
l_english:
2-
change_state_religion:0 "Religious Institution Takeover"
3-
change_state_religion_action_name:0 "$change_state_religion$"
4-
change_state_religion_action_propose_name:0 "Initiate [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
5-
change_state_religion_action_break_name:0 "Stop [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
6-
change_state_religion_pact_desc:0 "[SCOPE.GetRootScope.GetDiplomaticPact.GetFirstCountry.GetName] is changing the state religion of [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.GetName].\n Currently #variable [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.MakeScope.Var('change_state_religion_progress').GetValue]#! progress out of 8 stages."
7-
change_state_religion_desc:0 "#header $change_state_religion$#!\n$TOOLTIP_DELIMITER$\nChange the state religion of the target country."
8-
change_state_religion_action_notification_name:0 "[INITIATOR_COUNTRY.GetName] is changing our country's state religion."
9-
change_state_religion_action_notification_desc:0 "[INITIATOR_COUNTRY.GetName] is changing the state religion in our country."
10-
change_state_religion_action_notification_break_name:0 "State [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] Stopped by [INITIATOR_COUNTRY.GetName]"
11-
change_state_religion_action_notification_break_desc:0 "[INITIATOR_COUNTRY.GetName] has terminated the state religion change for our nation."
2+
change_state_religion: "Religious Institution Takeover"
3+
change_state_religion_action_name: "$change_state_religion$"
4+
change_state_religion_action_propose_name: "Initiate [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
5+
change_state_religion_action_break_name: "Stop [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
6+
change_state_religion_pact_desc: "[SCOPE.GetRootScope.GetDiplomaticPact.GetFirstCountry.GetName] is changing the state religion of [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.GetName].\n Currently #variable [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.MakeScope.Var('change_state_religion_progress').GetValue]#! progress out of 8 stages."
7+
change_state_religion_desc: "#header $change_state_religion$#!\n$TOOLTIP_DELIMITER$\nChange the state religion of the target country."
8+
change_state_religion_action_notification_name: "[INITIATOR_COUNTRY.GetName] is changing our country's state religion."
9+
change_state_religion_action_notification_desc: "[INITIATOR_COUNTRY.GetName] is changing the state religion in our country."
10+
change_state_religion_action_notification_break_name: "State [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] Stopped by [INITIATOR_COUNTRY.GetName]"
11+
change_state_religion_action_notification_break_desc: "[INITIATOR_COUNTRY.GetName] has terminated the state religion change for our nation."
1212

13-
change_state_religion_effect_desc_global:0 "Initiate State [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
14-
change_state_religion_effect_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] is initiating state religion change in [TARGET_COUNTRY.GetName]."
15-
change_state_religion_effect_desc_third:0 "[COUNTRY.GetName] is initiating [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
13+
change_state_religion_effect_desc_global: "Initiate State [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')]"
14+
change_state_religion_effect_desc_first: "[COUNTRY.GetAdjectiveNoFlag] is initiating state religion change in [TARGET_COUNTRY.GetName]."
15+
change_state_religion_effect_desc_third: "[COUNTRY.GetName] is initiating [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
1616

17-
change_state_religion_trigger_desc_global:0 "[INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] in Progress"
18-
change_state_religion_trigger_false_desc_global:0 "Not in the process of [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] #b anymore.#!"
19-
change_state_religion_trigger_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] is changing the state religion in [TARGET_COUNTRY.GetName]."
20-
change_state_religion_trigger_false_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] is not changing the state religion in [TARGET_COUNTRY.GetName] #b anymore.#!"
21-
change_state_religion_trigger_desc_third:0 "[COUNTRY.GetName] is changing the state religion in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
22-
change_state_religion_trigger_false_desc_third:0 "[COUNTRY.GetName] is not changing the state religion in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)] #b anymore.#!"
17+
change_state_religion_trigger_desc_global: "[INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] in Progress"
18+
change_state_religion_trigger_false_desc_global: "Not in the process of [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] #b anymore.#!"
19+
change_state_religion_trigger_desc_first: "[COUNTRY.GetAdjectiveNoFlag] is changing the state religion in [TARGET_COUNTRY.GetName]."
20+
change_state_religion_trigger_false_desc_first: "[COUNTRY.GetAdjectiveNoFlag] is not changing the state religion in [TARGET_COUNTRY.GetName] #b anymore.#!"
21+
change_state_religion_trigger_desc_third: "[COUNTRY.GetName] is changing the state religion in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
22+
change_state_religion_trigger_false_desc_third: "[COUNTRY.GetName] is not changing the state religion in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)] #b anymore.#!"
2323

2424
ib_events.02.t: "State Religion Change"
2525
ib_events.02.d: "The proud [ROOT.GetCountry.GetName] has successfully completed the [INITIATOR_COUNTRY.GetCustom('change_religion_dynamic_name')] for [SCOPE.sCountry('religion_target_country').GetName]. [SCOPE.sCountry('religion_target_country').GetName] will now prosper forever, embracing the religious institutions of the homeland."

Subject Interaction Suite/localization/english/syn_trade_00_l_english.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
l_english:
2-
laws_synergize_trade:0 "Synergize Trade Policies"
3-
laws_synergize_trade_action_name:0 "$laws_synergize_trade$"
4-
laws_synergize_trade_action_propose_name:0 "Begin Synergizing Trade Policies"
5-
laws_synergize_trade_action_break_name:0 "Stop Synergizing Trade Policies"
6-
laws_synergize_trade_pact_desc:0 "[SCOPE.GetRootScope.GetDiplomaticPact.GetFirstCountry.GetName] restructures the trade policy of [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.GetName] to synergize with theirs.\n Currently #variable [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.MakeScope.Var('synergize_trade_progress').GetValue]#! progress out of 8 stages."
2+
laws_synergize_trade: "Synergize Trade Policies"
3+
laws_synergize_trade_action_name: "$laws_synergize_trade$"
4+
laws_synergize_trade_action_propose_name: "Begin Synergizing Trade Policies"
5+
laws_synergize_trade_action_break_name: "Stop Synergizing Trade Policies"
6+
laws_synergize_trade_pact_desc: "[SCOPE.GetRootScope.GetDiplomaticPact.GetFirstCountry.GetName] restructures the trade policy of [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.GetName] to synergize with theirs.\n Currently #variable [SCOPE.GetRootScope.GetDiplomaticPact.GetSecondCountry.MakeScope.Var('synergize_trade_progress').GetValue]#! progress out of 8 stages."
77
laws_synergize_trade_desc:1 "#header $laws_synergize_trade$#!\n$TOOLTIP_DELIMITER$\nSynergizes the trade policies of the specified country."
88
laws_synergize_trade_action_notification_name:1 "[INITIATOR_COUNTRY.GetName] Synergizing Trade Policies"
99
laws_synergize_trade_action_notification_desc:1 "[INITIATOR_COUNTRY.GetName] is synergizing our country’s trade policies."
1010
laws_synergize_trade_action_notification_break_name:1 "Cease Synergizing Trade Policies by [INITIATOR_COUNTRY.GetName]"
11-
laws_synergize_trade_action_notification_break_desc:0 "[INITIATOR_COUNTRY.GetName] has ceased trying to synergizing our country's trade policies."
11+
laws_synergize_trade_action_notification_break_desc: "[INITIATOR_COUNTRY.GetName] has ceased trying to synergizing our country's trade policies."
1212

13-
laws_synergize_trade_effect_desc_global:0 "Begin Synergizing Trade Policies"
14-
laws_synergize_trade_effect_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] initiates trade policy synergisation with [TARGET_COUNTRY.GetName]."
15-
laws_synergize_trade_effect_desc_third:0 "[COUNTRY.GetName] initiates trade policy synergisation with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
13+
laws_synergize_trade_effect_desc_global: "Begin Synergizing Trade Policies"
14+
laws_synergize_trade_effect_desc_first: "[COUNTRY.GetAdjectiveNoFlag] initiates trade policy synergisation with [TARGET_COUNTRY.GetName]."
15+
laws_synergize_trade_effect_desc_third: "[COUNTRY.GetName] initiates trade policy synergisation with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
1616

17-
laws_synergize_trade_trigger_desc_global:0 "Trade Policy Synergisation Ongoing"
18-
laws_synergize_trade_trigger_false_desc_global:0 "Not currently in the process of synergizing trade policies."
19-
laws_synergize_trade_trigger_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] has synergetic trade policy systems with [TARGET_COUNTRY.GetName]."
20-
laws_synergize_trade_trigger_false_desc_first:0 "[COUNTRY.GetAdjectiveNoFlag] does not currently have synergetic trade policy systems with [TARGET_COUNTRY.GetName]."
21-
laws_synergize_trade_trigger_desc_third:0 "[COUNTRY.GetName] has synergetic trade policy systems with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
22-
laws_synergize_trade_trigger_false_desc_third:0 "[COUNTRY.GetName] does not currently have synergetic trade policy systems with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
17+
laws_synergize_trade_trigger_desc_global: "Trade Policy Synergisation Ongoing"
18+
laws_synergize_trade_trigger_false_desc_global: "Not currently in the process of synergizing trade policies."
19+
laws_synergize_trade_trigger_desc_first: "[COUNTRY.GetAdjectiveNoFlag] has synergetic trade policy systems with [TARGET_COUNTRY.GetName]."
20+
laws_synergize_trade_trigger_false_desc_first: "[COUNTRY.GetAdjectiveNoFlag] does not currently have synergetic trade policy systems with [TARGET_COUNTRY.GetName]."
21+
laws_synergize_trade_trigger_desc_third: "[COUNTRY.GetName] has synergetic trade policy systems with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
22+
laws_synergize_trade_trigger_false_desc_third: "[COUNTRY.GetName] does not currently have synergetic trade policy systems with [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
2323

2424
mog_syn_events.04.t: "Commercial Trade Synergy!"
2525
mog_syn_events.04.d: "The proud nation of [ROOT.GetCountry.GetName] has successfully completed the synergization of trade policies with [SCOPE.sCountry('synergize_trade_target_country').GetName]. [SCOPE.sCountry('synergize_trade_target_country').GetName] will thrive in eternal prosperity through increased cohesion with the homeland."

Subject Interaction Suite/localization/german/include_culture_00_l_german.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
include_primary_culture_trigger_desc_first: "[COUNTRY.GetAltName('NOM')] integriert seine [Concept('concept_primary_cultures', '$concept_primary_culture$')] [TARGET_COUNTRY.GetAltName('IN')]."
2020
include_primary_culture_trigger_false_desc_first: "[COUNTRY.GetAltName('NOM')] integriert seine [Concept('concept_primary_cultures', '$concept_primary_culture$')] [TARGET_COUNTRY.GetAltName('IN')] #b nicht mehr#!"
2121
include_primary_culture_trigger_desc_third: "[COUNTRY.GetAltName('NOM')] integriert seine [Concept('concept_primary_cultures', '$concept_primary_culture$')] in [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetName)]."
22-
include_primary_culture_trigger_false_desc_third: "[COUNTRY.GetAltName('NOM')] integriert seine [Concept('concept_primary_cultures', '$concept_primary_culture$')] #b nicht mehr#! [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetAltName('IN')]."
22+
include_primary_culture_trigger_false_desc_third: "[COUNTRY.GetAltName('NOM')] integriert seine [Concept('concept_primary_cultures', '$concept_primary_culture$')] #b nicht mehr#! [AddTextIf(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self),TARGET_COUNTRY.GetNameNoFlag)][AddTextIf(Not(ObjectsEqual(GetMetaPlayer.GetPlayedOrObservedCountry.Self, TARGET_COUNTRY.Self)),TARGET_COUNTRY.GetAltName('IN'))]."
2323

2424
ib_events.05.t: "Kulturelle Inklusion"
25-
ib_events.05.d: "[ROOT.GetCountry.GetAltName('NOM')] hat die kulturelle Inklusion für [SCOPE.sCountry('culture_include_country').GetAltName()] erfolgreich abgeschlossen. [SCOPE.sCountry('culture_include_country').GetAltName('NOM')] wird nun für immer gedeihen und die Kultur des Heimatlandes annehmen."
25+
ib_events.05.d: "[ROOT.GetCountry.GetAltName('NOM')] hat die kulturelle Inklusion für [SCOPE.sCountry('culture_include_country').GetAltName('NOM')] erfolgreich abgeschlossen. [SCOPE.sCountry('culture_include_country').GetAltName('NOM')] wird nun für immer gedeihen und die Kultur des Heimatlandes annehmen."
2626
ib_events.05.f: "„Lang lebe [ROOT.GetCountry.GetAltName('NOM')]!“"
2727
ib_events.05.a: "Gut gemacht."
2828

0 commit comments

Comments
 (0)