[flavor_mos.113] 圣彼得堡的建立
时间范围:1712.1.1 - 1800.1.1(每月 5% 概率触发)
触发条件:
- 事件仅对
MOS(莫斯科)或RUS(俄罗斯)国家标签有效。 - 国家必须拥有并控制
neva地区,且该地区不是首都。 neva地区的发展度必须大于等于 5。- 国家当前未处于战争状态。
关键效果:
-
选项 A (历史选项):
- 将首都迁至
neva地区。 - 如果
neva地区的等级为town或city,则将其等级提升至town。 - 将
neva地区重命名为st_petersburg。 - 为该地区增加
prosperity_very_weak_bonus(非常微弱的繁荣度加成)。 - 显示自定义提示
flavor_mos.113.tt1。 - AI 选择此选项的概率因子为 1。
- 将首都迁至
-
选项 B:
- 触发一次持续 24 个月的移民潮,从
neva地区向当前首都迁移 0.25 单位人口。 - 使国家政策倾向向“孤立主义”偏移。
- 显示自定义提示
flavor_mos.113.tt2。 - AI 选择此选项的概率因子为 0.5。
- 触发一次持续 24 个月的移民潮,从
背景介绍: 此事件模拟了俄罗斯历史上彼得大帝在涅瓦河口建立新首都圣彼得堡的关键决策。面对寻求现代化和“打开通往欧洲的窗口”的战略需求,统治者可以选择在波罗的海沿岸建设一个全新的行政与海军中心,以强化对西方的联系与影响力;或者选择更为保守的路径,维持旧都莫斯科的核心地位,并将资源用于内部整合。
完整事件代码:
flavor_mos.113 = {
type = country_event
title = flavor_mos.113.title
desc = flavor_mos.113.desc
fire_only_once = yes
dynamic_historical_event = {
tag = MOS
tag = RUS
from = 1712.1.1
to = 1800.1.1
monthly_chance = 5
}
trigger = {
location:neva = {
owner = root
controller = root
is_capital = no
development >= 5
}
at_war = no
}
immediate = {
location:neva = {
save_scope_as = target_location
}
root = { save_scope_as = target_root_country }
capital = {
save_scope_as = capital
}
}
option = {
name = flavor_mos.113.a
historical_option = yes
location:neva = {
if = {
limit = {
NOR = {
location_rank = location_rank:town
location_rank = location_rank:city
}
}
change_location_rank = location_rank:town
}
rename_location = st_petersburg
change_prosperity = prosperity_very_weak_bonus
}
set_capital = location:neva
custom_tooltip = flavor_mos.113.tt1
ai_chance = {
factor = 1
}
}
option = {
name = flavor_mos.113.b
add_migration = {
owner = root
from = scope:target_location.province_definition
to = capital.province_definition
amount = 0.25
months = 24
}
nudge_towards_isolationism = yes
custom_tooltip = flavor_mos.113.tt2
ai_chance = {
factor = 0.5
}
}
historical_info = flavor_mos.113.historical_info
}