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_por.36] 庞巴尔 - [target_character.GetName]的野心

时间范围

  • 起始日期:1750.1.1
  • 结束日期:1777.1.1
  • 触发概率:每月 10% 概率

触发条件

  • 国家必须拥有至少 1 位内阁成员。
  • 国家必须拥有统治者。

关键效果

选项 A

  • 将随机一位内阁成员(target_character)提升为内阁首脑。
  • 社会价值观发生以下变化:
    • 专制主义 vs 自由主义:大幅向左移动(societal_value_huge_move_to_left)。
    • 重商主义 vs 自由贸易:较大幅度向左移动(societal_value_large_move_to_left)。
  • 贵族阶层满意度受到极大惩罚(estate_satisfaction_extreme_penalty)。

选项 B

  • 当前统治者(ruler_scope)获得以下属性提升:
    • 行政能力 +5
    • 外交能力 +5
    • 军事能力 +5

背景介绍

该事件反映了18世纪中后期葡萄牙在庞巴尔侯爵(Sebastião José de Carvalho e Melo)主导下的改革时期。作为若泽一世国王的首相,庞巴尔推行了一系列旨在加强中央集权、削弱贵族与教会权力、并推动经济现代化的政策。事件模拟了统治者面临的选择:是支持一位具有改革野心的内阁成员(可能代表庞巴尔式的集权改革),还是选择加强君主个人能力以巩固统治。选项A带来的社会价值观变化与贵族不满,映射了庞巴尔改革对传统社会结构与经济政策的冲击;选项B则体现了强化君主个人统治的保守路径。

完整事件代码

flavor_por.36 = { # Pombal - Ambitions of [target_character.GetName]
	type = country_event
	title = flavor_por.36.title
	desc = flavor_por.36.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = POR
		from = 1750.1.1
		to = 1777.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	trigger = {
		any_cabinet_character = {
			count >= 1
		}
		has_ruler = yes
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = {
			save_scope_as = ruler_scope
		}
		random_cabinet_character = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_por.36.a

		promote_to_head_of_cabinet_effect = {
			target = scope:target_character
		}

		change_societal_value = {
			type = absolutism_vs_liberalism
			value = societal_value_huge_move_to_left
		}

		change_societal_value = {
			type = mercantilism_vs_free_trade
			value = societal_value_large_move_to_left
		}

		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_extreme_penalty
		}
	}

	option = {
		name = flavor_por.36.b

		scope:ruler_scope = {
			add_adm = 5
			add_dip = 5
			add_mil = 5
		}
	}
}