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.44 罢免萨拉曼卡的呼吁

时间范围:1520.1.1 - 1539.1.1(每月 1% 概率)

触发条件

  • 角色 hab_gabriel_salamanca 必须存活且在政府内阁中。
  • 国家拥有至少 5 笔贷款。
  • 国家月度财政收支为负(monthly_balance < 0)。

关键效果

  • 选项 A (flavor_hab.44.a):
    • 获得少量威望加成。
    • 贵族阶层满意度遭受严重惩罚。
  • 选项 B (flavor_hab.44.b) (历史选项)
    • 遭受少量威望惩罚。
    • 将角色 hab_gabriel_salamanca 从内阁中移除。
    • 为该角色添加一个永久的“拒绝在内阁任职”的修正。
    • 贵族阶层满意度获得少量加成。

背景介绍: 此事件反映了哈布斯堡王朝(HAB)在16世纪早期面临的财政困境与宫廷政治斗争。财政大臣加布里埃尔·萨拉曼卡(Gabriel Salamanca)因其政策导致国家债台高筑、财政赤字,引发了贵族阶层的强烈不满。事件模拟了君主在巨大财政压力下,面临是否罢免这位关键大臣以平息贵族怒火的抉择。

完整事件代码

flavor_hab.44 = { #An Appeal for Salamanca's Dismissal
	type = country_event
	title = flavor_hab.44.title
	desc = flavor_hab.44.desc

	fire_only_once = yes

	historical_info = flavor_hab.44.historical_info

	dynamic_historical_event = {
		tag = HAB
		from = 1520.1.1
		to = 1539.1.1
		monthly_chance = 1
	}

	immediate = {
		character:hab_gabriel_salamanca ?= { save_scope_as = target_character }
	}

	trigger = {
		character:hab_gabriel_salamanca ?= {
			is_alive = yes
			in_cabinet = yes
		}
		num_loans >= 5
		monthly_balance < 0
	}

	option = {
		name = flavor_hab.44.a
		add_prestige = prestige_mild_bonus
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_penalty }
	}

	option = {
		name = flavor_hab.44.b
		historical_option = yes
		add_prestige = prestige_mild_penalty
		remove_from_cabinet = scope:target_character
		scope:target_character = {
			add_character_modifier = { modifier = refuses_to_serve_in_cabinet days = -1 mode = add_and_extend }
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
	}
}