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.28] 皇帝拒绝承认我们的要求

时间范围:无明确起止日期(from/to未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 事件代码中未定义明确的trigger字段,因此无具体触发条件。事件可能由其他游戏机制或脚本调用。

关键效果

  • 选项 A (flavor_mlo.28.a)
    • 改变政府类型为君主制(government_type:monarchy)。
    • 若未拥有“君主制改革传统”科技,则自动研究该科技。
    • 添加“专制主义”政府改革(government_reform:autocracy)。
    • 撤销“维斯孔蒂城邦”阶层特权(estate_privilege:visconti_city_states)。
    • 稳定性大幅下降(stability_extreme_penalty)。
    • 威望大幅下降(prestige_severe_penalty)。
    • 社会价值观向“中央集权”方向大幅移动(societal_value_large_move_to_left)。
  • 选项 B (flavor_mlo.28.b)
    • 撤销“维斯孔蒂城邦”阶层特权(estate_privilege:visconti_city_states)。

背景介绍: 该事件模拟了米兰公国(或其他以MLO为标签的国家)与神圣罗马帝国皇帝之间的政治冲突。当地方贵族或统治者向皇帝提出某些要求(可能是自治权、特权确认或政治承认)时,遭到了皇帝的明确拒绝。这一拒绝迫使该国在国内政治道路上做出关键抉择:是转向更集权、专制的君主制以强化内部统治(选项A),承受短期的稳定与声望损失;还是仅撤销引发争议的特定地方特权,采取相对温和的调整(选项B)。事件反映了中世纪晚期神圣罗马帝国内部中央皇权与地方诸侯之间复杂的权力博弈。

完整事件代码

flavor_mlo.28 = { #The Emperor Refuses to Recognize our Demands
	type = country_event
	title = flavor_mlo.28.title
	desc = flavor_mlo.28.desc
	#major = yes
	#major_trigger = {
	#	is_member_of_international_organization = international_organization:hre
	#}
	fire_only_once = yes
	
	illustration_tags = {
        10 = angry
        10 = interior
    }	
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		international_organization:hre.leader_country = {
			ruler = {
				save_scope_as = target_character
			}
		}
		c:MLO = { save_scope_as = target_country }
	}

	option = {
		name = flavor_mlo.28.a

		change_government_type = government_type:monarchy
		hidden_effect = {
			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_extreme_penalty
		add_prestige = prestige_severe_penalty

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_left
		}
	}

	option = {
		name = flavor_mlo.28.b

		revoke_estate_privilege = estate_privilege:visconti_city_states
	}
}