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_rus.6 伊凡雷帝的“重臣会议”改革

时间范围:1540.1.1 - 1560.1.1(每月 10% 概率触发)

触发条件

  • 国家没有摄政王。
  • 满足以下任一条件:
    • 贵族阶层(nobles_estate)的势力值大于等于 0.25。
    • 社会价值观“中央集权 vs 地方分权”的数值大于等于 10。

关键效果

  • 选项 A (历史选项)
    • 贵族阶层满意度大幅下降(estate_satisfaction_severe_penalty)。
    • 启用“重臣会议”改革(设置变量 chosen_rada = 1)。
    • 将两位新创建的人物——阿列克谢·阿达舍夫(贵族,能力:行政 67 / 外交 64 / 军事 68)和西尔维斯特神父(教士,能力:行政 87 / 外交 88 / 军事 91)——招募至本国。
  • 选项 B
    • 贵族阶层满意度大幅提升(estate_satisfaction_severe_bonus)。
    • 秘密处决阿列克谢·阿达舍夫和西尔维斯特神父。

背景介绍: 该事件模拟了沙皇伊凡四世(伊凡雷帝)统治中期面临的关键抉择。随着贵族势力膨胀或地方分权思想盛行,沙皇面临是否进行重大政治改革的压力。历史路径是伊凡雷帝在1549年左右建立了“重臣会议”(Избранная рада),这是一个由亲近顾问(如阿达舍夫和西尔维斯特)组成的非正式政府,旨在推行一系列中央集权、法律和军事改革,以巩固沙皇权力并削弱大贵族(波雅尔)的影响力。选择拒绝改革则代表沙皇选择安抚贵族,维持旧有权力结构。

完整事件代码

flavor_rus.6 = {
	type = country_event
	title = flavor_rus.6.title
	desc = flavor_rus.6.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1540.1.1
		to = 1560.1.1
		monthly_chance = 10
	}

	trigger = {
		has_regent = no
		OR = {
			"estate_power(estate_type:nobles_estate)" >= 0.25
			societal_value:centralization_vs_decentralization >= 10
		}
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {

		create_character = {
			first_name = name_alexander
			last_name = adashev
			adm = 67
			dip = 64
			mil = 68
			estate = estate_type:nobles_estate
			birth_location = location:moscow
			save_scope_as = alexi_adashev
			script = rus_alexi_adashev
			create_in_limbo = yes
		}
		create_character = {
			first_name = name_silvester
			adm = 87
			dip = 88
			mil = 91
			estate = estate_type:clergy_estate
			birth_location = location:moscow
			save_scope_as = sylvestr_the_priest
			script = rus_sylvestr_the_priest
			create_in_limbo = yes
		}
		capital = {
			save_scope_as = target_location
		}

		root = { save_scope_as = target_root_country }

		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_rus.6.a
		historical_option = yes

		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_penalty
		}
		custom_tooltip = {
			text = enable_chosen_rada_reform
			set_variable = { name = chosen_rada value = 1 }
		}
		scope:alexi_adashev = { move_country = root }
		scope:sylvestr_the_priest = { move_country = root }

	}

	option = {
		name = flavor_rus.6.b

		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_bonus
		}
		hidden_effect = { kill_character_silently = scope:alexi_adashev }
		hidden_effect = { kill_character_silently = scope:sylvestr_the_priest }
		custom_tooltip = flavor_rus.6.tt3

	}

	historical_info = flavor_rus.6.historical_info

}