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_byz.48 宫廷派系,良好的官僚结果

时间范围
无具体日期限制(无 fromto 字段),每月概率未指定(无 monthly_chance 字段)

触发条件

  • 国家未拥有变量 reformed_imperial_code_flag
  • 内阁中存在至少一名人物
  • 国家标签为 BYZ(拜占庭帝国)

关键效果

  • 选项 A(flavor_byz.48.a)

    • 增加 clergy_estate(教士阶层)的阶层满意度(estate_satisfaction_mild_bonus
    • 社会价值观 aristocracy_vs_plutocracy(贵族制 vs 财阀制)向左移动(societal_value_move_to_left
  • 选项 B(flavor_byz.48.b)

    • 增加 clergy_estate(教士阶层)的阶层满意度(estate_satisfaction_mild_bonus
    • 社会价值观 aristocracy_vs_plutocracy(贵族制 vs 财阀制)向右移动(societal_value_move_to_right

背景介绍
在拜占庭帝国的宫廷中,不同的官僚派系时常为争夺影响力而明争暗斗。当皇帝或摄政者与内阁成员共同处理政务时,如何平衡各方利益、维持教士阶层的支持,并引导国家在贵族与财阀统治之间做出选择,成为考验统治者政治智慧的关键时刻。

完整事件代码

flavor_byz.48 = { #Court factions, good bureaucratic outcome
	hide_portraits = yes
	type = country_event
	title = flavor_byz.48.title
	desc = flavor_byz.48.desc

	trigger = {
		NOT = { has_variable = reformed_imperial_code_flag }
		any_cabinet_character = {
			count > 0
		}
		tag = BYZ
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		random_cabinet_character ?= {
			save_scope_as = target_character2
		}
	}

	option = {
		name = flavor_byz.48.a

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}

		change_societal_value = {
			type = aristocracy_vs_plutocracy
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_byz.48.b

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}

		change_societal_value = {
			type = aristocracy_vs_plutocracy
			value = societal_value_move_to_right
		}
	}
}