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_ser.170] 贝尔格莱德——白凤凰

时间范围

1350.1.1 - 1836.1.1,每月有 10% 的概率触发。

触发条件

  • 国家拥有 belgrad 地区。
  • belgrad 地区是国家的首都。
  • balkan_region 区域内,除了 belgrad 地区本身外,没有任何其他地区的人口大于或等于 belgrad 地区的人口。

关键效果

选项: flavor_ser.170.a

  • 为国家增加 prestige_severe_bonus 声望。
  • belgrad 地区:
    • 增加 prosperity_severe_bonus 繁荣度。
    • 添加一个名为 ser_the_white_phoenix 的地区修正,持续 10 年(模式为叠加并延长)。

背景介绍

该事件描绘了贝尔格莱德作为塞尔维亚核心与象征的崛起。当贝尔格莱德不仅是首都,而且在巴尔干地区的人口与影响力无出其右时,它被赋予了“白凤凰”的称号,象征着从灰烬中重生并达到新的繁荣与威望高度。

完整事件代码

flavor_ser.170 = { # Belgrade - the White Phoenix
	type = country_event
	title = flavor_ser.170.title
	desc = flavor_ser.170.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = SER
		from = 1350.1.1
		to = 1836.1.1
		monthly_chance = 10
	}

	trigger = {
		owns = location:belgrad
		location:belgrad = {
			is_capital = yes
		}
		region:balkan_region = {
			NOT = {
				any_location_in_region = {
					NOT = { this = location:belgrad }
					population >= location:belgrad.population
				}
			}
		}
	}

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

	option = {
		name = flavor_ser.170.a
		add_prestige = prestige_severe_bonus
		location:belgrad = {
			change_prosperity = prosperity_severe_bonus
			add_location_modifier = { modifier = ser_the_white_phoenix years = 10 mode = add_and_extend } 
		}
	}
}