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_cas.2600 波旁改革

时间范围:1700.1.1 - 1836.1.1(每月 5% 概率)

触发条件

  • 国家拥有君主。
  • 社会价值观“中央集权 vs 地方分权”小于 25。
  • 君主满足以下任一条件:
    • 行政能力(adm)大于等于 70。
    • 总能力值(total_abilities)大于等于 130。
  • 政府类型为君主制(monarchy)。
  • 国家在美洲大陆(continent:america)拥有存在度。

关键效果

  • 选项 A (历史选项)
    • 触发事件时的君主行政能力(adm)增加 5。
    • 国家稳定度遭受严重惩罚(stability_severe_penalty)。
    • 获得大量政府力量(government_power_severe_bonus)。
    • 社会价值观“中央集权 vs 地方分权”大幅向左移动(societal_value_huge_move_to_left)。
    • 获得国家修正“spa_reform_momentum”,持续 20 年。
    • 设置变量“spa_enable_bourbon_reforms”。
  • 选项 B
    • 国家稳定度获得小幅增益(stability_mild_bonus)。
    • 损失少量政府力量(government_power_mild_penalty)。
    • 社会价值观“中央集权 vs 地方分权”向右移动(societal_value_move_to_right)。

背景介绍: 该事件模拟了18世纪西班牙波旁王朝为加强中央集权、提高行政效率、增加财政收入而在西班牙本土及其美洲殖民地推行的一系列改革。这些改革旨在削弱地方贵族和殖民地的传统特权,强化王室对帝国的直接控制,是西班牙帝国现代化进程中的关键尝试,但也引发了既得利益集团的强烈不满和殖民地的动荡。

完整事件代码

flavor_cas.2600 = { #The Bourbon Reforms
	type = country_event
	title = flavor_cas.2600.title
	desc = flavor_cas.2600.desc

	historical_info = flavor_cas.2600.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1700.1.1
		to = 1836.1.1
		monthly_chance = 5
	}

	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_ruler
		}
	}

	trigger = {
		has_ruler = yes
		societal_value:centralization_vs_decentralization < 25
		ruler ?= {
			OR = {
				adm >= 70
				total_abilities >= 130
			}
		}
		government_type = government_type:monarchy
		has_presence_in = continent:america
	}

	option = {
		name = flavor_cas.2600.a
		historical_option = yes
		scope:target_ruler = {
			add_adm = 5
		}
		add_stability = stability_severe_penalty
		add_government_power = government_power_severe_bonus
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_huge_move_to_left }
		add_country_modifier = {
			modifier = spa_reform_momentum
			years = 20
			mode = add
		}
		custom_tooltip = flavor_cas.2600.a.tt
		set_variable = spa_enable_bourbon_reforms
	}

	option = {
		name = flavor_cas.2600.b
		add_stability = stability_mild_bonus
		add_government_power = government_power_mild_penalty
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right }
	}
}