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.15] 洛迪王朝的统治危机

时间范围

1400.1.1 - 1500.1.1,每月有 2% 的概率触发。

触发条件

  • 洛迪王朝 (dynasty:lodi_dynasty) 必须存在。
  • 当前统治者或摄政时的继承人必须属于洛迪王朝。

关键效果

  • 选项 A (flavor_dlh.15.a)

    • 合法性:轻微惩罚 (legitimacy_mild_penalty)
    • 稳定度:轻微惩罚 (stability_mild_penalty)
  • 选项 B (flavor_dlh.15.b)

    • 国库:损失金钱 (change_gold_effect = { scale = -2 })
  • 选项 C (flavor_dlh.15.c)

    • 触发前提:当前统治者或摄政时的继承人拥有“正直”特质 (righteous)。
    • 合法性:轻微增益 (legitimacy_mild_bonus)

背景介绍

在15世纪的德里苏丹国,洛迪王朝的统治并非一帆风顺。王朝内部时常面临来自贵族、地方势力或自身决策失误带来的挑战。此事件模拟了统治者在面对内部压力或治理困境时,可能做出的不同选择及其带来的政治与财政后果。选项反映了通过牺牲合法性、消耗国库财富或依靠个人美德来应对危机的不同路径。

完整事件代码

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

	illustration_tags = {
		10 = interior
		10 = angry
	}

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

	fire_only_once = yes

	trigger = {
		exists = dynasty:lodi_dynasty
		ruler_or_heir_if_regent ?= {
			dynasty ?= dynasty:lodi_dynasty
		}	
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler_or_heir_if_regent ?= {
			save_scope_as = target_character
		}	
	}

	option = {
		name = flavor_dlh.15.a
		
		add_legitimacy = legitimacy_mild_penalty
		add_stability = stability_mild_penalty
	}

	option = {
		name = flavor_dlh.15.b
		
	change_gold_effect = { scale = -2 }
	}

	option = {
		name = flavor_dlh.15.c
		
		trigger = {
			ruler_or_heir_if_regent ?= {
				has_trait = righteous
			}	
		}

		add_legitimacy = legitimacy_mild_bonus
	}
}