[flavor_tur.126] 巴巴里水手
时间范围
1637.1.1 - 1737.1.1,每月 5% 概率触发
触发条件
- 国家社会价值观:
land_vs_naval(陆军与海军倾向)小于 0。 - 存在任意一个竞争对手,其海军规模大于本国的预期海军规模。
- 存在任意一个已知国家,其满足以下所有条件:
- 是巴巴里国家(
is_barbary_state = yes)。 - 不是本国的竞争对手。
- 未与本国处于战争状态。
- 对本国的好感度低于 80。
- 是巴巴里国家(
关键效果
选项 A (flavor_tur.126.a)
- 目标国家效果:对目标巴巴里国家添加名为
opinion_ottoman_capitulation的好感度修正,并为其添加持续15年的merchant_benefits国家修正。 - 本国效果:获得相当于本国12个月水手收入的水手数量,并获得一次
navy_tradition_severe_bonus(海军传统大幅增益)。
选项 B (flavor_tur.126.b)
- 本国效果:
- 损失相当于2倍规模的金币。
- 获得一次
navy_tradition_severe_bonus(海军传统大幅增益)。 - 社会价值观
land_vs_naval向右侧(即更倾向海军)进行大幅移动。 - 首都市场在24个月内,增加对
heavy_ship_construction(重型舰船建造)的临时需求。
选项 C (flavor_tur.126.c)
- 本国效果:获得一次
prestige_weak_bonus(威望小幅增益)。
背景介绍
在17至18世纪,奥斯曼帝国面临来自地中海及其他海域的海上竞争压力。为了增强海军力量,帝国考虑利用北非(巴巴里海岸)地区经验丰富的水手和私掠者资源。这一事件反映了奥斯曼帝国在海军建设上的战略选择:是拉拢巴巴里国家以获取人力,还是投入巨资自行发展海军,亦或是维持现状。
完整事件代码
flavor_tur.126 = { #Barbary Sailors
type = country_event
title = flavor_tur.126.title
desc = flavor_tur.126.desc
historical_info = flavor_tur.126.historical_info
fire_only_once = yes
dynamic_historical_event = {
tag = TUR
from = 1637.1.1
to = 1737.1.1
monthly_chance = 5
}
trigger = {
societal_value:land_vs_naval < 0
any_rival = {
navy_size > root.expected_navy_size
}
any_known_country = {
is_barbary_state = yes
NOR = {
is_rival_of = root
is_at_war_with = root
}
opinion = { target = root value < 80 }
}
}
immediate = {
random_rival = {
limit = {
navy_size > root.expected_navy_size
}
save_scope_as = naval_adversary
}
ordered_known_country = {
limit = {
is_barbary_state = yes
NOR = {
is_rival_of = root
is_at_war_with = root
}
opinion = { target = root value < 80 }
}
order_by = {
value = expected_navy_size
multiply = "opinion(root)"
}
max = 1
save_scope_as = target_country
}
}
option = {
name = flavor_tur.126.a
scope:target_country = {
add_opinion = { target = root modifier = opinion_ottoman_capitulation }
add_country_modifier = { modifier = merchant_benefits years = 15 mode = add_and_extend }
}
add_sailors = { value = root.monthly_sailors multiply = 12 }
add_navy_tradition = navy_tradition_severe_bonus
}
option = {
name = flavor_tur.126.b
change_gold_effect = { scale = -2 }
add_navy_tradition = navy_tradition_severe_bonus
change_societal_value = { type = land_vs_naval value = societal_value_large_move_to_right }
capital.market = {
add_temporary_demand = {
type = demand:heavy_ship_construction
months = 24
}
}
}
option = {
name = flavor_tur.126.c
add_prestige = prestige_weak_bonus
}
}