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.44 科希策特权与继承法确立

时间范围:1370.1.1 - 1400.1.1(每月 5% 概率触发)

触发条件

  • 国家继承法 不是 heir_selection:union_of_crowns_succession(即“王冠联合继承法”)。
  • 国家当前拥有统治者。

关键效果

  • 选项 A:颁布它(历史选项)

    • 解锁变量 unlock_privilege_of_koszyce
    • 如果国家尚未拥有特权 estate_privilege:privilege_of_koszyce(科希策特权),则授予该特权。
    • 如果国家继承法 不是 heir_selection:cognatic_primogeniture(男性优先的长子继承制)或 heir_selection:absolute_cognatic_primogeniture(绝对长子继承制),则将其改为 heir_selection:cognatic_primogeniture
    • estate_type:nobles_estate(贵族阶层)增加 estate_satisfaction_mild_bonus(适度的阶层满意度加成)。
    • 显示自定义提示:POL_may_form_union_with_lit_at_later_date(波兰可能在日后与立陶宛形成联合)。
  • 选项 B:最好不要

    • 国家稳定性增加 stability_mild_penalty(适度的稳定性惩罚)。

背景介绍: 该事件模拟了14世纪后期波兰王国的一个重要政治进程。1374年,波兰国王路易一世在科希策颁布了著名的“科希策特权”,以换取波兰贵族对其女儿继承王位的支持。这一特权极大地增强了波兰贵族(什拉赫塔)的权力,限制了王权,并为波兰独特的贵族民主制奠定了基础。同时,事件也涉及确立更明确的王位继承规则,为日后波兰与立陶宛的王朝联合创造了条件。

完整事件代码

flavor_pol.44 = {
	type = country_event

	title = flavor_pol.44.title
	desc = flavor_pol.44.desc
	historical_info = flavor_pol.44.historical_info
	dynamic_historical_event = {
		tag = POL
		tag = PLC
		from = 1370.1.1
		to = 1400.1.1
		monthly_chance = 5
	}

	fire_only_once = yes
	illustration_tags = {
		10 = regular
		10 = interior
	}

	trigger = {
		succession_law != heir_selection:union_of_crowns_succession
		has_ruler = yes
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = {
			save_scope_as = ruler_scope
		}
	}

	option = {	#Enact it
		name = flavor_pol.44.a
		historical_option = yes

		hidden_effect = {
			set_variable = {
				name = unlock_privilege_of_koszyce
				value = yes
			}
		}
		if = {
			limit = {
				NOT = { has_estate_privilege = estate_privilege:privilege_of_koszyce }
			}
			grant_estate_privilege = estate_privilege:privilege_of_koszyce
		}
		if = {
			limit = {
				NOT = {
					OR = {
						succession_law = heir_selection:cognatic_primogeniture
						succession_law = heir_selection:absolute_cognatic_primogeniture
					}
				}
			}
			change_heir_selection = heir_selection:cognatic_primogeniture
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}

		custom_tooltip = POL_may_form_union_with_lit_at_later_date
	}

	option = {	#Better not
		name = flavor_pol.44.b

		add_stability = stability_mild_penalty
	}
}