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_hab.1903] 宫廷银行家在战时提供资金

时间范围

  • 起始日期:1655年1月1日
  • 结束日期:1740年1月1日
  • 触发概率:每月 1% 概率

触发条件

  • 人物条件:以下至少一位人物在内阁中:
    • hab_samuel_oppenheimer
    • hab_samson_wertheimer
  • 领地条件
    • 拥有 vienna 地区
    • vienna 地区的民用建筑数量大于 4

关键效果

  • 选项名称flavor_hab.1903.a
  • 效果
    • 增加金币(规模为 8)
    • 增加轻度通货膨胀惩罚

背景介绍

该事件模拟了17世纪末至18世纪初,哈布斯堡君主国在战争时期依赖宫廷银行家(如塞缪尔·奥本海默和萨姆森·韦特海默)提供紧急财政支持的历史情景。这些犹太银行家通过复杂的金融网络为奥地利宫廷筹措军费,以应对频繁的军事冲突(如大土耳其战争、西班牙王位继承战争等),但他们的贷款也常常导致国家财政紧张和通货膨胀压力上升。

完整事件代码

flavor_hab.1903 = { #The Court Bankers finance in wartime
	type = country_event
	title = flavor_hab.1903.title
	desc = flavor_hab.1903.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1655.1.1
		to = 1740.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		character:hab_samuel_oppenheimer = {
			if = {
				limit = {
					in_cabinet = yes
				}
			}
			save_scope_as = target_character
		}
		character:hab_samson_wertheimer = {
			if = {
				limit = {
					in_cabinet = yes
					character:hab_samuel_oppenheimer = {
						in_cabinet = no
					}
				}
			}
			save_scope_as = target_character
		}
		location:vienna = {
			save_scope_as = target_location
		}
	}

	trigger = {
		OR = {
			character:hab_samuel_oppenheimer = {
				in_cabinet = yes
			}
			character:hab_samson_wertheimer = {
				in_cabinet = yes
			}
		}
		owns = location:vienna
		location:vienna = {
			num_civil_constructions > 4
		}
	}

	option = {
		name = flavor_hab.1903.a

		change_gold_effect = { scale = 8 }
		add_inflation = inflation_mild_penalty
	}
}