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.2 承认普斯科夫独立

时间范围:1345.1.1 - 1360.1.1,每月 5% 概率触发

触发条件

  • 国家 PSK(普斯科夫)必须存在。
  • 国家 PSK 是事件触发国(诺夫哥罗德)的附庸。
  • 国家 PSK 与事件触发国(诺夫哥罗德)未处于战争状态。

关键效果

  • 选项 A:承认他们的独立。(历史选项)
    • 取消 PSK 的附庸地位。
    • 使 PSK 对事件触发国产生“诺夫哥罗德承认了我们的独立”的正面意见修正。
    • 事件触发国获得政府权力奖励。
    • 事件触发国获得大量稳定度奖励。
    • 隐藏效果:如果 PSK 不是共和制政府,将在10天后静默触发事件 flavor_psk.1
  • 选项 B:重申我们对普斯科夫的权威!
    • 自定义提示文本。
    • 隐藏效果:PSK 将在30天后静默触发事件 flavor_nov.3

背景介绍: 在14世纪中叶,诺夫哥罗德共和国与其重要的附庸城邦普斯科夫之间的关系处于一个关键节点。普斯科夫在诺夫哥罗德的保护下逐渐发展,但其独立倾向也在增长。此事件模拟了诺夫哥罗德统治者面临的选择:是顺应时势,正式承认普斯科夫的独立以换取友好关系与内部稳定;还是强行重申宗主权,可能导致进一步的冲突与动荡。

完整事件代码

flavor_nov.2 = {
	type = country_event
	fire_only_once = yes
	title = flavor_nov.2.title
	desc = flavor_nov.2.desc
	image = "gfx/interface/illustrations/government/diplomacy_illustration.dds"

	
	dynamic_historical_event = {
		tag = NOV
		from = 1345.1.1
		to = 1360.1.1
		monthly_chance = 5
	}
	trigger = {
		country_exists = c:PSK
		c:PSK = {
			is_subject_of = root
			NOT = { is_at_war_with = root }
		}
	}
	immediate = {
		c:PSK = {
			save_scope_as = pskov_country
		}
		root = {
			save_scope_as = overlord_country
		}
	}
	#Acknowledge their Independence.
	option = {
		name = flavor_nov.2.a
		historical_option = yes
		ai_chance = {
			factor = 1
		}
		cancel_subject = scope:pskov_country
		reverse_add_opinion = {
			target = scope:pskov_country
			modifier = nov_acknowledged_our_independence
		}
		add_government_power = government_power_ultimate_bonus
		add_stability = stability_extreme_bonus
		hidden_effect = {
			scope:pskov_country = {
				if = {
					limit = {
						NOT = { government_type = government_type:republic }
					}
					trigger_event_silently = {
						id = flavor_psk.1
						days = 10
					}
				}
			}
		}
		ai_chance = {
			factor = 1
		}
	}
	#Re-assert our authority over Pskov!
	option = {
		name = flavor_nov.2.b
		custom_tooltip = {
			text = flavor_nov.2.b.tt
			scope:pskov_country = {
				trigger_event_silently = {
					id = flavor_nov.3
					days = 30
				}
			}
		}
		ai_chance = {
			factor = 1
		}
	}
}