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_pol.23] 波兰议会分歧

时间范围
事件可在游戏内任意时间触发,无具体 fromto 日期限制。触发后,将设置365天的冷却变量。

触发条件

  • 国家满足以下任一特权:
    • 拥有特权 pacta_conventa
    • 拥有特权 liberum_veto
    • 拥有特权 nieszawa_privileges
  • 同时,国家处于以下任一冷却状态:
    • 未拥有变量 pol_sejm_disagrees_cooldown
    • 未拥有变量 pol_sejm_agrees_cooldown

关键效果

  • 选项 A(名称对应 flavor_pol.23.a):
    • 增加议会议题支持度 0.25

背景介绍
该事件模拟了波兰立陶宛联邦时期,贵族议会(瑟姆)内部因不同特权法案而产生的分歧与妥协。当国家持有特定的历史特权(如《帕克塔·康文塔》、《自由否决权》或《涅沙瓦特权》)时,议会可能就当前议题达成临时一致,从而提升对某一议题的支持度。

完整事件代码

flavor_pol.23 = {
	type = country_event
	title = flavor_pol.23.title
	desc = flavor_pol.23.desc
	historical_info = flavor_pol.23.historical_info
	trigger = {
		OR = {
			has_estate_privilege = estate_privilege:pacta_conventa
			has_estate_privilege = estate_privilege:liberum_veto
			has_estate_privilege = estate_privilege:nieszawa_privileges
		}
		NOT = {
			OR = {
 				has_variable = pol_sejm_disagrees_cooldown
				has_variable = pol_sejm_agrees_cooldown
			}
		}
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

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

		set_variable = { name = pol_sejm_agrees_cooldown value = 1 days = 365 }
	}

	option = {
		name = flavor_pol.23.a
		change_parliament_issue_support = 0.25
	}
}