
Situation
Columbian Exchange
Contact with new foreign peoples from beyond the sea has opened our country to novel crops and animals from these faraway lands, and has brought great opportunities to develop trade relationships that provide our merchants access to strange and exotic new products.
AbsolutismAgecan startis_in_columbian_exchangeVariableon ended, on monthly, on startDefinitionin_game/common/situations/columbian_exchange.txt:1
3hint_tag = hint_columbian_exchange
5can_start = {
10continent:america = {
}
}
22visible = {
24trigger_if = {
28any_market_present_in_country = {
29save_temporary_scope_as = temp_market
30any_goods = {
31has_origin_in_old_world = yes
33save_temporary_scope_as = temp_good
34custom_tooltip = columbian_exchange_old_world_goods_traded_tt An Old World good is produced or traded in our market
35hidden_trigger = {
36scope:temp_market ?= {
37OR = {
38is_produced_in_market = scope:temp_good
39is_traded_in_market = scope:temp_good
}
}
}
}
}
}
47trigger_else = {
48any_market_present_in_country = {
49save_temporary_scope_as = temp_market
50any_goods = {
51has_origin_in_new_world = yes
53save_temporary_scope_as = temp_good
54custom_tooltip = columbian_exchange_new_world_goods_traded_tt A New World good is produced or traded in our market
55hidden_trigger = {
56scope:temp_market ?= {
57OR = {
58is_produced_in_market = scope:temp_good
59is_traded_in_market = scope:temp_good
}
}
}
}
}
}
}
69on_start = {
70every_country = {
71limit = {
73any_owned_location = {
74continent = continent:america
75population > 0
}
}
79if = {
80limit = {
82any_market_present_in_country = {
83save_temporary_scope_as = temp_market
84any_goods = {
85has_origin_in_old_world = yes
87save_temporary_scope_as = temp_good
88scope:temp_market = {
89OR = {
90is_produced_in_market = scope:temp_good
91is_traded_in_market = scope:temp_good
}
}
}
}
}
}
101else_if = {
102limit = {
104any_market_present_in_country = {
105save_temporary_scope_as = temp_market
106any_goods = {
107has_origin_in_new_world = yes
109save_temporary_scope_as = temp_good
110scope:temp_market = {
111OR = {
112is_produced_in_market = scope:temp_good
113is_traded_in_market = scope:temp_good
}
}
}
}
}
}
}
}
126on_monthly = {
127every_country = {
128limit = {
130any_owned_location = {
131continent = continent:america
132population > 0
}
}
136if = {
137limit = {
139any_market_present_in_country = {
140save_temporary_scope_as = temp_market
141any_goods = {
142has_origin_in_old_world = yes
144save_temporary_scope_as = temp_good
145scope:temp_market = {
146OR = {
147is_produced_in_market = scope:temp_good
148is_traded_in_market = scope:temp_good
}
}
}
}
}
}
158else_if = {
159limit = {
161any_market_present_in_country = {
162save_temporary_scope_as = temp_market
163any_goods = {
164has_origin_in_new_world = yes
166save_temporary_scope_as = temp_good
167scope:temp_market = {
168OR = {
169is_produced_in_market = scope:temp_good
170is_traded_in_market = scope:temp_good
}
}
}
}
}
}
}
}
183tooltip = {
}
187on_ended = {
188every_country = {
}
}
196map_color = {
197if = {
198limit = {
199owner ?= {
}
}
204value = color_nw_country
}
206else_if = {
207limit = {
208owner ?= {
}
}
213value = color_ow_country
}
216else = {
217value = define:NMapColors|DEFAULT_COLOR
}
}
221legend_key = {
222desc = "new_world_goods"
223color = color_nw_country
}
226legend_key = {
227desc = "old_world_goods"
228color = color_ow_country
}