flavor_fra.2040 常备军建立
时间范围:1450.1.1 - 1475.1.1(每月 25% 概率触发)
触发条件:
- 国家拥有统治者 (
has_ruler = yes)
关键效果:
- 选项 A:建立一支常备军! (历史选项)
- 社会价值观
quality_vs_quantity向左移动 (societal_value_move_to_left) - 国库减少 1000 金币
- 获得国家修正
fra_compagnie_d_ordonnance,持续 20 年 - AI 选择概率基础值:65%
- 社会价值观
- 选项 B:建立一支规模缩减的军队
- 社会价值观
quality_vs_quantity小幅向左移动 (societal_value_minor_move_to_left) - 国库减少 600 金币
- 获得国家修正
fra_scaled_back_company,持续 25 年 - AI 选择概率基础值:20%
- 社会价值观
- 选项 C:重新聚焦于征召兵才是未来的方向!
- 社会价值观
quality_vs_quantity向右移动 (societal_value_move_to_right) - 获得国家修正
fra_renewed_levy_focus,持续 15 年 - AI 选择概率基础值:15%
- 社会价值观
背景介绍: 在百年战争(1337-1453年)的末期,法国国王查理七世深刻认识到依赖封建领主和雇佣兵所带来的军事弱点与政治风险。为了巩固王权、建立一支直接效忠于国王的可靠武装力量,他于1445年颁布敕令,正式创建了“敕令连队”(Compagnies d‘ordonnance)。这是西欧第一支由国家财政供养、常备性质的职业军队,标志着中世纪封建军事体系向近代国家常备军转型的关键一步。该事件模拟了法国在这一时期进行军事改革,在建立常备军、缩减规模维持现状或回归传统征召体系之间做出抉择的历史时刻。
完整事件代码:
flavor_fra.2040 = { # The Compagnie d'Ordonnance ## First Standing Army in Europe
type = country_event
fire_only_once = yes
title = flavor_fra.2040.t
desc = flavor_fra.2040.desc
dynamic_historical_event = {
tag = FRA
from = 1450.1.1
to = 1475.1.1
monthly_chance = 25
}
trigger = {
has_ruler = yes
}
illustration_tags = {
10 = regular
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
ruler ?= {
save_scope_as = ruler_fra
}
}
option = { # Create a standing army!
name = flavor_fra.2040.a
historical_option = yes
change_societal_value = { type = quality_vs_quantity value = societal_value_move_to_left }
add_gold = {
value = -1000
}
add_country_modifier = {
modifier = fra_compagnie_d_ordonnance
years = 20
mode = add
}
ai_chance = {
base = 65
}
}
option = { # Create a scaled back army
name = flavor_fra.2040.b
change_societal_value = { type = quality_vs_quantity value = societal_value_minor_move_to_left }
add_gold = {
value = -600
}
add_country_modifier = {
modifier = fra_scaled_back_company
years = 25
mode = add
}
ai_chance = {
base = 20
}
}
option = { # A renewed focus on Levy recruitment is the way of the future!
name = flavor_fra.2040.c
change_societal_value = { type = quality_vs_quantity value = societal_value_move_to_right }
add_country_modifier = {
modifier = fra_renewed_levy_focus
years = 15
mode = add
}
ai_chance = {
base = 15
}
}
}