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

507 约翰·劳的刺激计划

事件ID: flavor_fra.507

时间范围 1714.1.1 - 1736.1.1 (每月 20% 概率)

触发条件

  • 国家拥有统治者 (has_ruler = yes)

关键效果

  • 选项 A: 让劳来掌舵! (历史选项)
    • 人物 target_artist (约翰·劳) 加入本国。
    • 添加国家修正 fra_john_law_stimulus,持续 10 年。
    • AI 选择概率:80%。
  • 选项 B: 他的想法只会带来更多毁灭!
    • 添加国家修正 fra_late_stagnant_economy,持续 8 年。
    • 隐藏效果:静默处决人物 target_artist (约翰·劳)。
    • AI 选择概率:20%。

背景介绍 此事件模拟了苏格兰经济学家约翰·劳在18世纪初对法国财政的影响。路易十四去世后,法国面临严重的财政危机和债务问题。约翰·劳提出了通过建立国家银行、发行纸币和推动密西西比公司开发殖民地来刺激经济的激进方案。他的理论在初期带来了短暂的经济繁荣,但最终因投机泡沫破裂而失败,导致了严重的金融危机。

完整事件代码

flavor_fra.507 = { # John Law Stimulation
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.507.title
 	desc = flavor_fra.507.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1714.1.1
		to = 1736.1.1
		monthly_chance = 20
	}

 	trigger = {
		has_ruler = yes
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_john
			last_name = law
			adm = 72
			dip = 48
			mil = 28
			culture = culture:scottish
			birth_location = location:edinburgh
			religion = religion:catholic
			birth_date = 1671.4.21
			estate = estate_type:burghers_estate
			script = john_law
			save_scope_as = target_artist
			create_in_limbo = yes
		}
	}

 	option = { # Let Law take the reins!
		name = flavor_fra.507.a
		historical_option = yes
		scope:target_artist ?= { move_country = root }
		custom_tooltip = john_law_dhe_events
		custom_tooltip = john_law_joins_france_and_bank
		add_country_modifier = { modifier = fra_john_law_stimulus years = 10 mode = add }
		ai_chance = {
			factor = 0.8
		}
	}
 	option = { # His ideas will only bring further ruin!
		name = flavor_fra.507.b
		add_country_modifier = { modifier = fra_late_stagnant_economy years = 8 mode = add }
		hidden_effect = {
			kill_character_silently = scope:target_artist
		}
		ai_chance = {
			factor = 0.2
		}
 	}
}