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_hol.34 尼德兰谷物贸易的兴起

时间范围:1400.1.1 - 1500.1.1(每月 100% 概率)

触发条件

  • 如果当前国家是荷兰(HOL),则尼德兰(NED)国家不能存在。
  • 国家拥有变量 ned_grain_trade_start_flag
  • 国家在吕贝克(lubeck)市场的商人力量大于25。
  • 国家在里加(riga)市场的商人力量大于25。

关键效果

  • 选项 A
    • 所有由本国拥有、且文化属于尼德兰文化组的民众,获得极高的满意度加成。
    • 为国家添加名为 ned_secured_baltic_grain 的修正,持续5年(若已存在则叠加并延长持续时间)。

背景介绍: 在15世纪,低地国家(特别是荷兰地区)的城市化进程加速,对粮食的需求日益增长。波罗的海地区,尤其是吕贝克和里加,是当时欧洲重要的谷物出口中心。荷兰商人凭借其航运优势,积极介入并主导了这条利润丰厚的“波罗的海谷物贸易”航线。此事件标志着荷兰商人成功地在波罗的海关键市场建立了稳固的商业网络,为本国获取了稳定的粮食供应,并极大地促进了国内经济的繁荣与民众的福祉。

完整事件代码

flavor_hol.34 = {
	hide_portraits = yes
	type = country_event

	title = flavor_hol.34.title
	desc = flavor_hol.34.desc

	dynamic_historical_event = {
		tag = NED
		tag = HOL
		from = 1400.1.1
		to = 1500.1.1
		monthly_chance = 100
	}

	fire_only_once = yes

	illustration_tags = {
		10 = happy
		10 = exterior
	}

	trigger = {
		trigger_if = {
			limit = { this = c:HOL }
			NOT = { country_exists = c:NED }
		}
		has_variable = ned_grain_trade_start_flag
		location:lubeck.market = {
			"merchant_power_in_market(root)" > 25
		}
		location:riga.market = {
			"merchant_power_in_market(root)" > 25
		}
	}

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

	option = {
		name = flavor_hol.34.a

		custom_tooltip = {
			text = NED_ALL_DUTCH_POPS_BECOME_HAPPIER
			every_owned_location = {
				limit = {
					any_pop = {
						culture = { has_culture_group = culture_group:netherlandish_group }
					}
				}
				every_pop = {
					limit = {
						owner = root
						culture = { has_culture_group = culture_group:netherlandish_group }
					}
					add_pop_satisfaction = pop_satisfaction_extreme_bonus
				}
			}
		}
		add_country_modifier = {
			modifier = ned_secured_baltic_grain years = 5 mode = add_and_extend
		}
	}
}