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_kor.23 迁都汉城

时间范围:1390.1.1 - 1450.1.1(每月 10% 概率)

触发条件

  • 国家拥有 namgyeong 地区。
  • 国家首都所在地不是 namgyeong 地区。

关键效果

  • 选项 A (flavor_kor.23.a)
    • 将首都从当前首都迁至 namgyeong 地区。
    • namgyeong 地区重命名为 hanseong
  • 选项 B (flavor_kor.23.b)
    • 获得少量威望加成 (prestige_mild_bonus)。

背景介绍: 此事件模拟了朝鲜王朝早期可能发生的迁都决策。namgyeong(南京,即今首尔地区)在历史上是朝鲜半岛的一个重要地理和政治中心。事件允许统治者在特定时期内,将首都从其他地方迁至此地,并将其正式命名为“汉城”(Hanseong),这为后续的首尔(Seoul)奠定了基础,反映了国家中心的重塑与巩固。

完整事件代码

flavor_kor.23 = {
	type = country_event
	title = flavor_kor.23.title
	desc = flavor_kor.23.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = KOR
		from = 1390.1.1
		to = 1450.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		owns = location:namgyeong
		capital != location:namgyeong
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		location:namgyeong = {
			save_scope_as = target_location
		}

		capital = {
			save_scope_as = current_capital
		}
	}

	option = {
		name = flavor_kor.23.a

		move_capital_event_effect = {
			from = scope:current_capital
			to = scope:target_location
		}

		scope:target_location = {
			rename_location = hanseong
		}
	}

	option = {
		name = flavor_kor.23.b

		add_prestige = prestige_mild_bonus
	}
}