[flavor_tur.27] 迁都君士坦丁堡
时间范围:1338.1.1 - 1500.5.29(每月 100% 概率)
触发条件:
- 国家处于和平状态(
at_war = no)。 - 拥有君士坦丁堡地区(
owns = location:constantinople)。 - 首都不在君士坦丁堡地区(
capital != location:constantinople)。 - 安纳托利亚地区(
region:anatolia_region)内,至少有一个地区的优势宗教与本国宗教相同(dominant_religion ?= root.religion)。
关键效果:
- 选项 A (历史选项):
- 花费相当于3个月收入的金币(
change_gold_effect = { scale = -3 })。 - 将首都迁至君士坦丁堡(
set_capital = location:constantinople)。 - 君士坦丁堡地区获得持续20年的“活跃的苏丹敕令”修正(
tur_active_firman_modifier),并增加发展度(development_mild_bonus)。 - 君士坦丁堡所在省份的所有地区变为核心领土。
- 君士坦丁堡地区内,本国拥有的、规模最大的3个人口获得极高的满意度加成(
pop_satisfaction_extreme_bonus)。 - 如果旧首都(布尔萨)拥有“旧都影响力”修正(
influence_of_the_old_capital_modifier),则将其延长30年;否则,为其添加一个持续30年的该修正。
- 花费相当于3个月收入的金币(
- 选项 B:
- 君士坦丁堡所在省份的所有地区变为核心领土。
- 获得相当于君士坦丁堡地区人口数5倍的金币。
- 君士坦丁堡地区繁荣度轻微下降(
prosperity_mild_penalty)。
- 选项 C:
- 获得极高的威望加成(
prestige_extreme_bonus)。
- 获得极高的威望加成(
背景介绍: 1453年,奥斯曼帝国苏丹穆罕默德二世攻陷君士坦丁堡,标志着拜占庭帝国的终结。此事件为奥斯曼帝国提供了一个历史性的抉择:是否将帝国的行政中心从安纳托利亚的旧都迁至这座象征着罗马帝国遗产和欧亚大陆战略枢纽的伟大城市。迁都不仅意味着政治和军事重心的转移,也涉及对庞大帝国资源的重新调配和对新征服领土的整合。
完整事件代码:
flavor_tur.27 = {
hide_portraits = yes
type = country_event
title = flavor_tur.27.title
desc = flavor_tur.27.desc
historical_info = flavor_tur.27.historical_info
fire_only_once = yes
dynamic_historical_event = {
tag = TUR
from = 1338.1.1
to = 1500.5.29
monthly_chance = 100
}
trigger = {
at_war = no
owns = location:constantinople
capital != location:constantinople
region:anatolia_region = {
any_location_in_region = {
dominant_religion ?= root.religion
}
}
}
immediate = {
location:constantinople = { save_scope_as = constantinople_location }
region:balkan_region = {
ordered_country_with_capital_in_geography = {
order_by = total_population
max = 1
save_scope_as = escape_target
}
}
if = {
limit = { owns = location:bursa }
location:bursa = { save_scope_as = old_capital_scope }
}
}
option = {
name = flavor_tur.27.a
historical_option = yes
change_gold_effect = { scale = -3 }
set_capital = location:constantinople
scope:constantinople_location = {
add_location_modifier = {
modifier = tur_active_firman_modifier
years = 20
mode = add_and_extend
}
change_development = development_mild_bonus
custom_tooltip = {
text = tur_byzantion_becomes_core_tt
province = {
every_location_in_province = {
change_integration_level = core
}
}
}
ordered_pop = {
limit = { owner = root }
order_by = pop_size
max = 3
add_pop_satisfaction = pop_satisfaction_extreme_bonus
}
}
scope:old_capital_scope = {
if = {
limit = { has_location_modifier = influence_of_the_old_capital_modifier }
add_location_modifier = {
modifier = influence_of_the_old_capital_modifier
years = 30
mode = extend
}
}
else = {
add_location_modifier = {
modifier = influence_of_the_old_capital_modifier
years = 30
mode = replace
}
}
}
}
option = {
name = flavor_tur.27.b
scope:constantinople_location = {
custom_tooltip = {
text = tur_byzantion_becomes_core_tt
province = {
every_location_in_province = {
change_integration_level = core
}
}
}
}
add_gold = {
value = location:constantinople.population
multiply = 5
}
scope:constantinople_location = { change_prosperity = prosperity_mild_penalty }
}
option = {
name = flavor_tur.27.c
add_prestige = prestige_extreme_bonus
}
}