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.2100 意大利事务

时间范围:1444.1.1 - 1510.1.1,每月 5% 概率触发

触发条件

  • 国家处于和平状态(at_war = no)。
  • 国家拥有统治者或摄政王(has_ruler = yeshas_regent = yes)。
  • 意大利战争局势(situation:italian_wars)处于活跃状态。
  • 国家是国际组织“外国联盟-法国”(international_organization:foreign_league_france)的领导者。

关键效果

  • 历史选项:我们应当对意大利诸邦保持警惕(中立)
    • 增加少量正统性(add_legitimacy = legitimacy_mild_bonus)。
    • 为国家添加修正“对意大利的中立政策”(fra_neutral_policy_towards_italy),持续180个月。
    • AI选择概率:34%。
  • 在这些邦国中,法国可以找到宝贵的盟友(友好)
    • 解锁“正式化关系”行动(custom_tooltip = unlocks_formalize_relations_action)。
    • 设置变量 enabled_formalized_relations = yes,持续25年。
    • AI选择概率:33%。
  • 这些邦国在我们的保护下会更好(支配)
    • 降低在意大利发动战役的冷却时间(custom_tooltip = lower_cooldown_campaign_in_italy_tt)。
    • 设置变量 lower_cooldown_campaign_in_italy_variable = yes,持续20年。
    • AI选择概率:33%。

背景介绍: 15世纪末至16世纪初,意大利半岛因其财富、文化中心地位以及政治上的分裂,成为欧洲各大国(尤其是法国、西班牙和神圣罗马帝国)角逐的舞台。法国瓦卢瓦王朝的国王们,特别是查理八世和路易十二,对意大利诸邦(如米兰、那不勒斯)宣称拥有继承权,并多次发动军事远征,开启了长达数十年的“意大利战争”。该事件反映了法国王室在战争间隙,对如何处置与意大利诸邦关系所面临的不同战略选择:是保持警惕中立、寻求盟友,还是谋求直接控制。

完整事件代码

flavor_fra.2100 = { # The Affairs of Italy
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2100.t
 	desc = flavor_fra.2100.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1444.1.1
		to = 1510.1.1
		monthly_chance = 5
	}

 	trigger = {
		at_war = no
		OR = {
			has_ruler = yes
			has_regent = yes
		}
		is_situation_active = situation:italian_wars
		is_leader_of_international_organization = international_organization:foreign_league_france
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}	

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		set_variable = { name = france_italian_interests value = 1 }	
		ruler_or_regent ?= {
            save_scope_as = fra_ruler
        }
 	}

 	option = { # We should maintain a watchful eye over the Italian states # Neutral
		name = flavor_fra.2100.a
		historical_option = yes
		add_legitimacy = legitimacy_mild_bonus
		add_country_modifier = { modifier = fra_neutral_policy_towards_italy months = 180 mode = add }
		ai_chance = {
			factor = 0.34
		}
 	}

 	option = { # Among these states, France could find valuable allies # Cordial
		name = flavor_fra.2100.b
		custom_tooltip = unlocks_formalize_relations_action
		set_variable = { name = enabled_formalized_relations value = yes years = 25 }
		ai_chance = {
			factor = 0.33
		}
 	}

 	option = { # These states would be better served under our protection # Domineering
		name = flavor_fra.2100.c
		custom_tooltip = lower_cooldown_campaign_in_italy_tt
		set_variable = { name = lower_cooldown_campaign_in_italy_variable value = yes years = 20 }
		ai_chance = {
			factor = 0.33
		}
 	}
}