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.2030] 勃艮第的崛起

时间范围

1400.1.1 - 1475.1.1,每月 12% 概率触发。

触发条件

  • 国家 英格兰 (ENG) 必须存在。
  • 国家 勃艮第 (BUR) 必须存在。
  • 法兰西 (FRA) 必须满足以下条件之一:
    • 未处于战争中。
    • 英格兰 (ENG) 处于停战状态。
  • 法兰西 (FRA) 必须拥有统治者。
  • 勃艮第 (BUR) 必须是法兰西 (FRA) 的附庸国,并且拥有统治者。
  • 满足以下条件之一:
    • 法兰西地区 (france_region) 中,有超过30个地块的拥有者(或其最高宗主国)是 英格兰 (ENG)。
    • 勃艮第 (BUR) 的附庸忠诚度低于25,并且不是独立或自治附庸。

关键效果

选项 A:勃艮第的领主们必须被制服

  • 历史选项:是
  • 法兰西 (FRA) 获得 极端惩罚 的稳定度。
  • 显示自定义提示 fra_aggression_towards_burgundy
  • 勃艮第 (BUR) 获得 极端增益 的稳定度,其统治者(若存在)的行政、外交、军事能力各增加15点。
  • 法兰西 (FRA) 获得对勃艮第 (BUR) 的 吞并 宣战理由。
  • AI选择此选项的基础概率为 75%

选项 B:我们不能冒险与勃艮第发生更大的冲突

  • 显示自定义提示 fra_neutrality_towards_burgundy
  • 法兰西 (FRA) 获得 轻度惩罚 的威望和稳定度。
  • 勃艮第 (BUR) 获得 极端增益 的稳定度,其统治者(若存在)的行政、外交、军事能力各增加15点。
  • AI选择此选项的基础概率为 25%

背景介绍

在15世纪,勃艮第公国在瓦卢瓦-勃艮第家族的统治下迅速崛起,其领土和影响力急剧扩张,对法兰西王国的中央权威构成了严重挑战。勃艮第公爵作为法兰西王室的封臣,却时常与英格兰结盟,并在百年战争中扮演着关键角色。法兰西王室面临着艰难抉择:是果断压制这个日益强大且可能不忠的附庸,还是为了避免更大的冲突而暂时妥协,容忍其壮大。

事件代码

flavor_fra.2030 = { # Rise of Burgundy # Burgundy has grown too strong
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2030.t
 	desc = flavor_fra.2030.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1400.1.1
		to = 1475.1.1
		monthly_chance = 12
	}

 	trigger = {
		country_exists = c:ENG
		country_exists = c:BUR
		OR = {
			at_war = no
			has_truce_with = c:ENG
		}
		has_ruler = yes
		c:BUR ?= {
			is_subject_of = c:FRA
			has_ruler = yes
		}
		OR = {
			region:france_region = {
				any_location_in_region = {
					owner ?= {
						top_overlord_or_this ?= c:ENG
					}
					count > 30
				}
			}
			c:BUR ?= {
				subject_loyalty < 25
				is_independent_or_autonomous_subject = no
			}
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}	

 	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		cancel_subject = c:BUR	
        ruler ?= {
            save_scope_as = ruler_fra
        }
        c:BUR = {
            ruler ?= {
                save_scope_as = ruler_bur
            }
        }
 	}

 	option = { # The Lords of Burgundy will be brought to heel
		name = flavor_fra.2030.a
		historical_option = yes
		add_stability = stability_extreme_penalty
		custom_tooltip = fra_aggression_towards_burgundy
		c:BUR = {
			add_stability = stability_extreme_bonus
			ruler ?= {
				add_adm = 15
				add_dip = 15
				add_mil = 15
			}
		}
		add_casus_belli =  {
			type = casus_belli:cb_annex
			target = c:BUR
		}
        ai_chance = {
            base = 75
        }
 	}

 	option = { # We cannot risk a larger conflict with Burgundy
		name = flavor_fra.2030.b
		custom_tooltip = fra_neutrality_towards_burgundy
		add_prestige = prestige_mild_penalty
		add_stability = stability_mild_penalty
		c:BUR = {
			add_stability = stability_extreme_bonus
			ruler ?= {
				add_adm = 15
				add_dip = 15
				add_mil = 15
			}
		}
        ai_chance = {
            base = 25
        }
 	}
}