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.531 菲利贝尔·奥里的预算平衡(十一税)

时间范围:1725.1.1 - 1750.1.1(每月 10% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 人物 andre_hercule_fleury 存活。
  • 人物 john_law 已死亡。
  • 国家拥有修正 fra_fleury_ministry

关键效果

  • 选项 A:实施十一税以平衡预算(历史选项)
    • 将人物 philip_orry 移动至本国。
    • 为国家添加修正 fra_dixieme_tax_levied,持续5年。
    • AI 选择概率:85%。
  • 选项 B:风险过大
    • 将人物 philip_orry 移动至本国。
    • 增加少量稳定度。
    • 增加少量正统性。
    • 为国家添加修正 fra_dixieme_financial_woes,持续5年。
    • AI 选择概率:15%。

背景介绍: 在18世纪上半叶,法国财政因约翰·劳的金融实验失败而陷入混乱。红衣主教弗勒里主政期间,其财政总监菲利贝尔·奥里试图通过改革来恢复国家财政秩序。他最重要的举措之一是推行“十一税”(Dixieme),即对所有收入征收10%的税,旨在增加王室收入、平衡预算并偿还债务。这一政策虽然增加了税收,但也加剧了社会各阶层,尤其是农民和市民的负担,是旧制度下法国财政改革的一次重要尝试。

完整事件代码

flavor_fra.531 = { # Philibert Orry's Balancing of the Budget # Dixieme Tax
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.531.title
 	desc = flavor_fra.531.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1725.1.1
		to = 1750.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		at_war = no
		character:andre_hercule_fleury ?= {
			is_alive = yes
		}
		character:john_law ?= {
			is_alive = no
		}
		has_country_modifier = fra_fleury_ministry
 	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}	

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		character:andre_hercule_fleury ?= {
			save_scope_as = target_character
		}
		create_character = {
			first_name = name_philip
			last_name = orry
			adm = 64
			dip = 41
			mil = 32
			culture = culture:french
			birth_location = location:troyes
			religion = religion:catholic
			birth_date = 1689.1.22
			estate = estate_type:burghers_estate
			script = philibert_orry
			save_scope_as = philip_orry
			create_in_limbo = yes
		}
		character:john_law ?= {
			save_scope_as = john_law
		}
	}

 	option = { # Implement the Dixieme Tax to balance the budget
		name = flavor_fra.531.a
		historical_option = yes
		scope:philip_orry = { move_country = root }
		add_country_modifier = { modifier = fra_dixieme_tax_levied years = 5 mode = add }
		ai_chance = {
			factor = 0.85
		}
 	}

 	option = { # The Risk is too Great
		name = flavor_fra.531.b
		scope:philip_orry = { move_country = root }
		add_stability = stability_mild_bonus
		add_legitimacy = legitimacy_mild_bonus
		add_country_modifier = { modifier = fra_dixieme_financial_woes years = 5 mode = add }
		ai_chance = {
			factor = 0.15
		}
 	}
}