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

2106 米兰的命运

时间范围:1490.1.1 - 1510.1.1,每月 100% 概率触发

触发条件

  • 米兰(MLO)是我国的附属国或与我国处于共主联邦关系。
  • “意大利战争”局势处于活跃状态。
  • 我国拥有统治者。
  • 满足以下条件之一:
    • 神圣罗马帝国(HRE)的领导者国家拥有统治者,且与我国没有同盟关系。
    • 存在“神圣罗马帝国外国联盟”组织,且其领导者国家与我国没有同盟关系。

关键效果

  • 选项 A:君主将作为新的米兰公爵进行统治

    • 历史选项
    • 获得少量正统性加成。
    • 米兰对我国增加“法国国王-米兰公爵”信任度。
    • AI选择权重:75%
  • 选项 B:任命一位亲密的米兰盟友进行统治以维护我方利益

    • 米兰获得持续20年的“法国治理”国家修正。
    • 米兰对我国增加“法国-米兰治理”信任度。
    • 在米兰创建一个新的贵族阶层人物(行政40-60,外交32-48,军事20-38),并任命其为新统治者。
    • 如果米兰不是我国的附庸,则使其成为我国的附庸;否则,我国获得少量威望加成。
    • AI选择权重:25%
  • 选项 C:斯福尔扎家族的覆灭正是我们想要的,让米兰人民自己选择新统治者

    • 获得少量正统性加成。
    • 获得少量稳定度加成。
    • 在米兰创建一个新的贵族阶层人物(行政32-50,外交40-65,军事32-49,年龄45岁),并任命其为新统治者。
    • 如果米兰是附属国,则其宗主国将解除与米兰的附属关系。
    • AI选择权重:10%

背景介绍: 此事件模拟了1490年至1510年间,法国在意大利战争期间对米兰公国未来走向的抉择。随着米兰统治者斯福尔扎家族势力的衰落,法国国王面临着如何处置这一关键北意大利邦国的战略决策。选项反映了当时法国可能采取的不同策略:直接吞并并亲自统治、扶植一个亲法的傀儡政权,或者允许米兰恢复独立以换取地区稳定。

完整事件代码

flavor_fra.2106 = { # Fate of Milan
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2106.t
 	desc = flavor_fra.2106.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1490.1.1
		to = 1510.1.1
		monthly_chance = 100
	}

 	trigger = {
		c:MLO ?= {
			OR = {
				is_subject_of = root
				in_union_with = root
			}
		}
		is_situation_active = situation:italian_wars
		has_ruler = yes
		OR = {
			international_organization:hre.leader_country = {
				has_ruler = yes
				NOT = {
					has_mutual_scripted_relation = {
						type = relation_type:alliance
						target = root
					}
				}
			}
			AND = {
				exists = international_organization:foreign_league_hre
				international_organization:foreign_league_hre ?= {
					leader_country = {
						NOT = {
							has_mutual_scripted_relation = {
								type = relation_type:alliance
								target = root
							}
						}
					}
				}
			}
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
        ruler ?= {
            save_scope_as = ruler_fra
        }
		international_organization:hre.leader_country = {
			ruler ?= { save_scope_as = target_hre_ruler }
		}
 	}

 	option = { # The monarch will rule as the new Duke of Milan
		name = flavor_fra.2106.a
		historical_option = yes
		add_legitimacy = legitimacy_mild_bonus
		c:MLO = {
			add_trust = {
				modifier = trust_french_king_duke_of_milan
				target = root
			}
		}
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # Appoint a close Milanese ally to rule in our favor
		name = flavor_fra.2106.b
		c:MLO = { add_country_modifier = { modifier = mlo_french_governance years = 20 mode = add } }
		c:MLO = {
			add_trust = {
				modifier = trust_french_mlo_governance
				target = root
			}
		}
		hidden_effect = {
			c:MLO = {
				create_character = {
					estate = estate_type:nobles_estate
					adm = { 40 60 }
					dip = { 32 48 }
					mil = { 20 38 }
					save_scope_as = new_milan_duke_french_ally
				}
				set_new_ruler = scope:new_milan_duke_french_ally
			}
		}
		if = {
			limit = {
				c:MLO = {
					NOT = {
						is_subject_type  = vassal
					}
				}
			}
			c:MLO = {
				make_subject_of = {
					target = c:FRA
					type = subject_type:vassal
				}
			}
		}
		else = {
			add_prestige = prestige_mild_bonus
		}
		ai_chance = {
			factor = 0.25
		}
 	}

 	option = { # Sforza demise was all we wanted, leave the Milanese people to choose a new ruler
		name = flavor_fra.2106.c
		add_legitimacy = legitimacy_mild_bonus
		add_stability = stability_mild_bonus
		c:MLO = {
			create_character = {
				estate = estate_type:nobles_estate
				adm = { 32 50 }
				dip = { 40 65 }
				mil = { 32 49 }
				age = 45
				save_scope_as = new_milan_duke
			}
			set_new_ruler = scope:new_milan_duke
			if = {
				limit = { is_subject = yes }
				overlord = {
					cancel_subject = root
				}
			}
		}
		ai_chance = {
			factor = 0.1
		}
 	}
}