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.7 曼哈顿开发

时间范围

1550.1.1 - 1800.1.1,每月 2% 概率

触发条件

  • 国家拥有曼哈顿地区

关键效果

选项 A (flavor_ned.7.a)

  • 若曼哈顿地区当前不是城市等级,则将其提升为城市等级
  • 大幅提升曼哈顿地区的发展度
  • 国库减少 2 年收入
  • 在 100 个月内,从首都省份向曼哈顿省份迁移 5% 的本国文化人口

选项 B (flavor_ned.7.b)

  • 国家威望受到轻度惩罚

背景介绍

该事件模拟了荷兰共和国(NED)在殖民时期对北美曼哈顿地区的开发决策。在1550年至1800年间,荷兰作为海上贸易强国,其殖民公司(如荷兰西印度公司)积极在北美建立据点。曼哈顿(今纽约曼哈顿)是荷兰在新尼德兰殖民地的核心,荷兰在此建立了新阿姆斯特丹定居点,并通过投资基础设施、吸引移民来促进该地区的经济发展。此事件反映了荷兰殖民者面临的选择:是投入资源加速开发这片潜在的经济要地,还是采取更为保守的策略。

完整事件代码

flavor_ned.7 = {
	hide_portraits = yes
	type = country_event

	title = flavor_ned.7.title
	desc = flavor_ned.7.desc

	fire_only_once = yes

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

	trigger = {
		owns = location:manhattan
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

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

		location:manhattan = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_ned.7.a

		scope:target_location = {
			if = {
				limit = {
					NOT = { location_rank = location_rank:city }
				}
				change_location_rank = location_rank:city
			}

			change_development = development_severe_bonus
		}

		change_gold_effect = { scale = -2 }

		add_migration = {
			owner = this
			from = root.capital.province_definition
			to = scope:target_location.province_definition
			culture = root.culture
			amount = 0.05
			months = 100
		}
	}

	option = {
		name = flavor_ned.7.b

		add_prestige = prestige_mild_penalty
	}
}