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.41] 米兰与帕维亚的繁荣建设

时间范围:1360.1.1 - 1500.1.1(每月 10% 概率)

触发条件

  • 国家处于和平且富裕状态(peaceful_and_rich = yes)。
  • 国家拥有米兰(location:milano)和帕维亚(location:pavia)这两个地区。

关键效果

  • 选项 A (历史选项)
    • 支付一笔金币,金额为米兰和帕维亚两地税收基础值之和的 -6 倍(即扣除该金额)。
    • 在米兰与帕维亚之间修建一条铺砌道路(paved_road)。
    • 为米兰和帕维亚两地添加一个名为 mlo_naviglaccio 的地点修正,持续时间为永久(years = -1)。
  • 选项 B
    • 获得少量稳定性加成(stability_mild_bonus)。

背景介绍: 在14至15世纪,米兰公国处于一个相对和平与繁荣的时期。作为北意大利的经济与文化中心,米兰及其邻近的帕维亚拥有强大的商业阶层(市民阶层)。此事件反映了公国利用其财富进行重大基础设施投资的决策时刻,特别是连接两大重要城市、促进贸易与交通的道路建设,以及可能与之相关的水利工程(如“Navigli”运河系统)的推进,这些建设巩固了该地区长期的经济优势。

完整事件代码

flavor_mlo.41 = {
	type = country_event
	title = flavor_mlo.41.title
	desc = flavor_mlo.41.desc
	historical_info = flavor_mlo.41.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1360.1.1
		to = 1500.1.1
		monthly_chance = 10
	}

	trigger = {
		peaceful_and_rich = yes
		owns = location:milano
		owns = location:pavia
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		location:milano = {
			save_scope_as = target_location
		}
		location:pavia = {
			save_scope_as = target_location2
		}
	}

	option = {
		name = flavor_mlo.41.a

		historical_option = yes

		add_gold = {
			value = scope:target_location.location_tax_base
			add = {
				value = scope:target_location2.location_tax_base
			}
			multiply = -6.00
		}
		scope:target_location = {
			add_road_to = {
				target = scope:target_location2
				type = paved_road
			}
		}
		scope:target_location = {
			add_location_modifier = {
				modifier = mlo_naviglaccio
				years = -1
			}
		}
		scope:target_location2 = {
			add_location_modifier = {
				modifier = mlo_naviglaccio
				years = -1
			}
		}
	 }

	option = {
		name = flavor_mlo.41.b

		add_stability = stability_mild_bonus
	}
}