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_dlh.47] 阿富汗贵族不满

时间范围:1500.1.1 - 1600.1.1,每月 2% 概率触发

触发条件

  • 国家人口中,阿富汗文化(afghan_culture)的占比大于0。
  • 拥有至少一个非首都省份,且该省份中存在贵族阶层(pop_type:nobles)的阿富汗文化人口。

关键效果

  • 选项 A (flavor_dlh.47.a)

    • 在目标区域(target_area)内所有本国拥有的省份中,所有阿富汗文化人口将获得“极度不满”(pop_satisfaction_extreme_penalty)修正。
  • 选项 B (flavor_dlh.47.b)

    • 在目标区域(target_area)内所有本国拥有的省份中,所有省份的控制度将遭受“极端惩罚”(control_extreme_penalty)。
    • 社会价值观向“灵性主义”(spiritualist_vs_humanist)方向移动(societal_value_move_to_left)。
    • 贵族阶层(estate_type:nobles_estate)的满意度将遭受“极端惩罚”(estate_satisfaction_extreme_penalty)。

背景介绍: 在16世纪,随着帖木儿帝国的衰落和莫卧儿帝国的崛起,南亚次大陆的政治格局发生剧变。阿富汗部落贵族(普什图人)作为一支重要的军事和政治力量,活跃于今阿富汗、巴基斯坦和印度西北部地区。他们时而效忠于不同的帝国,时而寻求独立或自治,其忠诚度与当地统治者的政策紧密相关。本事件模拟了当统治国家内存在阿富汗文化贵族人口时,可能因文化、宗教或政治待遇问题而引发的不满与动荡,迫使统治者做出艰难抉择:是强硬镇压以维持表面控制,还是妥协安抚却可能激化其他矛盾。

完整事件代码

flavor_dlh.47 = {
	hide_portraits = yes
	type = country_event
	title = flavor_dlh.47.title
	desc = flavor_dlh.47.desc

	illustration_tags = {
		10 = exterior
		10 = angry
	}

	dynamic_historical_event = {
		tag = DLH
		from = 1500.1.1
		to = 1600.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		"culture_percentage_in_country(culture:afghan_culture)" > 0
		any_owned_location = {
			is_capital = no
			any_pop = {
				pop_type = pop_type:nobles
				culture = culture:afghan_culture
			}
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ordered_owned_location = {
			order_by = population
			limit = {
				is_capital = no
				any_pop = {
					pop_type = pop_type:nobles
					culture = culture:afghan_culture
				}
			}
			max = 1
			save_scope_as = target_location
			area = {
				save_scope_as = target_area
			}
		}

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_dlh.47.a
		
		custom_tooltip = {
			text = dlh_afghan_unrest_tt
			scope:target_area = {
				every_location_in_area = {
					limit = {
						owner ?= root
					}
					every_pop = {
						limit = {
							owner = root
							culture = culture:afghan_culture
						}
						add_pop_satisfaction = pop_satisfaction_extreme_penalty
					}
				}
			}
		}
	}

	option = {
		name = flavor_dlh.47.b

		custom_tooltip = {
			text = dlh_afghan_control_tt
			scope:target_area = {
				every_location_in_area = {
					limit = {
						owner ?= root
					}
					change_control = control_extreme_penalty
				}
			}
		}
		
		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_left
		}

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