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.1101 哈布斯堡永久首都

时间范围:1550.1.1 - 1600.1.1(每月 1% 概率触发)

触发条件

  • 国家处于和平状态(at_war = no)。
  • 国家拥有君主(has_ruler = yes)。
  • 政府类型为君主制(government_type = government_type:monarchy)。
  • 拥有以下任意一个地点(OR):
    • 维也纳(location:vienna
    • 因斯布鲁克(location:innsbruck
    • 格拉茨(location:graz

关键效果

  • 选项 A (flavor_hab.1101.a)
    • 触发条件:拥有维也纳(location:vienna)。
    • 效果:设置变量 decided_on_permanent_capital;将首都迁至维也纳(set_capital = location:vienna);社会价值观向“中央集权”方向移动(change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_left })。
  • 选项 B (flavor_hab.1101.b)
    • 触发条件:拥有因斯布鲁克(location:innsbruck)。
    • 效果:设置变量 decided_on_permanent_capital;将首都迁至因斯布鲁克(set_capital = location:innsbruck);社会价值观向“中央集权”方向移动。
  • 选项 C (flavor_hab.1101.c)
    • 触发条件:拥有格拉茨(location:graz)。
    • 效果:设置变量 decided_on_permanent_capital;将首都迁至格拉茨(set_capital = location:graz);社会价值观向“中央集权”方向移动。
  • 选项 D (flavor_hab.1101.d)
    • 效果:社会价值观向“地方分权”方向移动(change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right })。

背景介绍: 16世纪中后期,随着哈布斯堡王朝统治的巩固和疆域的扩张,确立一个稳定、权威的永久性首都成为加强中央集权、彰显君主权威的重要议题。维也纳、因斯布鲁克和格拉茨等城市因其地理位置、历史地位或政治重要性,成为首都的候选地。此事件反映了哈布斯堡君主在和平时期,为强化统治核心而做出的关键决策。

完整事件代码

flavor_hab.1101 = { #Permanent Capital for the Habsburgs
	type = country_event
	title = flavor_hab.1101.title
	desc = flavor_hab.1101.desc
	#historical_info = flavor_hab.1101.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1550.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		ruler = {
			save_scope_as = target_ruler
		}
	}

	trigger = {
		at_war = no
		has_ruler = yes
		government_type = government_type:monarchy
		OR = {
			owns = location:vienna
			owns = location:innsbruck
			owns = location:graz
		}
	}

	option = {
		name = flavor_hab.1101.a
		custom_tooltip = flavor_hab.1101.tt

		trigger = {
			owns = location:vienna
		}

		set_variable = decided_on_permanent_capital
		set_capital = location:vienna
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_left }
	}

	option = {
		name = flavor_hab.1101.b
		custom_tooltip = flavor_hab.1101.tt

		trigger = {
			owns = location:innsbruck
		}

		set_variable = decided_on_permanent_capital
		set_capital = location:innsbruck
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_left }
	}

	option = {
		name = flavor_hab.1101.c
		custom_tooltip = flavor_hab.1101.tt

		trigger = {
			owns = location:graz
		}

		set_variable = decided_on_permanent_capital
		set_capital = location:graz
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_left }
	}

	option = {
		name = flavor_hab.1101.d

		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right }
	}
}