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_fra.1162] 处理“自由连队”(Routiers)

时间范围:1346年6月1日 - 1364年1月1日(每月 100% 概率)

触发条件

  • 国家为法兰西(tag = FRA)。
  • 国家处于和平状态(at_war = no)。
  • 国家拥有变量 fra_allowed_routiers_to_roam
  • 在法兰西地区(region:france_region)内,不存在任何拥有省份修正 fra_routiers_looted_province 的地点。

关键效果

  • 选项:和平得以恢复
    • 效果
      • 获得大量稳定度加成(add_stability = stability_severe_bonus)。
      • 移除国家变量 fra_allowed_routiers_to_roam
    • AI倾向:基础权重为1(base = 1)。

背景介绍: 此事件模拟了百年战争初期,法国在经历克雷西战役(1346年)等重大失败后,国内面临的一个严峻问题:大量被解散或溃散的雇佣兵(被称为“Routiers”或“自由连队”)在和平时期并未散去,反而在乡村地区流窜、劫掠,成为地方治安的巨大威胁。事件标题“Routiers handled”暗示了法国王室最终需要处理这些失控的军事力量。代码中的动态历史事件注释指向了法国著名将领贝特朗·杜·盖克兰(Bertrand du Guesclin),他在1360年代初期成功地将许多这类“自由连队”引向伊比利亚半岛参加卡斯蒂利亚王位继承战争,从而解除了法国本土的危机。本事件标志着这一混乱时期的结束与国内秩序的初步恢复。

完整事件代码

flavor_fra.1162 = { # Routiers handled
	type = country_event
	title = flavor_fra.1162.title
	desc = flavor_fra.1162.desc
	fire_only_once = yes
	
	illustration_tags = {
		10 = happy
		10 = exterior
	}
	
	dynamic_historical_event = { # Historically handled by Bertrand du Guesclin 
		tag = FRA
		from = 1346.6.1
		to = 1364.1.1
		monthly_chance = 100
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
	}
	
	trigger = {
		tag = FRA
		at_war = no
		has_variable = fra_allowed_routiers_to_roam
		region:france_region = {
			any_location_in_region = {
				has_location_modifier = fra_routiers_looted_province
				count < 1
			}
		}
	}

	option = { # Peace is restored
		name = flavor_fra.1162.a
		add_stability = stability_severe_bonus
		remove_variable = fra_allowed_routiers_to_roam
		ai_chance = {
			base = 1
		}
	}
}