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.35] 皇帝授予我们米兰的王冠

时间范围:无明确时间范围(fire_only_once = yes,仅触发一次)

触发条件

  • 事件为一次性通知事件,无显式trigger条件,但根据上下文推断,可能由特定历史进程或决策触发。

关键效果

  • 选项flavor_mlo.35.a
    • 改变政府类型为君主制(change_government_type = government_type:monarchy
    • 若未拥有“君主制改革传统”科技,则自动研究该科技(research_advance = advance_type:monarchy_reform_traditions_advance
    • 添加政府改革“专制统治”(add_reform = government_reform:autocracy
    • 撤销“维斯孔蒂城邦”特权(revoke_estate_privilege = estate_privilege:visconti_city_states
    • 若国家等级低于2级(公国),则提升至公国等级(set_country_rank_effect = { rank = country_rank:rank_duchy }
    • 社会价值观向“中央集权”方向大幅移动(change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_left }

背景介绍: 该事件模拟了神圣罗马帝国皇帝授予米兰统治者王冠的历史时刻,标志着米兰从城市共和国或地方政权正式转变为君主制国家。通过接受皇权册封,米兰统治者巩固了其合法统治地位,加强了中央集权,并废除了原有的地方特权(如维斯孔蒂家族相关的城邦特权),从而在政治体制上实现重大转型。

完整事件代码

flavor_mlo.35 = { #The Emperor Grants us the Monarchical Crown of Milan
	type = country_event
	title = flavor_mlo.35.title
	desc = flavor_mlo.35.desc

	fire_only_once = yes #This is a simple notification event because we have no pop-ups

	illustration_tags = {
        10 = happy
        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
			}
		}
		capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_mlo.35.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
		if = {
			limit = { country_rank_level < 2 }
			set_country_rank_effect = { rank = country_rank:rank_duchy }
		}
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_left
		}
	}
}