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.170 草原法官

时间范围:1537.1.1 - 1837.1.1,每月 5% 概率触发

触发条件

  • 国家文化构成中,伊拉克文化 (iraqi_culture) 的占比大于 0。
  • 拥有至少 3 个位于伊拉克阿拉伯地区 (area:iraq_arabi_area) 且不是巴格达 (location:baghdad) 的省份。
  • 拥有巴格达 (location:baghdad)。
  • 国库黄金大于等于 6 倍的月收入(贸易与税收之和)。

关键效果

  • 选项 A (历史选项)
    • 社会价值观:神秘主义与法学 (mysticism_vs_jurisprudence) 向法学方向微小移动。
    • 在伊拉克阿拉伯地区 (area:iraq_arabi_area) 内,选择 3 个由本国控制且非巴格达、控制度最低的省份:
      • 提升其控制度 (control_mild_bonus)。
      • 在每个选中的省份中,为本国控制的最大规模的农民 (peasants)、劳工 (laborers) 或士兵 (soldiers) 人口之一,大幅增加满意度 (pop_satisfaction_severe_bonus)。
  • 选项 B
    • 损失相当于 4 倍月收入(贸易与税收之和)的黄金。
    • 社会价值观:神秘主义与法学 (mysticism_vs_jurisprudence) 向法学方向微小移动。
    • 在伊拉克阿拉伯地区 (area:iraq_arabi_area) 内,选择 3 个由本国控制且非巴格达、控制度最低的省份:
      • 提升其控制度 (control_mild_bonus)。
      • 在每个选中的省份中,为本国控制的最大规模的农民 (peasants)、劳工 (laborers) 或士兵 (soldiers) 人口之一,大幅增加满意度 (pop_satisfaction_severe_bonus)。
      • 提升这些省份的发展度 (development_weak_bonus)。
    • 提升巴格达 (location:baghdad) 的发展度 (development_weak_bonus)。

背景介绍: 此事件模拟了奥斯曼帝国在统治其伊拉克阿拉伯地区时可能面临的地方治理挑战。事件标题“草原法官”暗示了中央政权试图向这片广阔而有时难以控制的地区(“草原”)派遣或任命司法官员(“法官”),以加强法律、秩序和中央权威。触发条件要求国家在该地区拥有文化影响力、控制关键城市巴格达,并拥有足够的财政资源,这反映了帝国巩固对偏远省份控制所需的实力基础。两个选项都涉及加强地方控制并安抚特定人群,但方式不同:历史选项更侧重于直接的法律与秩序手段,而另一个选项则通过投入大量资金来同时促进经济发展。

完整事件代码

flavor_tur.170 = { #The Judge of the Grasslands
	type = country_event
	title = flavor_tur.170.title
	desc = flavor_tur.170.desc

	historical_info = flavor_tur.170.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1537.1.1
		to = 1837.1.1
		monthly_chance = 5
	}

	trigger = {
		"culture_percentage_in_country(culture:iraqi_culture)" > 0

		any_owned_location = {
			area = area:iraq_arabi_area
			count >= 3
			NOT = { this = location:baghdad}
		}

		owns = location:baghdad

		gold >= {
  			value = monthly_income_trade_and_tax
   			multiply = 6
  		}
	}

	immediate = {

		location:baghdad = { save_scope_as = target_location }
	}

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

		custom_tooltip = grasslands_judge.tt

		change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }

		area:iraq_arabi_area = {
			ordered_location_in_area = {
				limit = {
					owner ?= root
					NOT = { this = location:baghdad }
				}
				order_by = { #Get the least controlled ones
                	value = local_control
               	 	multiply = -1
            	}
				max = 3
				change_control = control_mild_bonus
				ordered_pop = {
					max = 1
					order_by = pop_size
					limit = {
						owner = root
						OR = {
							pop_type = pop_type:peasants
							pop_type = pop_type:laborers
							pop_type = pop_type:soldiers
						}

					}
					add_pop_satisfaction = pop_satisfaction_severe_bonus
				}
			}
		}
	}

	option = {
		name = flavor_tur.170.b

		change_gold_effect = { scale = -4 }

		change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }

		area:iraq_arabi_area = {
			ordered_location_in_area = {
				limit = {
					owner ?= root
					NOT = { this = location:baghdad }
				}
				order_by = { #Get the least controlled ones
                	value = local_control
               	 	multiply = -1
            	}
				max = 3
				change_control = control_mild_bonus
				ordered_pop = {
					max = 1
					order_by = pop_size
					limit = {
						owner = root
						OR = {
							pop_type = pop_type:peasants
							pop_type = pop_type:laborers
							pop_type = pop_type:soldiers
						}

					}
					add_pop_satisfaction = pop_satisfaction_severe_bonus
				}
				change_development = development_weak_bonus
			}
		}

		scope:target_location = {
			change_development = development_weak_bonus
		}
	}
}