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.542] 地方议会反对5%税制(马肖事件)

时间范围

  • 生效期:1740.1.1 - 1767.1.1
  • 触发概率:每月 10% 概率

触发条件

  • 国家拥有统治者(has_ruler = yes
  • 国家已实施“5%税制”政策(has_policy = five_percent_tax
  • 人物“让-巴蒂斯特·德·马肖”(character:jean_baptiste_de_machault)存活(is_alive = yes
  • 国家拥有议会制度(modifier:has_a_parliamentary_system = yes

关键效果

  • 选项 A:关闭他们的议会!
    • 历史选项:是(historical_option = yes
    • 效果:
      • 添加国家修正“fra_province_parliaments_closed”,持续10年
      • 农民阶层满意度大幅降低(add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_extreme_penalty }
    • AI选择概率:55%
  • 选项 B:撤销该法律
    • 效果:
      • 国家威望严重损失(add_prestige = prestige_severe_penalty
      • 添加政策“policy:no_five_percent_tax
    • AI选择概率:45%

背景介绍

该事件反映了18世纪中叶法国财政改革引发的政治冲突。财政总监让-巴蒂斯特·德·马肖推行的“5%税制”旨在扩大税基、增加王室收入,但遭到了享有传统免税特权的地方议会(尤其是有议会制度的省份)的强烈抵制。事件展现了旧制度下中央集权改革与地方特权阶层之间的尖锐矛盾,以及君主在财政需求与政治稳定之间的艰难抉择。

完整事件代码

flavor_fra.542 = { # Local Parliaments React to the 5 percent tax # Machault Event
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.542.title
 	desc = flavor_fra.542.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1740.1.1
		to = 1767.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		has_policy = five_percent_tax
		character:jean_baptiste_de_machault ?= {
			is_alive = yes
		}
		modifier:has_a_parliamentary_system = yes
 	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		character:jean_baptiste_de_machault ?= {
			save_scope_as = target_character
		}
	}

 	option = { # Close down their parliaments!
		name = flavor_fra.542.a
		historical_option = yes
		add_country_modifier = { modifier = fra_province_parliaments_closed years = 10 mode = add }
		add_estate_satisfaction = { type = estate_type:peasants_estate	value = estate_satisfaction_extreme_penalty }
		ai_chance = {
			factor = 0.55
		}
 	}

 	option = { # Retract the law
		name = flavor_fra.542.b
		add_prestige = prestige_severe_penalty
		add_policy = policy:no_five_percent_tax
		ai_chance = {
			factor = 0.45
		}
 	}
}