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.45] 穆罕默德·宾·图格鲁克的货币改革

时间范围

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

触发条件

  • 人物 dlh_muhammad_bin_tughluq 必须存在。
  • 当前国家的统治者或摄政王不是人物 dlh_muhammad_bin_tughluq
  • 国家通货膨胀率大于 0.5

关键效果

选项 A: flavor_dlh.45.a

  • 通货膨胀: 获得 inflation_extreme_bonus 修正。
  • 阶层满意度: 市民阶层 (burghers_estate) 满意度获得 estate_satisfaction_radical_penalty 修正。
  • 国库: 国库金钱减少 2 倍。

选项 B: flavor_dlh.45.b

  • 通货膨胀: 获得 inflation_extreme_penalty 修正。

背景介绍

穆罕默德·宾·图格鲁克是德里苏丹国图格鲁克王朝的苏丹,以其激进且往往考虑不周的经济和社会改革而闻名。他在位期间,为了应对财政危机和货币贬值,推行了大规模的货币改革,包括发行铜币以替代银币。这些措施导致了严重的通货膨胀、经济混乱和民众的普遍不满,最终削弱了帝国的经济基础。

完整事件代码

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

	illustration_tags = {
		10 = interior
		10 = regular
	}

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

	fire_only_once = yes

	trigger = {
		exists = character:dlh_muhammad_bin_tughluq
		OR = {
			AND = {
				has_ruler = yes
				ruler != character:dlh_muhammad_bin_tughluq
			}
			AND = {
				has_regent = yes
				regent != character:dlh_muhammad_bin_tughluq
			}
		}
		inflation > 0.5
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:clergy_estate }
		character:dlh_muhammad_bin_tughluq = {
			save_scope_as = target_character
		}

		ruler_or_regent ?= {
			save_scope_as = target_character2
		}
	}

	option = {
		name = flavor_dlh.45.a
		
		add_inflation = inflation_extreme_bonus

		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_radical_penalty
		}

		change_gold_effect = { scale = -2 }
	}

	option = {
		name = flavor_dlh.45.b
		
		add_inflation = inflation_extreme_penalty
	}
}