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_mlo.13] 统一的王国

时间范围:1337.4.11 - 1550.12.30(每月 5% 概率)

触发条件

  • 国家拥有 estate_privilege:visconti_city_states(维斯孔蒂城邦特权)。
  • 国家拥有统治者。
  • 满足以下任一条件:
    • 在核心区域的平均控制度大于 0.6 - (稳定度 * 0.001)
    • 王室地产的势力大于贵族地产的势力。

关键效果

  • 选项 A (flavor_mlo.13.a) [历史选项]

    • 触发条件:国家未使用合法性作为政府权力。
    • 效果:
      • 如果国家是神圣罗马帝国(HRE)的成员,则触发事件 flavor_mlo.27
      • 否则:
        • 政府类型变为君主制。
        • 如果未拥有 monarchy_reform_traditions_advance 科技,则研究该科技。
        • 添加政府改革 autocracy(专制)。
        • 废除 estate_privilege:visconti_city_states 特权。
        • 增加少量稳定度惩罚。
        • 社会价值观向“中央集权 vs 地方分权”的左侧(中央集权)移动。
  • 选项 B (flavor_mlo.13.b)

    • 效果:
      • 大幅增加贵族地产的满意度。
      • 社会价值观向“中央集权 vs 地方分权”的右侧(地方分权)移动。
      • 大幅增加政府权力。
  • 选项 C (flavor_mlo.13.c)

    • 效果:
      • 废除 estate_privilege:visconti_city_states 特权。
      • 自定义提示 mlo_every_location_italy_5_control_tt(意大利地区所有省份获得少量控制度加成)。
      • 社会价值观向“中央集权 vs 地方分权”的左侧(中央集权)移动。

背景介绍: 该事件反映了米兰公国(MLO)在14至16世纪期间,面临整合其治下分散的城邦、加强中央集权的历史抉择。统治者需要在维持贵族特权、强化王室权威或通过行政改革统一国家之间做出选择,这决定了王国未来的政治走向。

完整事件代码

flavor_mlo.13 = { #A United Realm
	hide_portraits = yes
	type = country_event
	title = flavor_mlo.13.title
	desc = flavor_mlo.13.desc


	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1337.4.11
		to = 1550.12.30
		monthly_chance = 5
	}

	trigger = {
		has_estate_privilege = estate_privilege:visconti_city_states
		has_ruler = yes
		OR = {
			average_control_in_home_region > {
				value = 0.6
				subtract = {
					value = stability
					multiply = 0.001
				}
			}
			"estate_power(estate_type:crown_estate)" > "estate_power(estate_type:nobles_estate)"
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_mlo.13.a
		historical_option = yes

		trigger = {
			NOT = { uses_government_power = legitimacy }
		}

		if = {
			limit = {
				exists = international_organization:hre
				is_member_of_international_organization = international_organization:hre
			}
			international_organization:hre.leader_country = {
				trigger_event_non_silently = { id = flavor_mlo.27 }
			}
		}
		else = {
			change_government_type = government_type:monarchy
			if = {
				limit = {
					NOT = { has_advance = monarchy_reform_traditions_advance }
				}
				research_advance = advance_type:monarchy_reform_traditions_advance
			}
			add_reform = government_reform:autocracy
			revoke_estate_privilege = estate_privilege:visconti_city_states
			add_stability = stability_mild_penalty
			change_societal_value = {
				type = centralization_vs_decentralization
				value = societal_value_move_to_left
			}
		}
	}

	option = {
		name = flavor_mlo.13.c
		revoke_estate_privilege = estate_privilege:visconti_city_states
		custom_tooltip = mlo_every_location_italy_5_control_tt
		hidden_effect = {
			every_owned_location = {
				limit = {
					region = region:italy_region
				}
				change_control = control_weak_bonus
			}
		}
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_mlo.13.b

		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_bonus }
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_move_to_right
		}
		add_government_power = government_power_extreme_bonus
	}
}