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

541 军事学院

时间范围:1740.1.1 - 1783.1.1,每月 10% 概率触发

触发条件

  • 国家拥有统治者 (has_ruler = yes)

关键效果

  • 选项 A:建立学院!

    • 历史选项:是
    • 效果:
      • 国库减少 5.00 规模的金币。
      • 获得 army_tradition_extreme_bonus(陆军传统极大增益)。
      • 社会价值观向“质量 vs 数量”的左侧移动。
      • 添加国家修正 fra_ecole_militaire,持续 10 年。
      • AI 选择概率因子:0.7
  • 选项 B:我们现有的军队很好,加倍维护努力!

    • 效果:
      • 获得 prestige_mild_bonus(威望轻度增益)。
      • 添加国家修正 fra_reinforce_existing_army,持续 10 年。
      • AI 选择概率因子:0.3

背景介绍: 该事件模拟了18世纪中叶法国建立军事学院(École Militaire)的历史决策。这一时期,欧洲各国军事专业化程度不断提高,法国面临着是投资建立一所系统化的军官培训学校以提升军队质量,还是将资源集中于维持和强化现有军队的选择。这一决策将影响法国陆军的传统、社会军事价值观以及长期的军事效能。

完整事件代码

flavor_fra.541 = { # The École Militaire
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.541.title
 	desc = flavor_fra.541.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1740.1.1
		to = 1783.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
 	}

	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 = { # Establish the Academy!
		name = flavor_fra.541.a
		historical_option = yes
		change_gold_effect = { scale = -5.00 }
		add_army_tradition = army_tradition_extreme_bonus
		change_societal_value = { type = quality_vs_quantity value = societal_value_move_to_left }
		add_country_modifier = { modifier = fra_ecole_militaire years = 10 mode = add }
		ai_chance = {
			factor = 0.7
		}
 	}

 	option = { # Our existing army is fine, double maintenance efforts!
		name = flavor_fra.541.b
		add_prestige = prestige_mild_bonus
		add_country_modifier = { modifier = fra_reinforce_existing_army years = 10 mode = add }
		ai_chance = {
			factor = 0.3
		}
 	}
}