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.417] 法国的天然疆界

时间范围

1665.1.1 - 1726.1.1(每月 10% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国家拥有变量 enable_sun_king_events
  • 存在任意邻国,该邻国:
    • 不是法兰西(FRA)的附庸。
    • 拥有至少一个省份,该省份满足条件 valid_french_lowlands_target_location = yes

关键效果

选项 A:我们早就该夺取这些领土了

  • 历史选项:是
  • 效果:
    • 自定义提示:claims_on_lowland_culture_countries
    • 若存在统治者,为其增加 4 行政点数、4 外交点数、8 军事点数。
    • 对每一个满足触发条件的邻国:
      • 增加对法兰西(FRA)的负面看法,修正为 lowlands_devolution_french_ambitions
      • 隐藏效果:在该邻国所有满足 valid_french_lowlands_target_location = yes 条件的省份中,选取人口最多的一个省份,使法兰西(FRA)获得对该省份的“征服省份”宣战理由。
    • AI 选择权重因子:0.7

选项 B:与神圣罗马帝国挑起更大的冲突是不明智的

  • 效果:
    • 在首都省份施加“放弃宣称”的对抗性影响,数值为 -5。
    • 若存在统治者,为其增加 8 行政点数、8 外交点数。
    • AI 选择权重因子:0.3

背景介绍

该事件模拟了路易十四时期法国追求其“天然疆界”的外交与军事政策,特别是针对低地地区的领土主张。这一时期,法国以“遗产战争”等名义,试图将莱茵河、阿尔卑斯山和比利牛斯山作为其自然边界,从而与西班牙和神圣罗马帝国等势力发生冲突。事件反映了法国在“太阳王”统治下扩张领土、巩固霸权的野心,以及由此引发的欧洲地缘政治紧张局势。

完整事件代码

flavor_fra.417 = { # France's Natural Borders # Based on the Wars of Devolution
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.417.title
 	desc = flavor_fra.417.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1665.1.1
		to = 1726.1.1
		monthly_chance = 10
	}
	image = "gfx/interface/illustrations/government/throne_rooms/throne_room_north_german.dds"
 	trigger = {
		has_ruler = yes
		at_war = no
		has_variable = enable_sun_king_events
		any_neighbor_country = {
			NOT = {
				is_subject_of = c:FRA
			}
			any_owned_location = {
				valid_french_lowlands_target_location = yes

			}
		}
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

 	option = { # It is long past time we seized these territories
		name = flavor_fra.417.a
		historical_option = yes
		custom_tooltip = claims_on_lowland_culture_countries
		ruler ?= {
			add_adm = 4
			add_dip = 4
			add_mil = 8
		}
		every_neighbor_country = {
			limit = {
				NOT = {
					is_subject_of = c:FRA
				}
				any_owned_location = {
					valid_french_lowlands_target_location = yes
				}
			}
			add_opinion = { target = root modifier = lowlands_devolution_french_ambitions }
			hidden_effect = {
				ordered_owned_location = {
					limit = {
						valid_french_lowlands_target_location = yes
					}
					max = 1
					order_by = population
					c:FRA = { add_casus_belli =  { type = casus_belli:cb_conquer_province target = prev.owner province = prev.province } }
				}
			}
		}
		ai_chance = {
			factor = 0.7
		}
 	}

 	option = { # It would be unwise to stir a greater conflict with the Holy Roman empire
		name = flavor_fra.417.b
		drop_antagonism_bomb = {
			target = capital
			modifier = antagonism_renounced_claim
			value = -5
		}
		ruler ?= {
			add_adm = 8
			add_dip = 8
		}
		ai_chance = {
			factor = 0.3
		}
 	}
}