flavor_eng.26 贸易竞争与《航海法案》
时间范围:1637.1.1 - 1837.1.1(每月 5% 概率)
触发条件:
- 国家为
ENG(英格兰)或GBR(大不列颠)。 - 拥有伦敦(
london)地区。 - 已采用政府改革
the_protectorate(护国公制)。 - 在阿姆斯特丹(
amsterdam)市场或伦敦(london)市场中,存在一个与我国为“对手或敌人”关系,且在该市场相对收入较高的商人。
关键效果:
- 选项 A (flavor_eng.26.a) - 历史选项:
- 如果目标国家未被我国实施贸易禁运,则对其施加为期25年的贸易禁运。
- 如果我国对目标国家没有“贸易冲突”宣战理由,则获得此宣战理由。
- 无论上述哪个条件触发,都会使社会思潮向 重商主义 方向移动。
- 如果目标国家已被禁运且我国已拥有贸易冲突宣战理由,则社会思潮会向 重商主义 方向大幅移动。
- 解锁政策效果:
act_of_navigation(《航海法案》)。
- 选项 B (flavor_eng.26.b):
- 使社会思潮向 自由贸易 方向移动。
- 为国家添加持续20年的修正:
open_trade_markets_modifier(开放贸易市场修正),效果为替换模式。 - 导致
burghers_estate(市民阶层)的阶层满意度遭受极端惩罚。
背景介绍: 在护国公时期,英格兰(及后来的大不列颠)的海外贸易面临来自荷兰等海上强国的激烈竞争。为了保护本国航运和贸易利益,排挤竞争对手,议会通过了以《航海法案》为代表的一系列贸易保护主义法律。该事件模拟了政府在国内商人阶层的压力下,面临的选择:是采取强硬的重商主义政策打击对手,还是推行更开放的贸易政策以换取更广泛的商业机会。
完整事件代码:
flavor_eng.26 = {
type = country_event
fire_only_once = yes
title = flavor_eng.26.title
desc = flavor_eng.26.desc
historical_info = flavor_eng.26.historical_info
dynamic_historical_event = {
tag = ENG
tag = GBR
from = 1637.1.1
to = 1837.1.1
monthly_chance = 5
}
trigger = {
owns = location:london
has_reform = government_reform:the_protectorate
OR = { #Find any rival or enemy who has relevant income to us in a vital market
location:amsterdam.market ?= {
any_merchant_in_market = { rival_or_enemy_with_relative_income_in_market = yes }
}
location:london.market ?= {
any_merchant_in_market = { rival_or_enemy_with_relative_income_in_market = yes }
}
}
}
illustration_tags = {
10 = angry
10 = exterior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
ruler_or_regent ?= { save_scope_as = target_character1 }
location:london.market = {
random_merchant_in_market = {
limit = { rival_or_enemy_with_relative_income_in_market = yes }
save_scope_as = target_country
ruler_or_regent ?= { save_scope_as = target_character2 }
}
}
location:amsterdam.market = {
random_merchant_in_market = {
limit = { rival_or_enemy_with_relative_income_in_market = yes }
save_scope_as = target_country
ruler_or_regent ?= { save_scope_as = target_character2 }
}
}
}
option = {
name = flavor_eng.26.a
historical_option = yes
if = {
limit = {
scope:target_country = {
NOT = { is_embargoed_by = root }
}
}
create_relation = {
first = scope:recipient
second = scope:target
type = relation_type:embargo_nation
years = 25
}
change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_left }
}
else_if = {
limit = {
NOT = {
has_casus_belli_of_type_on = { type = casus_belli:cb_trade_conflict target = scope:target_country }
}
}
add_casus_belli = {
target = scope:target_country
type = casus_belli:cb_trade_conflict
}
change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_left }
}
else = {
change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_large_move_to_left }
}
unlock_policy_effect = { type = act_of_navigation }
}
option = {
name = flavor_eng.26.b
change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_right }
add_country_modifier = {
modifier = open_trade_markets_modifier
years = 20
mode = replace
}
add_estate_satisfaction = {
type = estate_type:burghers_estate
value = estate_satisfaction_extreme_penalty
}
}
}