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_nov.111] 诺夫哥罗德扩张

时间范围

1360.1.1 - 1481.1.1,每月 6% 概率触发

触发条件

  • 国家拥有统治者
  • 稳定度大于 50
  • 未处于战争状态
  • 拥有 novgorod 地区
  • 政府类型为共和国

关键效果

  • 选项 A:我们应当将这些外围地区纳入诺夫哥罗德的影响之下

    • 效果:为国家添加名为 nov_expand_central_influence 的修正,持续 20 年
  • 选项 B:允许外围地区保留其自治权

    • 效果:为国家添加名为 nov_allow_self_governance 的修正,持续 20 年

背景介绍

在14至15世纪,诺夫哥罗德共和国作为东欧重要的贸易与政治实体,面临着如何管理其广阔领土与外围地区的抉择。事件反映了诺夫哥罗德统治阶层在中央集权与地方自治之间的政策权衡,这关系到共和国对北方领土的控制力与长期稳定。

完整事件代码

flavor_nov.111 = { # Expanding Novgorod's Reach
	type = country_event
	title = flavor_nov.111.title
	desc = flavor_nov.111.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = NOV
		from = 1360.1.1
		to = 1481.1.1
		monthly_chance = 6
	}

	trigger = {
		has_ruler = yes
		stability > 50
		at_war = no
		owns = location:novgorod
		government_type = government_type:republic
	}

	immediate = {
		ruler ?= {
			save_scope_as = our_ruler
		}
		location:novgorod= {
			save_scope_as = target_location
		}
	}

	option = { # We should bring these outer regions under Novgorod's influence
		name = flavor_nov.111.a
		add_country_modifier = { modifier = nov_expand_central_influence years = 20 mode = add }
	}
	option = { # Allow the outer regions to retain their autonomy
		name = flavor_nov.111.b
		add_country_modifier = { modifier = nov_allow_self_governance years = 20 mode = add }
	}
}