[flavor_chi_por.2] 澳门贸易协定
时间范围
无明确 from 和 to 日期限制,事件由前置事件触发,无 monthly_chance 概率。
触发条件
此事件为链式事件,由 flavor_chi_por.1 或类似前置事件触发,无独立 trigger 字段。通常需要满足以下前置条件(根据事件链逻辑推断):
- 葡萄牙(
scope:offering_country)向中国(事件接收国)提出在特定地点(scope:target_location)建立贸易据点的提议。 - 中国控制着目标地点。
关键效果
选项 A:接受提议
- 历史选项:未标注
historical_option = yes。 - 在目标地点(
scope:target_location)免费(cost_multiplier = 0)为提议国(scope:offering_country)瞬间建造特殊建筑building_type:chi_macau_port。 - 如果当前时代不是“传统时代”或“文艺复兴时代”,则社会价值观“外向 vs 内向”大幅向左移动(更倾向内向)。否则,获得少量威望(
prestige_weak_bonus)。 - 与提议国(
scope:offering_country)互相获得关系修正chi_mutual_trade_agreement_for_macau。 - 提议国设置本地变量
accepted_offer。
选项 B:拒绝提议
- 获得中等威望(
prestige_mild_bonus)。 - 如果当前时代处于“宗教改革时代”或更晚,则社会价值观“重商主义 vs 自由贸易”小幅向左移动(更倾向重商主义)。
后续事件
无论选择哪个选项,事件结束后都会立即、非静默地触发后续事件 flavor_chi_por.3 给提议国(scope:offering_country)。
背景介绍
此事件模拟了16世纪葡萄牙人寻求与中国建立正式贸易关系的历史进程。葡萄牙航海家抵达中国沿海后,试图通过外交提议获得一个稳定的贸易据点,最终演变为对澳门居住权的谈判。此事件代表了中国朝廷对葡萄牙人贸易请求的正式回应决策时刻,其选择将影响中西早期的贸易关系、中国对外政策倾向以及葡萄牙在远东的立足点。
完整事件代码
flavor_chi_por.2 = {
type = country_event
title = flavor_chi_por.2.title
desc = flavor_chi_por.2.desc
illustration_tags = {
10 = regular
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
}
option = {
name = flavor_chi_por.2.a
scope:target_location = {
construct_building = {
building_type = building_type:chi_macau_port
cost_multiplier = 0
cost_multiplier_reason = "game_concept_event"
owner = scope:offering_country
instant = yes
}
}
if = {
limit = {
NOR = {
current_age = age_1_traditions
current_age = age_2_renaissance
}
}
change_societal_value = {
type = outward_vs_inward
value = societal_value_large_move_to_left
}
}
else = {
add_prestige = prestige_weak_bonus
}
add_opinion_mutual_effect = {
modifier = chi_mutual_trade_agreement_for_macau
target = scope:offering_country
}
scope:offering_country = { set_local_variable = accepted_offer }
}
option = {
name = flavor_chi_por.2.b
add_prestige = prestige_mild_bonus
if = {
limit = {
current_age_or_later = { age = age_4_reformation }
}
change_societal_value = {
type = mercantilism_vs_free_trade
value = societal_value_minor_move_to_left
}
}
}
after = {
scope:offering_country = {
trigger_event_non_silently = { id = flavor_chi_por.3 }
}
}
}