Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

flavor_ned.10 荷兰海军部建设

时间范围:1550.1.1 - 1800.1.1,每月 2% 概率触发

触发条件

  • 国家首都拥有至少一级 admiralty 建筑。
  • 国家拥有以下所有省份:
    • 哈灵根 (Harlingen)
    • 霍伦 (Hoorn)
    • 鹿特丹 (Rotterdam)
    • 米德尔堡 (Middelburg)
    • 阿姆斯特丹 (Amsterdam)

关键效果

  • 选项 A
    • 在以下非首都省份以半价(成本乘数 0.5)建造特定海军部建筑:
      • 哈灵根:弗里斯兰海军部 (Friesland Admiralty)
      • 霍伦:西弗里斯兰海军部 (West Friesland Admiralty)
      • 鹿特丹:鹿特丹海军部 (Rotterdam Admiralty)
      • 米德尔堡:泽兰海军部 (Zeeland Admiralty)
      • 阿姆斯特丹:阿姆斯特丹海军部 (Amsterdam Admiralty)
  • 选项 B
    • 设置变量 unified_dutch_admiralties
    • 显示自定义提示 NED_UNLOCKS_UNIFIED_ADMIRALTIES_GOV_REFORM

背景介绍: 该事件模拟了荷兰共和国时期,各省份海军部(Admiralty)的建立与发展。荷兰的五个主要港口城市(哈灵根、霍伦、鹿特丹、米德尔堡、阿姆斯特丹)各自拥有独立的海军部,负责管理海军事务、征收关税和建造舰船。这些海军部在荷兰的海洋贸易和军事扩张中扮演了核心角色,是荷兰“黄金时代”海上霸权的重要支柱。事件反映了国家在整合这些分散的海军力量时面临的选择:是维持各省份海军部的半独立运作,还是推动建立一个更统一的中央海军管理体系。

完整事件代码

flavor_ned.10 = {
	type = country_event

	title = flavor_ned.10.title
	desc = flavor_ned.10.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = NED
		from = 1550.1.1
		to = 1800.1.1
		monthly_chance = 2
	}

	trigger = {
		capital = {
			has_building_with_at_least_one_level = admiralty
		}
		owns = location:harlingen
		owns = location:hoorn
		owns = location:rotterdam
		owns = location:middelburg
		owns = location:amsterdam
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_ned.10.a

		if = {
			limit = {
				location:harlingen = {
					is_capital = no
				}
			}
			location:harlingen = {
				construct_building = {
					building_type = building_type:friesland_admiralty
					cost_multiplier = 0.5
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
		}
		if = {
			limit = {
				location:hoorn = {
					is_capital = no
				}
			}
			location:hoorn = {
				construct_building = {
					building_type = building_type:west_friesland_admiralty
					cost_multiplier = 0.5
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
		}
		if = {
			limit = {
				location:rotterdam = {
					is_capital = no
				}
			}
			location:rotterdam = {
				construct_building = {
					building_type = building_type:rotterdam_admiralty
					cost_multiplier = 0.5
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
		}
		if = {
			limit = {
				location:middelburg = {
					is_capital = no
				}
			}
			location:middelburg = {
				construct_building = {
					building_type = building_type:zeeland_admiralty
					cost_multiplier = 0.5
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
		}
		if = {
			limit = {
				location:amsterdam = {
					is_capital = no
				}
			}
			location:amsterdam = {
				construct_building = {
					building_type = building_type:amsterdam_admiralty
					cost_multiplier = 0.5
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
		}
	}

	option = {
		name = flavor_ned.10.b

		set_variable = unified_dutch_admiralties
		custom_tooltip = NED_UNLOCKS_UNIFIED_ADMIRALTIES_GOV_REFORM
	}
}