[flavor_hol.31] 阿姆斯特丹港口发展
时间范围
1400.1.1 - 1600.1.1(每月 1% 概率)
触发条件
- 控制阿姆斯特丹(
owns = location:amsterdam) - 已拥有科技“港口管理局”(
has_advance = port_authority_advance) - 若当前国家为荷兰(
c:HOL),则尼德兰(c:NED)不能存在
关键效果
选项 A
- 目标地点(阿姆斯特丹):
- 获得温和发展度加成(
change_development = development_mild_bonus) - 若已有“港口管理局”建筑,则提升其等级 1 级
- 若没有“港口管理局”建筑,则以 40% 成本(理由:市民阶层赞助)建造该建筑
- 获得温和发展度加成(
- 社会价值观“陆军 vs 海军”向右移动(倾向海军)(
societal_value_move_to_right) - 损失金钱(
change_gold_effect = { scale = -3 })
选项 B
- 社会价值观“陆军 vs 海军”向左移动(倾向陆军)(
societal_value_move_to_left)
背景介绍
在 15 至 17 世纪,低地国家凭借其优越的地理位置和先进的航海技术,逐渐成为欧洲重要的贸易与航运中心。阿姆斯特丹作为该地区的核心港口,其基础设施的完善与扩张对国家的海上力量、贸易网络乃至社会价值观的取向都产生了深远影响。此事件模拟了当地市民阶层(市民阶层)对港口发展的投资与支持,以及国家在陆军与海军发展侧重点上的战略抉择。
完整事件代码
flavor_hol.31 = {
hide_portraits = yes
type = country_event
title = flavor_hol.31.title
desc = flavor_hol.31.desc
fire_only_once = yes
dynamic_historical_event = {
tag = NED
tag = HOL
from = 1400.1.1
to = 1600.1.1
monthly_chance = 1
}
illustration_tags = {
10 = regular
10 = exterior
}
trigger = {
trigger_if = {
limit = { this = c:HOL }
NOT = { country_exists = c:NED }
}
owns = location:amsterdam
has_advance = port_authority_advance
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
ruler_or_regent ?= {
save_scope_as = target_character
}
location:amsterdam = {
save_scope_as = target_location
}
}
option = {
name = flavor_hol.31.a
scope:target_location = {
change_development = development_mild_bonus
if = {
limit = {
has_building = building_type:port_authority
}
change_building_level_in_location = {
building = building_type:port_authority
value = 1
}
}
else = {
construct_building = {
building_type = building_type:port_authority
cost_multiplier = 0.4
cost_multiplier_reason = "burghers_cheap_sponsorship"
}
}
}
change_societal_value = {
type = land_vs_naval
value = societal_value_move_to_right
}
change_gold_effect = { scale = -3
}
}
option = {
name = flavor_hol.31.b
change_societal_value = {
type = land_vs_naval
value = societal_value_move_to_left
}
}
}