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.29] 疯狂苏丹的统治

时间范围
无具体日期范围(动态事件,触发后立即发生)

触发条件

  • 当前国家统治者拥有变量 dlh_mad_sultan_events

关键效果

  • 选项 A(flavor_dlh.29.a)
    在随机选定的目标区域内,所有本国拥有的地点将获得以下效果:

    • 添加并延长地点修正 dlh_increased_taxes,持续 60 个月
    • 控制度降低(control_mild_penalty
  • 选项 B(flavor_dlh.29.b)
    统治者或摄政者将获得以下效果:

    • 添加并延长人物修正 dlh_restricted_power

背景介绍
该事件描绘了一位被称为“疯狂苏丹”的统治者对国家治理的极端干预。当这位性格乖张、统治方式难以预测的君主掌权时,其决策往往在短期内对地方财政或自身权力产生直接影响,反映了中央集权体制下个人意志对行政体系的冲击。

完整事件代码

flavor_dlh.29 = {
	type = country_event
	title = flavor_dlh.29.title
	desc = flavor_dlh.29.desc
	historical_info = flavor_dlh.29.historical_info

	illustration_tags = {
		10 = exterior
		10 = angry
	}

	trigger = {
		ruler ?= {
			has_variable = dlh_mad_sultan_events
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		random_owned_location = {
			area = {
				save_scope_as = target_area
			}
		}

		ruler ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_dlh.29.a

		custom_tooltip = {
			text = dlh_every_location_in_area_gets_following_tt
			scope:target_area = {
				every_location_in_area = {
					limit = {
						owner ?= root
					}
					add_location_modifier = {
						mode = add_and_extend
						modifier = dlh_increased_taxes
						months = 60
					}
					change_control = control_mild_penalty
				}
			}
		}
	}

	option = {
		name = flavor_dlh.29.b
		
		ruler_or_regent ?= {
			add_character_modifier = {
				mode = add_and_extend 
				modifier = dlh_restricted_power
			}
		}
	}
}