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.1123] 国王临终废除炉灶税…但国家无视

时间范围:1337.1.1 - 1437.1.1(每月 100% 概率)

触发条件

  • 国家已启用政策 allowed_fouage_tax
  • 国家启用政策 pause_on_fouage_collection
  • 国家拥有变量 enabled_fouage_tax
  • 满足以下任一条件:
    1. 国家有摄政,并且有继承人,且继承人的父亲已去世,且其父亲生前拥有变量 imposed_fouage_tax
    2. 国家无摄政,且统治者的父亲已去世,且其父亲生前拥有变量 imposed_fouage_tax

关键效果

  • 选项 A (历史选项)flavor_fra.1123.a
    • 效果:estate_type:peasants_estate 阶层满意度大幅下降 (estate_satisfaction_severe_penalty)
    • AI 选择概率:80%
  • 选项 Bflavor_fra.1123.b
    • 效果:启用政策 pause_on_fouage_collectionestate_type:peasants_estate 阶层满意度轻微下降 (estate_satisfaction_weak_penalty);合法性小幅增加 (legitimacy_weak_bonus)
    • AI 选择概率:15%
  • 选项 Cflavor_fra.1123.c
    • 效果:移除变量 enabled_fouage_tax;废除法律 fra_fouage_tax;通货膨胀小幅增加 (inflation_mild_penalty);稳定度小幅下降 (stability_mild_penalty);estate_type:peasants_estate 阶层满意度小幅增加 (estate_satisfaction_mild_bonus)
    • AI 选择概率:5%

背景介绍: 该事件模拟了中世纪法国国王在临终前试图废除一项名为“炉灶税”(Fouage)的税收,但国家机器可能选择无视、暂停或真正执行这一遗命的历史情境。炉灶税是一种按户征收的税,常引发民众不满。事件反映了王权更迭时期,统治者的个人意愿与国家财政现实、各阶层利益之间的复杂博弈。

完整事件代码

flavor_fra.1123 = { # King Abolishes Fouage on Deathbed... but the state ignores
	hide_portraits = yes
	type = country_event
	title = flavor_fra.1123.title
	desc = flavor_fra.1123.desc
	historical_info = flavor_fra.1123.historical_info


	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1337.1.1
		to = 1437.1.1
		monthly_chance = 100
	}

    trigger = {
		has_policy = allowed_fouage_tax
		NOT = { has_policy = pause_on_fouage_collection }
        has_variable = enabled_fouage_tax
        OR = {
            AND = {
                has_regent = yes
				has_heir = yes
                heir.father ?= {
                    is_alive = no
                    has_variable = imposed_fouage_tax
                }
            }
            AND = {
                has_regent = no
                ruler.father ?= {
                    is_alive = no
                    has_variable = imposed_fouage_tax
                }
            }
        }
    }

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
        if = {
            limit = {
                has_regent = yes
            }
            heir.father = {
                save_scope_as = scope_ruler_dead
            }
        }
        if = {
            limit = {
                has_regent = no
            }
            ruler.father = {
                save_scope_as = scope_ruler
            }
        }
        set_variable = { name = last_rites_of_charles_v value = 1 }
    }

	option = { # His last Ordinance cannot be effectively carried out
		name = flavor_fra.1123.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_severe_penalty }
		ai_chance = {
			base = 80
		}
	}

	option = { # Enact a temporary pause on the Fouage
		name = flavor_fra.1123.b
		add_policy = policy:pause_on_fouage_collection
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_weak_penalty }
		add_legitimacy = legitimacy_weak_bonus
		ai_chance = {
			base = 15
		}
	}

	option = { # Abolish the tax by any means necessary!
		name = flavor_fra.1123.c
		remove_variable = enabled_fouage_tax
		remove_law = law:fra_fouage_tax
		add_inflation = inflation_mild_penalty
		add_stability = stability_mild_penalty
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_mild_bonus }
		ai_chance = {
			base = 5
		}
	}
}