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_mos.105 王储的军事训练

时间范围:1672.1.1 - 1722.1.1,每月 5% 概率触发

触发条件

  • 国家为 MOSRUS
  • 至少有一位特定人物在世:
    • mos_patrick_gordon(帕特里克·戈登)
    • mos_francois_le_fort(弗朗索瓦·勒福特)
  • 当前君主拥有年龄在 6至16岁之间 的继承人。

关键效果

选项 A(历史选项)

  • 花费:减少 3 倍规模的黄金。
  • 继承人效果
    • mos_patrick_gordon 在世,继承人 军事能力 +10
    • mos_francois_le_fort 在世,继承人 军事能力 +10
    • 若继承人本身能力 “伟大”外交能力 > 50,则:
      • 获得持续 1年(可叠加延长)的人物修正 friends_in_all_places
      • 国家 贵族阶层满意度轻微下降
  • 经济影响
    • 首都市场在 3年 内,临时增加对 mos_toy_army_components(玩具军队组件)商品的需求。
  • 标志变量:设置变量 preobrazhensky_semenovsky 的值为 1。
  • AI选择权重:因子为 1。

选项 B

  • 声望:获得 轻微声望加成
  • 继承人效果:继承人 行政能力 +10
  • AI选择权重:因子为 0.5。

背景介绍: 在17世纪末至18世纪初的俄罗斯,沙皇或大公的继承人自幼接受军事教育是培养未来统治者的重要传统。此事件反映了年轻的王储在外国军事顾问(如苏格兰裔的帕特里克·戈登或瑞士裔的弗朗索瓦·勒福特)指导下,进行早期军事训练的场景。这种训练不仅旨在提升继承人的军事素养,也常常伴随着模拟军队的组建(如著名的“玩具军团”),这为后来彼得大帝的军事改革和近卫军(普列奥布拉任斯基团、谢苗诺夫斯基团)的建立埋下了伏笔。

完整事件代码

flavor_mos.105 = {
	type = country_event

	title = flavor_mos.105.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					character:mos_patrick_gordon ?= {
						is_alive = yes
					}
				}
				desc = flavor_mos.105.desc_patrick_gordon
			}
			triggered_desc = {
				trigger = {
					character:mos_francois_le_fort ?= {
						is_alive = yes
					}
				}
				desc = flavor_mos.105.desc_francois_le_fort
			}
			triggered_desc = {
				trigger = {
					character:mos_patrick_gordon ?= {
						is_alive = yes
					}
					character:mos_francois_le_fort ?= {
						is_alive = yes
					}
				}
				desc = flavor_mos.105.desc_both
			}
		}
	}
	image = "gfx/interface/illustrations/institutions/military_revolution.dds"

	fire_only_once = yes

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1672.1.1
		to = 1722.1.1
		monthly_chance = 5
	}

	trigger = {

		OR = {
			character:mos_patrick_gordon ?= {
				is_alive = yes
			}
			character:mos_francois_le_fort ?= {
				is_alive = yes
			}
		}

		heir ?= {
			age_in_years <= 16
			age_in_years >= 6
		}

	}

	immediate = {

		capital = {
			save_scope_as = target_location
		}

		heir = {
			save_scope_as = target_character
		}

		character:mos_patrick_gordon ?= {
			save_scope_as = patrick_gordon
		}
		character:mos_francois_le_fort ?= {
			save_scope_as = francois_le_fort
		}

	}

	option = {
		name = flavor_mos.105.a
		historical_option = yes

		scope:target_character = {

			if = {
				limit = {
					character:mos_patrick_gordon ?= {
					is_alive = yes
					}
				}
				custom_tooltip = {
					text = training_with_gordon
					add_mil = 10
				}
			}

			if = {
				limit = {
					character:mos_francois_le_fort ?= {
					is_alive = yes
					}
				}
				custom_tooltip = {
					text = training_with_le_fort
					add_mil = 10
				}
			}

			if = {
				limit = {
					OR = {
						has_character_modifier = great
						dip > 50
					}
				}
				add_character_modifier = {
					modifier = friends_in_all_places
					years = -1
					mode = add_and_extend
				}
				root = {
					add_estate_satisfaction = { type = estate_type:nobles_estate
						value = estate_satisfaction_mild_penalty
					}
					custom_tooltip = flavor_mos.105.tt1
				}
			}
		}

		change_gold_effect = { scale = -3 }

		custom_tooltip = flavor_mos.105.tt2

		capital.market = {
			add_temporary_demand = {
				type = demand:mos_toy_army_components
				years = 3
			}
		}

		set_variable = {
			name = preobrazhensky_semenovsky
			value = 1
		}

		ai_chance = {
			factor = 1
		}

	}

	option = {
	name = flavor_mos.105.b

		add_prestige = prestige_mild_bonus

		scope:target_character = {
			add_adm = 10
		}

		ai_chance = {
			factor = 0.5
		}

	}

	historical_info = flavor_mos.105.historical_info

}