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.1000] 德里苏丹国附属国独立事件

时间范围
无明确时间范围(无 fromto 字段),事件在满足触发条件后可能发生。

触发条件

  • 国家 DLH(德里苏丹国)必须存在。
  • 当前国家是 DLH 的附属国。
  • 宗主国 DLH 当前未处于战争状态。
  • 王朝 lodi_dynasty(洛迪王朝)必须存在。
  • 当前国家的统治者必须属于 lodi_dynasty 王朝。

关键效果

  • 选项 A (flavor_dlh.1000.a)
    • 历史选项:是。
    • 宗主国 DLH 取消与当前国家的附属关系。
    • 对已保存的 target_country(即宗主国 DLH)触发事件 flavor_dlh.1001
  • 选项 B (flavor_dlh.1000.b)
    • 当前国家作为附属国,其 liberty_desire(独立倾向)降低 30。

背景介绍
此事件模拟了德里苏丹国(DLH)统治下,由洛迪王朝统治的附属国寻求独立的场景。在历史上,洛迪王朝是德里苏丹国晚期的统治王朝之一,其统治期间内部权力斗争和附属关系的变化频繁。事件反映了附属国在宗主国未卷入战争时,可能选择脱离宗主国控制或选择妥协以降低独立倾向的历史动态。

完整事件代码

flavor_dlh.1000 = {
	hide_portraits = yes
	type = country_event
	title = flavor_dlh.1000.title
	desc = flavor_dlh.1000.desc
	historical_info = flavor_dlh.1000.historical_info

	illustration_tags = {
		10 = exterior
		10 = armed
	}

	trigger = {
		country_exists = c:DLH
		is_subject_of = c:DLH
		overlord = {
			at_war = no
		}
		exists = dynasty:lodi_dynasty
		ruler ?= {
			has_dynasty = yes
			dynasty = dynasty:lodi_dynasty
		}
	}

	immediate = {
		event_illustration_peasants_foreign_religion_pop_type_effect = yes
		overlord = {
			save_scope_as = target_country
			ruler_or_regent ?= {
				save_scope_as = target_character
			}
		}

		save_scope_as = target_country2

		ruler_or_regent ?= {
			save_scope_as = target_character2
			dynasty ?= {
				save_scope_as = target_dynasty
			}
		}
	}

	option = {
		name = flavor_dlh.1000.a

		historical_option = yes
		
		overlord = {
			cancel_subject = root
		}

		scope:target_country = {
			trigger_event_non_silently = flavor_dlh.1001
		}
	}

	option = {
		name = flavor_dlh.1000.b

		add_liberty_desire = -30
	}
}