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.8] 恩德伦学院

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

触发条件

  • 国家已拥有 timariots 科技。
  • 国家拥有 constantinople 地区。
  • 国家拥有统治者。

关键效果

  • 选项 A (flavor_tur.8.a) [历史选项]
    • constantinople 地区建造建筑 building_type:enderun_academy
  • 选项 B (flavor_tur.8.b)
    • 设置变量 expanded_timariot_system 为 1。
    • 若当前拥有改革 government_reform:basic_timariot_system,则移除该改革。
    • 添加改革 government_reform:expanded_timariot_system
    • 触发前提:国家未拥有改革 government_reform:expanded_timariot_system

背景介绍: 该事件模拟了奥斯曼帝国在15至16世纪期间,于首都君士坦丁堡建立恩德伦学院的决策。恩德伦学院是奥斯曼帝国培养行政、军事精英的重要机构,其建立反映了帝国在蒂玛尔(Timar)军事采邑制度基础上,进一步系统化官僚与军事人才培养的进程。事件提供了两种发展路径:直接建立学院以提升文化教育,或深化蒂玛尔制度改革以强化军事与行政体系。

完整事件代码

flavor_tur.8 = { #The Enderun Academy
	type = country_event
	title = flavor_tur.8.title
	desc = flavor_tur.8.desc

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

	historical_info = flavor_tur.8.historical_info


	trigger = {
		has_advance = timariots
		owns = location:constantinople

		has_ruler = yes

	}

	option = {
		name = flavor_tur.8.a
		historical_option = yes
		location:constantinople = {
			construct_building = {
				building_type = building_type:enderun_academy
			}
		}

	}
	option = {
		name = flavor_tur.8.b

		trigger = {
			NOT = {
				has_reform = government_reform:expanded_timariot_system
			}
		}

		set_variable = { name = expanded_timariot_system value = 1 }

		if = {
			limit = {
				has_reform = government_reform:basic_timariot_system
			}
			remove_reform = government_reform:basic_timariot_system
		}
		add_reform = government_reform:expanded_timariot_system
	}
}