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.36 奥斯曼迁都埃迪尔内

时间范围

1337.1.1 - 1437.1.1

  • 触发概率:每月 20% 概率

触发条件

  • 拥有 edirne 地区。
  • 拥有 bursa 地区。
  • 首都位于 bursa 地区。
  • 拥有 constantinople 地区。
  • 拥有 ghazi_privilege(加齐特权)阶层特权。

关键效果

选项 A:flavor_tur.36.a

  • 历史选项:是
  • 将首都迁至 edirne 地区。
  • edirne 地区所在省份:
    • 所有地块获得 prosperity_weak_bonus(微弱的繁荣度加成)。
    • 所有尚未拥有核心(core)的地块获得核心。
  • nobles_estate(贵族阶层)增加 estate_satisfaction_mild_bonus(轻微的阶层满意度加成)。
  • bursa 地区:
    • 所有属于玩家的 pop(人口)减少 pop_satisfaction_mild_penalty(轻微的人口满意度惩罚)。
  • 在旧首都(bursa)地区:
    • 如果已有 influence_of_the_old_capital_modifier(旧都影响力)修正,则将其延长30年。
    • 如果没有该修正,则添加一个持续30年的 influence_of_the_old_capital_modifier 修正。

选项 B:flavor_tur.36.b

  • 增加 stability_mild_bonus(轻微的稳定度加成)。

背景介绍

此事件模拟了奥斯曼帝国早期的一次重要政治决策。在14世纪至15世纪初,奥斯曼人从布尔萨(Bursa)的根据地持续扩张。在尚未征服君士坦丁堡(Constantinople)之前,为了更有效地管理新征服的巴尔干领土并巩固对欧洲的攻势,苏丹考虑将首都迁至位于色雷斯的战略要地埃迪尔内(Edirne,旧称阿德里安堡)。这一迁都行为旨在加强帝国在欧洲的行政与军事存在,但也可能引发旧都贵族与民众的不满。

完整事件代码

flavor_tur.36 = {
	type = country_event
	title = flavor_tur.36.title
	desc = flavor_tur.36.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = TUR
		from = 1337.1.1
		to = 1437.1.1
		monthly_chance = 20
	}

	historical_info = flavor_tur.36.historical_info


	trigger = {
		owns = location:edirne
		owns = location:bursa
		capital = location:bursa
		NOT = {
			owns = location:constantinople
		}
		has_estate_privilege = estate_privilege:ghazi_privilege
	}

	immediate = {
		location:edirne = { save_scope_as = target_location }

		capital = { save_scope_as = old_capital_scope }
	}

	option = {
		name = flavor_tur.36.a

		historical_option = yes

		set_capital = location:edirne

		location:edirne.province = {
			custom_tooltip = {
				text = core_and_prosperity_tt
				every_location_in_province = {
					change_prosperity = prosperity_weak_bonus
					if = {
						limit = {
							NOT = {
								integration_level = core
							}
						}
						change_integration_level = core
					}
				}
			}

		}

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

		location:bursa = {
			custom_tooltip = {
				text = all_pops_lose_10_satisfaction_tt
				every_pop = {
					limit = { owner = root }
					add_pop_satisfaction = pop_satisfaction_mild_penalty
				}
			}
		}

		scope:old_capital_scope = {
			if = {
				limit = { has_location_modifier = influence_of_the_old_capital_modifier }
				add_location_modifier = {
					modifier = influence_of_the_old_capital_modifier
					years = 30
					mode = extend
				}
			}
			else = {
				add_location_modifier = {
					modifier = influence_of_the_old_capital_modifier
					years = 30
					mode = replace
				}
			}
		}
	}

	option = {
		name = flavor_tur.36.b

		add_stability = stability_mild_bonus
	}
}