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.57 德里苏丹国政府改革

时间范围:1350.1.1 - 1380.1.1(每月 3% 概率)

触发条件

  • 事件仅能触发一次。
  • 仅限国家标签为 DLH(德里苏丹国)的国家。
  • 事件在指定时间范围内随机发生。

关键效果

  • 选项 A (flavor_dlh.57.a)
    • 历史选项:是
    • AI 选择权重:1
    • 效果
      1. 如果当前已拥有的改革数量大于或等于政府改革槽位数量,并且存在一个随机的、已保存为 target_reform 的当前改革(优先选择非主要改革),则移除该 target_reform
      2. 解锁政府改革 diwan_i_bandagan
      3. 添加政府改革 diwan_i_bandagan
  • 选项 B (flavor_dlh.57.b)
    • AI 选择权重:0(AI 不会选择此选项)
    • 效果
      1. 解锁政府改革 diwan_i_bandagan

背景介绍: 在德里苏丹国时期,特别是图格鲁克王朝统治下,国家治理体系经历重要演变。Diwan-i-Bandagan(字面意为“奴隶的部门”)是一个由被释放的奴隶或奴隶出身的军官(“班达甘”)组成的行政与军事精英集团。他们最初作为苏丹的个人附庸被培养,后来逐渐在官僚机构和军队中担任要职,成为苏丹对抗传统贵族、巩固中央权力的重要工具。此事件模拟了德里苏丹国引入或强化这一独特治理体系的关键决策时刻。

完整事件代码

flavor_dlh.57 = {
	type = country_event
	title = flavor_dlh.57.title
	desc = flavor_dlh.57.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = DLH
		from = 1350.1.1
		to = 1380.1.1
		monthly_chance = 3
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		random_current_reforms = {
			save_scope_as = target_reform
		}
		random_current_reforms = {
			limit = {
				is_major_reform = no
			}
			save_scope_as = target_reform
		}
	}

	option = {
		name = flavor_dlh.57.a

		ai_chance = {
			factor = 1
		}
		
		historical_option = yes

		if = {
			limit = {
				num_reforms >= modifier:government_reform_slots
				exists = scope:target_reform
			}
			remove_reform = scope:target_reform
		}
		
		unlock_government_reform_effect = {
			type = diwan_i_bandagan
		}
		add_reform = government_reform:diwan_i_bandagan
	}

	option = {
		name = flavor_dlh.57.b

		ai_chance = {
			factor = 0
		}
		
		unlock_government_reform_effect = {
			type = diwan_i_bandagan
		}
	}
}