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.16] 马肖的5%税

时间范围:1740.1.1 - 1760.1.1 (每月 8% 概率)

触发条件

  • 国家已通过 fra_taille 法律。

关键效果

  • 历史选项 (flavor_fra.16.b):
    • 添加政策:policy:no_five_percent_tax
    • 将创建的人物 target_character 移动至法国。
    • clergy_estate (教士阶层) 和 nobles_estate (贵族阶层) 增加 estate_satisfaction_mild_bonus (轻微的阶层满意度增益)。
  • 另一选项 (flavor_fra.16.a):
    • 添加政策:policy:five_percent_tax
    • 将创建的人物 target_character 移动至法国。
    • clergy_estate (教士阶层) 和 nobles_estate (贵族阶层) 增加 estate_satisfaction_mild_penalty (轻微的阶层满意度惩罚)。

背景介绍: 该事件反映了18世纪中叶法国财政大臣让-巴蒂斯特·德·马肖提出的财政改革尝试。在七年战争(1756-1763)的财政压力下,马肖提议对所有阶层,包括此前享有免税特权的贵族和教士,征收5%的统一税(即“二十分之一税”),以增加国家收入。这一旨在实现税收公平和增加国库的改革,遭到了特权阶层的强烈抵制,最终未能完全实施,深刻体现了旧制度下法国社会改革的阻力。

完整事件代码

flavor_fra.16 = { # Machault's 5 Percent tax
	type = country_event
	title = flavor_fra.16.title
	desc = flavor_fra.16.desc
	historical_info = flavor_fra.16.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1740.1.1
		to = 1760.1.1
		monthly_chance = 8
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	trigger = {
		has_law = fra_taille
	}

	immediate = {
		set_variable = { name = enable_5_percent_tax value = 1 }
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_john.name_baptiste
			last_name = de_machault
			adm = 80
			dip = 75
			mil = 62
			culture = culture:french
			birth_location = location:paris
			religion = religion:catholic
			birth_date = 1701.12.1
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
			estate = estate_type:nobles_estate
			script = jean_baptiste_de_machault
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_fra.16.b
		historical_option = yes
		custom_tooltip = unlocks_machault_tax_reforms
		add_policy = policy:no_five_percent_tax
		scope:target_character = {
			move_country = c:FRA
		}
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
	}
	option = {
		name = flavor_fra.16.a
		custom_tooltip = unlocks_machault_tax_reforms
		add_policy = policy:five_percent_tax
		scope:target_character = {
			move_country = c:FRA
		}
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_penalty
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_penalty
		}
	}
}