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.8] 贵族特权强化

时间范围:1490.1.1 - 1515.1.1,每月 2% 概率触发

触发条件

  • 满足以下任一条件:
    1. 拥有变量 rise_of_szlachta_szlachta_outcome_variable(即“贵族崛起”灾难以贵族胜利结束),贵族阶层(estate_type:nobles_estate)权力大于 0.25。
    2. 贵族阶层(estate_type:nobles_estate)的权力大于王室领地阶层(estate_type:crown_estate)的权力。

关键效果

  • 选项 A (flavor_pol.8.a) [历史选项]
    • 授予特权:estate_privilege:statutes_of_piotrkow(彼得库夫法规)。
    • 如果已拥有特权 estate_privilege:peasants_free_peasantry(农民自由身份),则将其撤销。
    • 市民阶层(estate_type:burghers_estate)满意度大幅下降(estate_satisfaction_extreme_penalty)。
  • 选项 B (flavor_pol.8.b)
    • 国家稳定度大幅下降(stability_ultimate_penalty)。

背景介绍: 该事件反映了15世纪末至16世纪初波兰贵族(什拉赫塔)权力不断巩固的历史进程。在“贵族崛起”灾难后,贵族阶层通过《彼得库夫法规》等法律进一步确立了其政治、经济特权,限制了王权并削弱了其他社会阶层(如市民和农民)的权利,深刻影响了波兰-立陶宛联邦未来的政治结构和社会发展。

完整事件代码

flavor_pol.8 = {
	type = country_event
	title = flavor_pol.8.title
	desc = flavor_pol.8.desc
	historical_info = flavor_pol.8.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = POL
		tag = PLC
		from = 1490.1.1
		to = 1515.1.1
		monthly_chance = 2
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	trigger = {
		OR = {
			AND = {
				#The Rise of the Szlachta disaster ended with a Nobles victory
				has_variable = rise_of_szlachta_szlachta_outcome_variable

				"estate_power(estate_type:nobles_estate)" > 0.25
			}

			"estate_power(estate_type:nobles_estate)" > "estate_power(estate_type:crown_estate)"
		}
	}

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

		unlock_estate_privilege_effect = { type = statutes_of_piotrkow }
	}

	option = {
		name = flavor_pol.8.a
		historical_option = yes

		grant_estate_privilege = estate_privilege:statutes_of_piotrkow

		if = {
			limit = { has_estate_privilege = estate_privilege:peasants_free_peasantry }
			revoke_estate_privilege = estate_privilege:peasants_free_peasantry
		}

		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_extreme_penalty
		}
	}
	option = {
		name = flavor_pol.8.b

		add_stability = stability_ultimate_penalty
	}
}