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_plc.19] 自由否决权

时间范围:1500.4.1 - 1821.1.1,每月 10% 概率触发

触发条件

  • 国家 未拥有 阶层特权:estate_privilege:liberum_veto(自由否决权)
  • 社会价值观:贵族主义 vs 财阀主义 (societal_value:aristocracy_vs_plutocracy) 小于或等于 -50

关键效果

  • 选项 A (flavor_plc.19.a):

    • 授予阶层特权:estate_privilege:liberum_veto(自由否决权)
    • (隐藏效果)设置变量:unlock_liberum_veto_variable
  • 选项 B (flavor_plc.19.b):

    • 为国家添加修正:plc_blackmail_of_the_nobles(贵族勒索),持续 50
    • 显示自定义提示:plc_take_the_privilege_to_remove_the_modifier
    • (隐藏效果)设置变量:unlock_liberum_veto_variable

背景介绍: 该事件模拟了波兰立陶宛联邦历史上著名的“自由否决权”制度。在贵族势力强大、王权相对衰弱的背景下,贵族阶层(施拉赤塔)通过“自由否决权”这一特权,使得议会中的任何一名议员都有权单独否决立法或决议,这极大地削弱了中央政府的决策效率和国家行动能力,是联邦后期政治混乱、国力衰退的重要原因之一。事件反映了贵族阶层如何利用其政治影响力,迫使君主在授予特权或承受长期政治内耗之间做出抉择。

完整事件代码

flavor_plc.19 = {
	type = country_event
	title = flavor_plc.19.title
	desc = flavor_plc.19.desc

	trigger = {
		NOT = { has_estate_privilege = estate_privilege:liberum_veto }
		societal_value:aristocracy_vs_plutocracy <= -50
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = PLC
		from = 1500.4.1
		to = 1821.1.1
		monthly_chance = 10
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	
	option = {
		name = flavor_plc.19.a

		hidden_effect = {
			set_variable = unlock_liberum_veto_variable
		}
		grant_estate_privilege = estate_privilege:liberum_veto
	}

	option = {
		name = flavor_plc.19.b

		hidden_effect = {
			set_variable = unlock_liberum_veto_variable
		}

		add_country_modifier = {
			mode = add_and_extend
			modifier = plc_blackmail_of_the_nobles
			years = 50
		}
		custom_tooltip = plc_take_the_privilege_to_remove_the_modifier
	}
}