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_tur.128] 大维齐尔时代

时间范围:1600.1.1 - 1660.1.1(每月 1% 概率)

触发条件

  • 角色 tur_muhammad_koprulu 必须:
    • 存活
    • 其拥有者(owner)为触发国(root)
    • 拥有角色修正 head_of_the_cabinet_modifier
  • 触发国必须:
    • 拥有统治者
    • 统治者拥有王朝(dynasty)

关键效果

  • 选项 A (flavor_tur.128.a) - 历史选项
    • 社会价值观变化:
      • 贵族 vs 财阀:小幅向右移动
      • 灵性主义 vs 人文主义:小幅向右移动
      • 中央集权 vs 地方分权:大幅向左移动
    • 添加国家修正 grand_vizier_hegemony,持续 50 年(叠加并延长模式)
    • 增加大量稳定度
    • 在首都地区,对部分人口(士兵或贵族,且未参与叛乱)施加影响:
      • 按特定规则(人口规模/满意度)选取最多一定数量的人口
      • 对其施加极度的满意度惩罚
      • 使其效忠于 target_rebel(贵族叛乱)
  • 选项 B (flavor_tur.128.b)
    • 大幅增加贵族阶层满意度
    • 大幅增加神职人员阶层满意度
    • 摧毁 target_rebel(贵族叛乱)

背景介绍: 此事件标志着奥斯曼帝国“大维齐尔时代”的到来,与人物穆罕默德·柯普律吕密切相关。在这一时期,大维齐尔(宰相)的权力达到顶峰,成为帝国实际上的行政首脑,深刻影响了帝国的政治结构、社会价值观和中央与地方的关系。事件反映了在强大官僚体系崛起时,统治者面临的抉择:是强化中央权威和官僚体系(可能引发贵族不满),还是安抚传统势力以维持现状。

完整事件代码

flavor_tur.128 = { #The Age of the Grand Vizier, associated with flavor_tur.20
	hide_portraits = yes
	type = country_event
	title = flavor_tur.128.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					exists = scope:valide_sultan
				}
				desc = flavor_tur.128.valide_sultan.desc
			}
			triggered_desc = {
				trigger = {
					NOT = { exists = scope:valide_sultan }
				}
				desc = flavor_tur.128.no_valide_sultan.desc
			}
		}
	}
	fire_only_once = yes
	historical_info = flavor_tur.128.historical_info

	dynamic_historical_event = {
		tag = TUR
		from = 1600.1.1
		to = 1660.1.1
		monthly_chance = 1
	}

	trigger = {
		character:tur_muhammad_koprulu ?= {
  			is_alive = yes
			owner ?= root
			has_character_modifier = head_of_the_cabinet_modifier
   		}

   		has_ruler = yes
		ruler ?= { has_dynasty = yes }
	}

	immediate = {

		ruler = { save_scope_as = target_ruler }

		character:tur_muhammad_koprulu = { save_scope_as = target_character }

		if = {
			limit = {
				AND = {
					exists = ruler.mother
        			ruler.mother = {
           				is_alive = yes
       				}
       				OR = {
       					has_policy = powerful_harem_policy
						has_policy = valide_sultan_court_policy
       				}
       			}
			}
			ruler.mother = {
           		save_scope_as = valide_sultan
           	}
		}
		create_rebel = {
			name = nobles_revolt
			category = estate
			estate = nobles_estate
			save_scope_as = target_rebel
		}
	}

	option = {
		name = flavor_tur.128.a
		historical_option = yes

		change_societal_value = { type = aristocracy_vs_plutocracy value = societal_value_minor_move_to_right }
		change_societal_value = { type = spiritualist_vs_humanist value = societal_value_minor_move_to_right }
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_left }

		add_country_modifier = { modifier = grand_vizier_hegemony years = 50 mode = add_and_extend }

		add_stability = stability_severe_bonus

		ordered_pop = {
			limit = {
				owner = root
				location.region = root.capital.region
				OR = {
					pop_type = pop_type:soldiers
					pop_type = pop_type:nobles
				}
				has_rebel = no
			}
			order_by = {
				value = {
					add = pop_size
					if = {
						limit = { pop_satisfaction > 0.05 }
						divide = pop_satisfaction
					}
					else = { divide = 0.05 }
				}
			}
			check_range_bounds = no
			max = {
				value = {
					add = num_provinces
					divide = 10
				}
				add = 3
			}
			add_pop_satisfaction = pop_satisfaction_ultimate_penalty
			hidden_effect = {
				change_pop_allegiance = scope:target_rebel
			}
		}
	}

	option = {
		name = flavor_tur.128.b

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

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

		destroy_rebel = scope:target_rebel
	}
}