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_hab.1403 施蒂利亚贵族叛乱

时间范围:1460.1.1 - 1480.1.1(每月 4% 概率触发)

触发条件

  • 国家拥有统治者。
  • 国家在 styria_area(施蒂利亚地区)至少控制一个省份。
  • 国家处于战争状态。

关键效果

  • 选项 A
    • 在施蒂利亚地区所有由本国控制的省份中,所有贵族阶层(pop_type:nobles)的满意度将遭受“终极惩罚”级别的下降。
    • 上述贵族阶层将改变其效忠对象,转而支持名为 styria_noble_rebels(施蒂利亚贵族叛军)的叛军。

背景介绍: 在哈布斯堡王朝统治时期,施蒂利亚地区的贵族阶层势力强大。当国家陷入对外战争时,中央政府的控制力相对减弱,地方贵族可能趁机要求更多特权或直接发动叛乱,以对抗王权、维护或扩大自身利益。此事件模拟了在特定历史窗口期内,因战争压力而激化的中央与施蒂利亚地方贵族之间的矛盾。

完整事件代码

flavor_hab.1403 = { #Styrian Noble Rebellion
	hide_portraits = yes
	type = country_event
	title = flavor_hab.1403.title
	desc = flavor_hab.1403.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1460.1.1
		to = 1480.1.1
		monthly_chance = 4
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

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

		ruler = {
			save_scope_as = target_ruler
		}

		if = {
			limit = {
				NOT = {
					any_rebel = {
						rebel_name_key = styria_noble_rebels
					}
				}
			}
			create_rebel = {
				category = estate
				name = styria_noble_rebels
				save_scope_as = target_styria_noble_rebels
				estate = nobles_estate
			}
		}
		else = {
			scope:target_styria_noble_rebels = {
			add_rebel_progress = rebel_progress_severe_penalty
			}
		}
	}

	trigger = {
		has_ruler = yes
		area:styria_area = {
			any_location_in_area = {
				owner = root
			}
		}
		at_war = yes
	}

	option = {
		name = flavor_hab.1403.a

		custom_tooltip = {
			text = styria_noble_rebels_joining
			every_owned_location = {
				limit = {
					area = area:styria_area
				}
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:nobles
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					change_pop_allegiance = scope:target_styria_noble_rebels
				}
			}
		}
	}
}