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

2105 米兰战役

时间范围:1475.1.1 - 1510.1.1(每月 5% 概率)

触发条件

  • 意大利战争局势 (situation:italian_wars) 处于活跃状态。
  • 法国 (FRA) 当前未处于战争状态 (at_war = no)。
  • 法国拥有统治者 (has_ruler = yes) 或摄政王 (has_regent = yes)。
  • 米兰 (c:MLO) 拥有统治者 (has_ruler = yes) 或摄政王 (has_regent = yes)。
  • 那不勒斯 (c:NAP) 与法国处于联合统治 (in_union_with = root) 或为法国的属国 (is_subject_of = root)。
  • 法国拥有变量 has_variable = naples_under_france

关键效果

  • 选项 A:斯福尔扎必须为他的背叛付出代价 (历史选项)

    • 在米兰首都 (c:MLO.capital) 投下“主张王位”的对抗性炸弹 (antagonism_pressed_claim),效果值为 5
    • 获得对米兰 (c:MLO) 的“宣称王位”宣战理由 (casus_belli:cb_claim_throne),关联角色为法国统治者 (scope:ruler_fra)。
    • 如果法国是“法兰西外国联盟” (international_organization:foreign_league_france) 的领导者,并且米兰是该联盟的成员,则将米兰从该联盟中移除。
    • AI 选择此选项的概率因子为 0.65
  • 选项 B:我们对那不勒斯的征服已经激起了紧张局势,不要再火上浇油了

    • 获得轻微声望惩罚 (add_prestige = prestige_mild_penalty)。
    • 在法国首都 (capital) 投下“放弃宣称”的对抗性炸弹 (antagonism_renounced_claim),效果值为 -5
    • AI 选择此选项的概率因子为 0.35

背景介绍: 在意大利战争期间,法国国王路易十二世继承了前任对米兰公国的领土主张。米兰公国由斯福尔扎家族统治,其统治者曾与法国结盟后又背弃。随着法国成功控制那不勒斯,其势力深入意大利半岛,与米兰的冲突一触即发。此事件反映了法国在巩固南意大利势力后,北上争夺米兰控制权的关键历史节点。

完整事件代码

flavor_fra.2105 = { # Campaign for Milan
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2105.t
 	desc = flavor_fra.2105.desc

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

 	trigger = {
		is_situation_active = situation:italian_wars
		at_war = no
		OR = {
			has_ruler = yes
			has_regent = yes
		}
		c:MLO ?= {
			OR = {
				has_ruler = yes
				has_regent = yes
			}
		}
		c:NAP ?= {
			OR = {
				in_union_with = root
				is_subject_of = root
			}
		}
		has_variable = naples_under_france
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
        ruler_or_regent ?= {
            save_scope_as = ruler_fra
        }
        c:MLO = {
            ruler_or_regent ?= {
                save_scope_as = ruler_mlo
            }
        }
 	}

 	option = { # Sforza must pay for his betrayal
		name = flavor_fra.2105.a
		historical_option = yes
		drop_antagonism_bomb = {
			target = c:MLO.capital
			modifier = antagonism_pressed_claim
			value = 5
		}
		add_casus_belli = {
			target = c:MLO
			type = casus_belli:cb_claim_throne
			character = scope:ruler_fra
		}
		if = {
			limit = {
				is_leader_of_international_organization = international_organization:foreign_league_france
				c:MLO = {
					is_member_of_international_organization = international_organization:foreign_league_france
				}
			}
			international_organization:foreign_league_france = { remove_country_from_international_organization = c:MLO }
		}
		ai_chance = {
			factor = 0.65
		}
 	}

 	option = { # Our conquest of Naples has already stirred tensions, lets not inflame them further
		name = flavor_fra.2105.b
		add_prestige = prestige_mild_penalty
		drop_antagonism_bomb = {
			target = capital
			modifier = antagonism_renounced_claim
			value = -5
		}
		ai_chance = {
			factor = 0.35
		}
 	}
}