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

425 龙骑兵驻扎

时间范围:1670.1.1 - 1726.1.1(每月 10% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国家拥有变量 enable_sun_king_events
  • 国家拥有变量 nantes_revoked_by_sun_king

关键效果

  • 选项 A:龙骑兵的驻扎应能防止任何起义
    • 历史选项:是
    • 效果:
      • 增加少量稳定度。
      • 添加国家修正 fra_quartering_of_the_dragoons,持续15年。
      • AI 选择权重:65%。
  • 选项 B:这对国家来说代价太高,放弃这个想法!
    • 效果:
      • 减少少量稳定度。
      • 增加少量正统性。
      • AI 选择权重:35%。

背景介绍: 该事件反映了路易十四统治时期,法国政府为加强对国内(特别是新教地区)的控制而采取的一项政策。在撤销《南特敕令》后,政府派遣龙骑兵(一种兼具骑兵与步兵功能的部队)进驻新教徒家中,名为“驻扎”,实为强制其改信天主教或进行骚扰与勒索,史称“龙骑兵迫害”。此事件是“太阳王”中央集权与宗教统一政策下的具体体现,旨在通过军事威慑防止潜在叛乱,但同时也加剧了社会矛盾并造成了沉重的财政负担。

完整事件代码

flavor_fra.425 = { # Quartering of the Dragoons
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.425.title
 	desc = flavor_fra.425.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1670.1.1
		to = 1726.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		at_war = no
		has_variable = enable_sun_king_events
		has_variable = nantes_revoked_by_sun_king
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

 	option = { # The Quartering of the Dragoons should prevent any uprisings
		name = flavor_fra.425.a
		historical_option = yes
		add_stability = stability_mild_bonus
		add_country_modifier = {
			modifier = fra_quartering_of_the_dragoons
			years = 15
			mode = add
		}
		ai_chance = {
			factor = 0.65
		}
 	}

 	option = { # This would be too costly on the state, abandon the idea!
		name = flavor_fra.425.b
		add_stability = stability_mild_penalty
		add_legitimacy = legitimacy_weak_bonus
		ai_chance = {
			factor = 0.35
		}
 	}
}