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_mlo.5 洛迪和约

时间范围
该事件为动态历史事件,代码中未指定 fromto 日期,也未定义 monthly_chance 概率。

触发条件
该事件代码中未包含 trigger 字段,因此没有明确的游戏内触发条件。

关键效果
事件提供一个选项:

  • 选项 A (flavor_mlo.5.a):
    • 如果事件触发国 不是 佛罗伦萨 (FLO),则佛罗伦萨获得对触发国的“mlo_peace_of_lodi”观点修正。
    • 如果事件触发国 不是 那不勒斯 (NAP),则那不勒斯获得对触发国的“mlo_peace_of_lodi”观点修正。
    • 如果事件触发国 不是 威尼斯 (VEN),则威尼斯获得对触发国的“mlo_peace_of_lodi”观点修正。
    • 如果事件触发国 不是 米兰 (MLO),则米兰获得对触发国的“mlo_peace_of_lodi”观点修正。
    • 该选项代码中未标记 historical_option = yes

背景介绍
洛迪和约(Peace of Lodi)于1454年签订,结束了米兰公国与威尼斯共和国之间长达数十年的战争。该和约不仅确立了双方在意大利北部的势力范围,还促成了包括佛罗伦萨、那不勒斯和教皇国在内的“意大利联盟”(Italic League),为亚平宁半岛带来了近四十年的相对和平时期,被视为意大利文艺复兴政治稳定的基石之一。

完整事件代码

flavor_mlo.5 = {
	type = country_event
	title = flavor_mlo.5.title
	desc = flavor_mlo.5.desc
	
	illustration_tags = {
        10 = happy
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_mlo.5.a
		if = {
			limit = {
				NOT = { root = c:FLO }
			}
			c:FLO = {
				add_opinion = { target = root modifier = mlo_peace_of_lodi }
			}
		}
		if = {
			limit = {
				NOT = { root = c:NAP }
			}
			c:NAP = {
				add_opinion = { target = root modifier = mlo_peace_of_lodi }
			}
		}
		if = {
			limit = {
				NOT = { root = c:VEN }
			}
			c:VEN = {
				add_opinion = { target = root modifier = mlo_peace_of_lodi }
			}
		}
		if = {
			limit = {
				NOT = { root = c:MLO }
			}
			c:MLO = {
				add_opinion = { target = root modifier = mlo_peace_of_lodi }
			}
		}

	}
}