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.1 永久税收体系的诞生

时间范围:1420.1.1 - 1460.1.1(每月 10% 概率)

触发条件

  • 拥有巴黎地区
  • 稳定度大于 25
  • 未处于战争状态
  • 拥有君主

关键效果

  • 选项 A (历史选项)
    • 移除政府改革:ancient_french_taxation
    • 添加政策:permanent_tax
    • 若存在君主,则君主获得:行政能力 +10,外交能力 +5
  • 选项 B
    • 移除政府改革:ancient_french_taxation
    • 添加政策:exceptional_only
    • 若存在君主,则君主获得:行政能力 +5,外交能力 +10

背景介绍: 在百年战争期间,法国王室面临巨大的财政压力,传统的临时性税收已无法满足长期战争和行政管理的需求。为了建立稳定、可靠的财政收入来源,法国开始尝试建立一套永久性的税收体系,即“人头税”(Taille)。这一改革标志着法国从中世纪封建财政向近代国家财政的转变,为中央集权和常备军的建立奠定了基础,但也加剧了社会矛盾,尤其是农民阶层的负担。

完整事件代码

flavor_fra.1 = { # Birth of a Permanent Taxation System
	type = country_event
	title = flavor_fra.1.title
	desc = flavor_fra.1.desc
	historical_info = flavor_fra.1.historical_info


	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1420.1.1
		to = 1460.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {
		set_variable = { name = enable_taille_tax value = 1 }
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler ?= {
            save_scope_as = ruler_fra
        }
	}

	trigger = {
		owns = location:paris
		stability > 25
		at_war = no
		has_ruler = yes
	}

	option = {
		name = flavor_fra.1.a
		historical_option = yes
		custom_tooltip = enables_taille_laws
		remove_reform = government_reform:ancient_french_taxation
		add_policy = policy:permanent_tax
		ruler ?= {
			add_adm = 10
			add_dip = 5
		}
	}

	option = {
		name = flavor_fra.1.b
		custom_tooltip = enables_taille_laws
		remove_reform = government_reform:ancient_french_taxation
		add_policy = policy:exceptional_only
		ruler ?= {
			add_adm = 5
			add_dip = 10
		}
	}
}