[flavor_tur.71] 凯末尔·雷斯之死
时间范围:无明确时间范围(由事件 flavor_tur.70 触发)
触发概率:无 monthly_chance 字段,为一次性触发事件
触发条件:
- 角色
tur_kemal_reis必须存活。
关键效果:
- 选项 A (flavor_tur.71.a):
- 首都市场获得一个持续24个月的临时需求:
demand:heavy_ship_construction(重型舰船建造)。 - 损失一定数量的金钱(
change_gold_effect = { scale = -1 })。 - 历史选项:如果国家宗教属于穆斯林宗教组,则获得10点威望。
- 首都市场获得一个持续24个月的临时需求:
- 选项 B (flavor_tur.71.b):
- 损失一定数量的金钱(
change_gold_effect = { scale = -1 })。 - 如果国家宗教属于穆斯林宗教组,则社会价值观
mysticism_vs_jurisprudence(神秘主义 vs 法学)向“右”(即法学方向)微小移动。
- 损失一定数量的金钱(
- 选项 C (flavor_tur.71.c):
- 社会价值观
mysticism_vs_jurisprudence(神秘主义 vs 法学)向“左”(即神秘主义方向)微小移动。
- 社会价值观
背景介绍: 此事件标志着奥斯曼帝国著名海军将领、制图师和探险家凯末尔·雷斯的死亡。他以其在地中海的海军行动和对早期奥斯曼海军力量的贡献而闻名。他的去世可能引发关于帝国海军未来发展方向、资源分配以及宗教与社会价值观之间平衡的讨论。
完整事件代码:
flavor_tur.71 = { #The Death of Kemal Reis, triggered by flavor_tur.70
type = country_event
title = flavor_tur.71.title
desc = flavor_tur.71.desc
historical_info = flavor_tur.71.historical_info
trigger = {
character:tur_kemal_reis = {
is_alive = yes
}
}
immediate = {
character:tur_kemal_reis = { save_scope_as = kemal_reis }
kill_character = {
target = scope:kemal_reis
reason = drowning_sea
}
}
option = {
name = flavor_tur.71.a
capital.market = {
add_temporary_demand = {
type = demand:heavy_ship_construction
months = 24
}
}
change_gold_effect = { scale = -1 }
if = {
limit = {
religion.group = religion_group:muslim
}
add_prestige = 10
}
}
option = {
name = flavor_tur.71.b
change_gold_effect = { scale = -1 }
if = {
limit = {
religion.group = religion_group:muslim
}
change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }
}
}
option = {
name = flavor_tur.71.c
change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_left }
}
}