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_sco.11 迁都伦敦

时间范围

1300.1.1 - 2000.1.1

  • 触发概率:每月 50% 概率

触发条件

  • 国家拥有伦敦地区 (owns = location:london)
  • 国家首都在伦敦地区 (capital != location:london)

关键效果

选项 A:flavor_sco.11.a

  • 获得巨额威望 (add_prestige = prestige_extreme_bonus)
  • 伦敦地区发展度大幅下降 (change_development = development_severe_penalty)
  • 首都地区发展度大幅提升 (change_development = development_severe_bonus)
  • 启动一项为期10年(120个月)的移民潮:
    • 从伦敦地区迁移至首都地区
    • 迁移人口类型:农民 (pop_type:peasants)
    • 迁移比例:25% (amount = 0.250)

选项 B:flavor_sco.11.b

  • 获得巨额稳定度 (add_stability = stability_extreme_bonus)

背景介绍

此事件模拟了苏格兰王国在历史上可能面临的一个重大抉择:在征服英格兰核心地区伦敦后,是否将国家行政中心南迁。选择迁都意味着将政治、经济重心转移至新征服的富庶之地,但可能引发旧都的衰落和人口迁徙;而选择维持现状则能快速巩固国内统治秩序。这反映了中世纪后期王国扩张后,在整合新领土与维持原有统治基础之间的典型矛盾。

完整事件代码

flavor_sco.11 = {
	type = country_event
	title = flavor_sco.11.title
	desc = flavor_sco.11.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = SCO
		from = 1300.1.1
		to = 2000.1.1
		monthly_chance = 50
	}

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

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:burghers background = pop_type:soldiers }
	}
	
	option = {
		name = flavor_sco.11.a
		add_prestige = prestige_extreme_bonus
		location:london = {
			change_development  = development_severe_penalty
		}
		capital = {
			change_development  = development_severe_bonus
		}

		add_migration = {
			owner = this
			from = location:london.province_definition
			to = capital.province_definition
			type = pop_type:peasants
			amount = 0.250
			months = 120
		}

	}
	
	option = {
		name = flavor_sco.11.b
		add_stability = stability_extreme_bonus
	}
}