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.99 宣布奥地利帝国

时间范围:1750.1.1 - 1836.1.1(每月 10% 概率)

触发条件

  • 国家不是帝国级 (country_rank:rank_empire)。
  • 国家不是附庸国 (is_subject = no)。
  • 神圣罗马帝国 (international_organization:hre) 已不存在。
  • 国家拥有统治者 (has_ruler = yes)。
  • 国家是列强 (is_great_power = yes)。

关键效果

  • 选项 A (历史选项)
    • 获得大量正统性 (legitimacy_severe_bonus)。
    • 将国家等级提升为帝国 (set_country_rank_effect = { rank = country_rank:rank_empire })。
    • 所有邻国(非盟友且非附庸)对本国增加观点修正 hab_proclaimed_austrian_empire
    • 社会价值观向“好战”方向大幅移动 (societal_value_large_move_to_left)。
  • 选项 B
    • 损失大量正统性 (legitimacy_severe_penalty)。
    • 社会价值观向“和解”方向大幅移动 (societal_value_large_move_to_right)。

背景介绍: 此事件模拟了哈布斯堡君主国在神圣罗马帝国框架之外,正式宣布成立奥地利帝国的历史进程。随着神圣罗马帝国在拿破仑战争期间名存实亡,奥地利作为欧洲主要大国,寻求提升其国际地位和内部凝聚力,最终在1804年由弗朗茨二世(后为奥地利皇帝弗朗茨一世)宣布成立奥地利帝国,以巩固哈布斯堡家族的统治并应对新的地缘政治格局。

完整事件代码

flavor_hab.99 = { #Proclaiming the Austrian Empire
	type = country_event
	title = flavor_hab.99.title
	desc = flavor_hab.99.desc

	fire_only_once = yes

	historical_info = flavor_hab.99.historical_info

	dynamic_historical_event = {
		tag = HAB
		from = 1750.1.1
		to = 1836.1.1
		monthly_chance = 10
	}

	trigger = {
		NOT = {
			country_rank = country_rank:rank_empire
		}
		is_subject = no
		NOT = {
			exists = international_organization:hre
		}
		has_ruler = yes
		is_great_power = yes
	}

	option = {
		name = flavor_hab.99.a
		historical_option = yes
		add_legitimacy = legitimacy_severe_bonus
		set_country_rank_effect = { rank = country_rank:rank_empire }
		every_neighbor_country = {
			limit = {
				NOT = {
					is_allied_with = { target = root }
					is_subject_of = root
				}
			}
			add_opinion = {
				target = root
				modifier = hab_proclaimed_austrian_empire
			}
		}
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_large_move_to_left
		}
	}

	option = {
		name = flavor_hab.99.b
		add_legitimacy = legitimacy_severe_penalty
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_large_move_to_right
		}
	}
}