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_cas.2402] 贵族反抗王权

时间范围:1370.1.1 - 1450.1.1(每月 1% 概率)

触发条件

  • 国家拥有变量 cas_bands_noble_revolt

关键效果

  • 选项 A (flavor_cas.2402.a)

    • 纳瓦拉地区所有贵族阶层人口效忠于叛军 bands_of_navarra
    • 叛军 bands_of_navarra 的进度增加 50%。
    • 设置变量 cas_war_of_the_bands_aftermath
  • 选项 B (flavor_cas.2402.b)

    • 纳瓦拉地区所有贵族阶层人口获得“极度满意”加成。
    • 纳瓦拉地区所有地块的控制度遭受“终极惩罚”级别下降。
    • 贵族阶层满意度获得“轻微增益”。
    • 社会价值观向“去中心化”方向移动。
    • 摧毁叛军 bands_of_navarra

背景介绍: 在14世纪末至15世纪中叶的卡斯蒂利亚(或西班牙)王国,王权与地方贵族之间的权力斗争持续不断。纳瓦拉地区的贵族阶层因不满中央政府的政策或权力扩张,组织起武装力量反抗王室权威,史称“帮派战争”或贵族叛乱。这一事件反映了中世纪晚期伊比利亚半岛上中央集权与封建地方势力之间的深刻矛盾。

完整事件代码

flavor_cas.2402 = { #The Nobles Rise Against the Crown
	type = country_event
	title = flavor_cas.2402.title
	desc = flavor_cas.2402.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1370.1.1
		to = 1450.1.1
		monthly_chance = 1
	}

	trigger = {
		has_variable = cas_bands_noble_revolt
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_rebel = {
			category = estate
			name = bands_of_navarra
			save_scope_as = bands_of_navarra_rebels
			estate = nobles_estate
		}
	}

	option = {
		name = flavor_cas.2402.a
		custom_tooltip = {
			text = flavor_cas.2402.a.tt
			every_owned_location = {
				limit = {
					area = area:navarre_area
				}
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:nobles
					}
					change_pop_allegiance = scope:bands_of_navarra_rebels
				}
			}
		}
		scope:bands_of_navarra_rebels = { add_rebel_progress = 0.5 }
		set_variable = cas_war_of_the_bands_aftermath
	}

	option = {
		name = flavor_cas.2402.b
		area:navarre_area = {
			every_location_in_area = {
				limit = {
					owner ?= root
				}
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:nobles
					}
					add_pop_satisfaction = pop_satisfaction_extreme_bonus
				}
			}
		}
		custom_tooltip = {
			text = flavor_cas.2402.b.tt
			area:navarre_area = {
				every_location_in_area = {
					change_control = control_ultimate_penalty
				}
			}
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right }
		destroy_rebel = scope:bands_of_navarra_rebels
	}

	after = {
		remove_variable = cas_bands_noble_revolt
	}
}