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.31 布尔萨的繁荣

时间范围

1337.1.1 - 1400.1.1(每月 10% 概率触发)

触发条件

  • 玩家控制的国家(root)是布尔萨(bursa)地区的最高所有者(top_owner)。
  • 布尔萨地区的建筑总等级(total_building_levels)大于等于 20。
  • 布尔萨地区的繁荣度(prosperity)大于 0.6。

关键效果

选项 A:flavor_tur.31.a

  • 使布尔萨地区获得一次微弱的(development_weak_bonus)发展度提升。

选项 B:flavor_tur.31.b

  • 国家损失相当于 3 倍规模(scale = -3)的金钱。
  • 使布尔萨地区获得一次温和的(development_mild_bonus)发展度提升。
  • 使布尔萨所在省份的所有地区获得一次显著的(prosperity_severe_bonus)繁荣度提升。

背景介绍

此事件反映了14世纪奥斯曼帝国早期,其首都布尔萨作为政治、经济和文化中心的崛起。在奥尔汗一世及其继任者的统治下,布尔萨通过兴建清真寺、市场、商队驿站等建筑,吸引了大量商人和学者,城市繁荣度显著提升。该事件模拟了奥斯曼统治者如何通过投资基础设施来巩固其核心领土的繁荣与发展,为帝国未来的扩张奠定基础。事件结束于1400年,暗示了随后帖木儿帝国在1402年对布尔萨的劫掠可能中断了这一发展进程。

完整事件代码

flavor_tur.31 = {
	type = country_event
	title = flavor_tur.31.title
	desc = flavor_tur.31.desc

	historical_info = flavor_tur.31.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1337.1.1
		to = 1400.1.1 #The city was extensively pillaged by the Timurids in 1402
		monthly_chance = 10
	}

	trigger = {
		location:bursa = {
			top_owner = root
			total_building_levels >= 20
			prosperity > 0.6
		}
	}

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

	option = {
		name = flavor_tur.31.a
		scope:target_location = {
			change_development = development_weak_bonus
		}
	}

	option = {
		name = flavor_tur.31.b

		change_gold_effect = { scale = -3 }
		scope:target_location = {
			change_development = development_mild_bonus
			province = {
				every_location_in_province = {
					change_prosperity = prosperity_severe_bonus
				}
			}
		}
	}
}