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.196] 萨拉热窝的建设

时间范围:1460.1.1 - 1821.1.1(每月 1% 概率)

触发条件

  • 国家拥有 vrhbosna 地区。
  • vrhbosna 地区当前 不是 城市等级(location_rank:city)。

关键效果

  • 选项 A (flavor_tur.196.a):
    • vrhbosna 地区升级为城市等级。
    • 将该地区重命名为 sarajevo
    • 为该地区带来极大的发展度提升(development_extreme_bonus)。
    • 为该地区带来极大的繁荣度提升(prosperity_extreme_bonus)。
    • 国家损失大量金钱(scale = -2)。
  • 选项 B (flavor_tur.196.b):
    • 国家损失少量威望(prestige_mild_penalty)。

背景介绍: 此事件模拟了奥斯曼帝国在征服波斯尼亚后,于弗尔赫波斯纳地区建立并发展重要城市萨拉热窝的历史进程。选择投资建设将使其成为帝国在巴尔干地区的一个繁荣行政与商业中心,但需要耗费巨资;而忽视其发展则会损害国家的威望。

完整事件代码

flavor_tur.196 = {
	hide_portraits = yes
	type = country_event
	title = flavor_tur.196.title
	desc = flavor_tur.196.desc

	dynamic_historical_event = {
		tag = TUR
		from = 1460.1.1
		to = 1821.1.1
		monthly_chance = 1
	}

	fire_only_once = yes

	trigger = {
		owns = location:vrhbosna
		location:vrhbosna = {
			NOT = { location_rank = location_rank:city }
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		location:vrhbosna = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_tur.196.a

		scope:target_location = {
			change_location_rank_effect = { location_rank = location_rank:city }
			rename_location = sarajevo
			change_development = development_extreme_bonus
			change_prosperity = prosperity_extreme_bonus
		}

		change_gold_effect = { scale = -2 }
	}

	option = {
		name = flavor_tur.196.b

		add_prestige = prestige_mild_penalty
	}
}