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_tur.93 奥斯曼郁金香狂热

时间范围:1537.1.1 - 1637.1.1(每月 5% 概率触发)

触发条件

  • 国家拥有统治者 (has_ruler = yes)

关键效果

  • 选项 A (历史选项)
    • 国库减少3倍规模的金币 (change_gold_effect = { scale = -3 })
    • 贵族阶层满意度增加0.20 (add_estate_satisfaction = { type = estate_type:nobles_estate value = 0.20 })
    • 当前统治者外交能力增加5点 (add_dip = 5)
  • 选项 B
    • 当前统治者军事能力增加3点 (add_mil = 3)

背景介绍: 该事件模拟了奥斯曼帝国历史上著名的“郁金香狂热”时期。在16至17世纪,郁金香从奥斯曼帝国传入欧洲,并在帝国上层社会成为一种奢侈和地位的象征,引发了对其的狂热追捧和投机。这一现象不仅影响了社会文化,也消耗了大量宫廷财富,并可能对统治者的治理倾向产生影响。

完整事件代码

flavor_tur.93 = { #The Ottoman Tulip Fever
	type = country_event
	title = flavor_tur.93.title
	desc = flavor_tur.93.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1537.1.1
		to = 1637.1.1
		monthly_chance = 5
	}

	historical_info = flavor_tur.93.historical_info


	trigger = {

		has_ruler = yes
	}

	immediate =  {
		capital = {
			save_scope_as = capital_location
		}

		root.ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_tur.93.a
		historical_option = yes

		change_gold_effect = { scale = -3 }

		add_estate_satisfaction = { type = estate_type:nobles_estate value = 0.20 }

		scope:target_ruler = {
			add_dip = 5
		}
	}
	option = {
		name = flavor_tur.93.b

		scope:target_ruler = {
			add_mil = 3
		}
	}
}