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.441 沃邦的工程学

时间范围:1657.1.1 - 1726.1.1,每月 10% 概率触发

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 名为 vauban 的角色存活。

关键效果

  • 选项 A:让我们雇佣他的筑城专长!
    • 历史选项:是
    • 效果:
      • 为国家添加名为 fra_vauban_fortification 的修正,持续15年。
      • 将社会价值观 offensive_vs_defensive 向右移动(偏向防御)。
      • AI选择权重:50%
  • 选项 B:最好的防御,永远是优秀的进攻
    • 效果:
      • 为国家添加名为 fra_favoring_offense_over_vauban_defense 的修正,持续15年。
      • 将社会价值观 offensive_vs_defensive 向左移动(偏向进攻)。
      • AI选择权重:50%

背景介绍: 塞巴斯蒂安·勒普雷斯特雷·德·沃邦是路易十四时期法国著名的军事工程师,以其革命性的星形要塞设计和系统的攻城战术而闻名。他的防御工事体系极大地提升了法国边境的防御能力,代表了17世纪末至18世纪初军事工程学的巅峰。此事件反映了法国在和平时期,面临是采纳沃邦的防御理念以巩固国土,还是坚持传统进攻战略的抉择。

完整事件代码

flavor_fra.441 = { # The Engineering of Vauban
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.441.title
 	desc = flavor_fra.441.desc

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

 	trigger = {
		has_ruler = yes
		at_war = no
		character:vauban ?= { is_alive = 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
        }
		character:vauban ?= {
			save_scope_as = target_character
		}
	}

 	option = { # Let us employ his fortification expertise!
		name = flavor_fra.441.a
		historical_option = yes
		add_country_modifier = { modifier = fra_vauban_fortification years = 15 mode = add }
		change_societal_value = { type = offensive_vs_defensive value = societal_value_move_to_right }
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # The best defense, will always be a good offense
		name = flavor_fra.441.b
		add_country_modifier = { modifier = fra_favoring_offense_over_vauban_defense years = 15 mode = add }
		change_societal_value = { type = offensive_vs_defensive value = societal_value_move_to_left }
		ai_chance = {
			factor = 0.5
		}
 	}

}