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_flo.55] 银行倒闭 - 贷款转移至佛罗伦萨

时间范围

此事件为动态历史事件,无固定的 fromto 日期范围。其触发依赖于游戏进程中的特定条件,而非固定时间点。

触发条件

此事件代码中未直接定义 trigger 字段。通常,动态历史事件的触发条件由游戏引擎根据 historical_info 描述的背景和游戏状态动态计算,具体条件需参考游戏内部逻辑或相关事件链。

关键效果

  • 选项flavor_flo.55.a
    • 效果:遍历所有贷款。
      • 条件:贷款的原始所有者(owner)是 banking_country_list(银行国家列表)中的成员。
      • 操作:将这些符合条件的贷款的所有权转移给国家 c:FLO(佛罗伦萨)。

背景介绍

此事件模拟了历史上欧洲银行业危机的一个场景,特别是与佛罗伦萨金融业相关的动荡。佛罗伦萨在中世纪晚期和文艺复兴时期是欧洲的金融中心之一,其银行家族(如美第奇家族)的业务遍布各国。当其他地区的银行或金融家破产时,其未偿还的债务(贷款)有时会被转移或集中到佛罗伦萨的金融机构手中,这反映了当时复杂的国际信贷网络和风险传导机制。事件展现了佛罗伦萨在吸收和处理欧洲金融体系冲击中所扮演的角色。

完整事件代码

flavor_flo.55 = { # Fall of the Banks - loans are transferred to florence
	type = country_event
	title = flavor_flo.55.title
	desc = flavor_flo.55.desc
	historical_info = flavor_flo.55.historical_info

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_flo.55.a

		every_loan = {
			limit = {
				owner ?= {
					is_in_list = banking_country_list
				}
			}
			change_loan_owner = c:FLO
		}
	}
}