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_kbo.2] 迁都恩加扎尔加穆

时间范围:1430.1.1 - 1550.1.1,每月 1% 概率触发

触发条件

  • 拥有 ngazargamu 地区
  • 首都ngazargamu 地区
  • 国家 YAO 存在
  • 处于和平状态(未处于战争中)

关键效果

  • 选项 A (flavor_kbo.2.a)
    • 如果 ngazargamu 地区当前为 rural_settlement(乡村定居点)等级,则将其提升为 town(城镇)等级。
    • 将首都迁至 ngazargamu 地区。
    • (历史选项)
  • 选项 B (flavor_kbo.2.b)
    • 获得 stability_extreme_bonus(极高的稳定度加成)。

背景介绍: 此事件模拟了卡努里-博尔努帝国(KBO)在15世纪中期可能做出的迁都决策。恩加扎尔加穆(Ngazargamu)作为帝国的重要城市,其战略位置和政治意义可能促使统治者考虑将行政中心迁移至此,以加强对核心区域的控制或应对周边局势(如邻国YAO的存在)。另一个选项则代表了维持现状,通过巩固内部稳定来应对挑战。

完整事件代码

flavor_kbo.2 = {
	type = country_event
	title = flavor_kbo.2.title
	desc = flavor_kbo.2.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = KBO
		from = 1430.1.1
		to = 1550.1.1
		monthly_chance = 1
	}
	
	
	trigger = {
		owns = location:ngazargamu
		NOT = { capital = location:ngazargamu }
		country_exists = c:YAO
		at_war = no
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		location:ngazargamu = { save_scope_as = target_location }
		c:YAO = { save_scope_as = target_country }
	}

	option = {
		name = flavor_kbo.2.a
		location:ngazargamu = {
			if = {
				limit = {
					location_rank = location_rank:rural_settlement
				}
				change_location_rank = location_rank:town
			}
		}
		
		set_capital = location:ngazargamu
		historical_option = yes
		
	}
	option = {
		name = flavor_kbo.2.b
		add_stability = stability_extreme_bonus
	}
}