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

1171 盖克兰的费边战略

时间范围:1354.6.1 - 1380.1.1(每月 20% 概率)

触发条件

  • 人物 bertrand_guesclin 必须存活。

关键效果

  • 选项 A:贝特朗将在战场上造成破坏
    • 历史选项:是
    • 为人物 bertrand_guesclin 添加持续 300 个月的修正项 guesclin_fabian_strats
    • AI 选择概率:75%
  • 选项 B:让其他法国将领采用贝特朗的战术
    • 为军队传统添加 army_tradition_extreme_bonus
    • 改变社会价值观:quality_vs_quantity 向左侧移动。
    • AI 选择概率:15%
  • 选项 C:我们不需要改变战略
    • 增加声望 prestige_mild_bonus
    • AI 选择概率:10%

背景介绍: 该事件模拟了百年战争期间,法国著名军事指挥官贝特朗·杜·盖克兰可能采取的战略抉择。盖克兰以其非传统的游击和消耗战术(即“费边战略”)而闻名,这些战术旨在避免与英格兰军队进行大规模正面决战,转而通过袭扰、破坏敌方领土和消耗其资源来赢得优势。事件反映了法国王室在面对强大敌军时,在采纳创新战术、推广新思想或维持现状之间的决策。

完整事件代码

flavor_fra.1171 = { ## Guesclin's Fabian Strategy
	type = country_event
	title = flavor_fra.1171.title
	desc = flavor_fra.1171.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1354.6.1
		to = 1380.1.1
		monthly_chance = 20
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		character:bertrand_guesclin ?= { is_alive = yes }
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		character:bertrand_guesclin ?= {
			save_scope_as = bertrand_guesclin
		}
	}

	option = { # Bertrand will inflict devastation on the Battlefield
		name = flavor_fra.1171.a
		historical_option = yes
		scope:bertrand_guesclin = {
			add_character_modifier = {
				modifier = guesclin_fabian_strats
				months = 300
				mode = add
			}
		}
		ai_chance = {
			base = 75
		}
	}

	option = { # Employ the others French leaders to adopt Bertrand's tactics
		name = flavor_fra.1171.b
		add_army_tradition = army_tradition_extreme_bonus
		change_societal_value = { type = quality_vs_quantity value = societal_value_move_to_left }
		ai_chance = {
			base = 15
		}
	}

	option = { # We require no change in strategy
		name = flavor_fra.1171.c
		add_prestige = prestige_mild_bonus
		ai_chance = {
			base = 10
		}
	}
}