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.56] 银行倒闭 - 贷款取消

时间范围
事件无 fromto 日期限制,无 monthly_chance 概率设定。

触发条件
事件代码中未定义 trigger 字段,具体触发条件需参考游戏内其他机制。

关键效果

  • 选项 A (flavor_flo.56.a):
    • banking_country_list(银行国家列表)中的每一个贷款,执行 cancel_loan(取消贷款)。

背景介绍
该事件模拟了历史上因银行体系崩溃或金融危机导致的大规模债务豁免情景。当事件触发时,被认定为“银行国家”的实体所持有的贷款将被一笔勾销,反映了在特定经济崩溃时期,债务契约可能被强制废除的历史现象。

完整事件代码

flavor_flo.56 = { # Fall of the Banks - loans are cancelled
	type = country_event
	title = flavor_flo.56.title
	desc = flavor_flo.56.desc
	historical_info = flavor_flo.56.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.56.a

		every_loan = {
			limit = {
				owner ?= {
					is_in_list = banking_country_list
				}
			}
			cancel_loan = this
		}
	}
}