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.6 北德维纳危机

时间范围:1337.1.1 - 1837.1.1,每月 1% 概率触发

触发条件

  • 国家拥有的地块数量少于 80 个。
  • 国家拥有的非农村地块数量少于 5 个。
  • pomorye_area 地区内,存在至少 50% 的地块不属于本国,且其所有者:
    • 不是本国的附庸。
    • 拥有 arkhangelsk 地块。
  • velsk_province 省份内,存在至少 50% 的地块不属于本国,且其所有者:
    • 不是本国的附庸。
    • 拥有 arkhangelsk 地块。
  • ustye_province 省份内,存在至少 50% 的地块不属于本国,且其所有者:
    • 不是本国的附庸。
    • 拥有 arkhangelsk 地块。
  • arkhangelsk 地块不属于本国,且其所有者:
    • 不是本国的附庸。
    • 拥有 arkhangelsk 地块。
    • 未与本国处于联合统治中。
    • 未与本国处于停战状态。

关键效果

  • 选项 A (历史选项)
    • 名称:flavor_nov.6.a
    • 效果:
      • 增加少量稳定度惩罚。
      • arkhangelsk 地块的所有者(被标记为 dvina_crisis_cause)在 7 天后静默触发事件 flavor_nov.7
  • 选项 B
    • 名称:flavor_nov.6.b
    • 效果:
      • 增加大量稳定度惩罚。
      • 减少 12 金币。

背景介绍: 该事件模拟了诺夫哥罗德共和国在其北部领土,特别是通往白海的北德维纳河流域,面临外部势力侵蚀的危机。历史上,诺夫哥罗德依赖其广袤的北方领土获取毛皮等珍贵资源,并控制通往北冰洋的贸易路线。随着莫斯科公国等邻近势力的崛起,诺夫哥罗德对这些关键地区的控制权时常受到挑战,可能导致其经济命脉和战略纵深受损。

完整事件代码

flavor_nov.6 = {
	type = country_event
	fire_only_once = yes
	title = flavor_nov.6.title
	desc = flavor_nov.6.desc
	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_fur.dds"

	dynamic_historical_event = {
		tag = NOV
		from = 1337.1.1
		to = 1837.1.1
		monthly_chance = 1
	}
	trigger = {
		num_locations < 80
		num_of_non_rural < 5
		area:pomorye_area = {
			any_location_in_area = {
				percent >= 0.5
				NOT = { owner ?= root }
				owner ?= {
					NOT = { is_subject_of = root }
					owns = location:arkhangelsk
				}
			}
		}
		province_definition:velsk_province = {
			any_location_in_province_definition = {
				percent >= 0.5
				NOT = { owner = root }
				owner = {
					NOT = { is_subject_of = root }
					owns = location:arkhangelsk
					#Might be a problem in case Novgorod loses its eastern parts to a coalition of several different principalities, but this is more of a niche fringe case
					#In most cases, Novgorod will lose it all to a growing Muscovy
				}
			}
		}
		province_definition:ustye_province = {
			any_location_in_province_definition = {
				percent >= 0.5
				NOT = { owner = root }
				owner = {
					NOT = { is_subject_of = root }
					owns = location:arkhangelsk
				}
			}
		}
		location:arkhangelsk = {
			not = { owner = root }
			owner = {
				NOT = { is_subject_of = root }
				owns = location:arkhangelsk
				NOT = { in_union_with = root }
				NOT = {
					has_truce_with = root
				}
			}
		}
	}
	immediate = {
		location:arkhangelsk = {
			owner = {
				save_scope_as = dvina_crisis_cause
			}
		}
		save_scope_as = dvina_crisis_target
	}
	#We must demand these lands back!
	option = {
		name = flavor_nov.6.a
		historical_option = yes
		ai_chance = {
			factor = 1
		}
		add_stability = stability_mild_penalty
		custom_tooltip = {
			text = flavor_nov.6.a.tt
			scope:dvina_crisis_cause = {
				trigger_event_silently = {
					id = flavor_nov.7
					days = 7
				}
			}
		}
		ai_chance = {
			factor = 1
		}
	}
	#There is nothing we can do about it
	option = {
		name = flavor_nov.6.b
		add_stability = stability_extreme_penalty
		change_gold_effect = { scale = -12 }
	}
}