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_fra.17 杜尔哥的经济改革

时间范围:1750.1.1 - 1765.1.1(每月 7% 概率)

触发条件

  • 国家处于和平状态(at_war = no
  • 国家拥有统治者(has_ruler = yes

关键效果

  • 选项 A (历史选项)
    • 将人物“杜尔哥”移动至法国。
    • 为国家添加名为“杜尔哥的经济改革”的修正,持续10年。
    • 有75%概率无事发生,25%概率获得轻微稳定性惩罚。
  • 选项 B
    • 将人物“杜尔哥”移动至法国。
    • 获得轻微稳定性奖励。

背景介绍: 该事件模拟了法国财政总监安·罗伯特·雅克·杜尔哥(Anne Robert Jacques Turgot)在路易十五统治末期(约1750-1765年间)推行的一系列旨在重振法国财政、推动自由贸易和农业改革的尝试。这些改革措施因触及贵族和行会特权而遭遇巨大阻力,最终未能完全实施,但为后来的经济思想发展留下了重要影响。

完整事件代码

flavor_fra.17 = { # Turgot's Economic Reforms
	type = country_event
	title = flavor_fra.17.title
	desc = flavor_fra.17.desc
	historical_info = flavor_fra.17.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1750.1.1
		to = 1765.1.1
		monthly_chance = 7
	}

	trigger = {
		at_war = no
		has_ruler = yes
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_anna.name_robert.name_james
			last_name = turgot
			adm = 80
			dip = 75
			mil = 62
			culture = culture:french
			birth_location = location:paris
			religion = religion:catholic
			birth_date = 1727.5.10
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
			estate = estate_type:burghers_estate
			script = minister_turgot
			save_scope_as = target_character
		}
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

	option = {
		name = flavor_fra.17.a
		historical_option = yes
		scope:target_character = {
			move_country = c:FRA
		}
		add_country_modifier = { modifier = turgots_economic_reforms years = 10 mode = add }
		random_list = {
			75 = {
			}
			25 = {
				add_stability = stability_mild_penalty
			}
		}
	}
	option = {
		name = flavor_fra.17.b
		scope:target_character = {
			move_country = c:FRA
		}
		add_stability = stability_mild_bonus
	}
}