flavor_fra.522 五十分之一税
时间范围:1720.1.1 - 1740.1.1 (每月 20% 概率)
触发条件:
- 国家必须拥有君主。
- 国家必须拥有变量
janseism_conflict_events。 - 国家 未 采用政策
unigenitus_codified。 - 国家宗教为天主教。
关键效果:
-
选项 A:征收此税!
- 历史选项:是
- 效果:
- 获得一个自定义提示,并设置变量
reduced_unigenitus_implementation = 1。 - 获得
religious_influence_severe_bonus的宗教影响力加成。 - 获得相当于当前收入 3.00 倍的金币。
- 农民阶层满意度获得
estate_satisfaction_mild_penalty的轻微惩罚。 - 市民阶层满意度获得
estate_satisfaction_mild_penalty的轻微惩罚。 - AI 选择此选项的概率因子为 0.65。
- 获得一个自定义提示,并设置变量
-
选项 B:禁止此税。
- 效果:
- 获得一个自定义提示,并设置变量
no_unigenitus_implementation_will_grant_more_stability = 1。 - 获得
stability_severe_bonus的稳定度加成。 - 农民阶层满意度获得
estate_satisfaction_mild_bonus的轻微加成。 - 市民阶层满意度获得
estate_satisfaction_mild_bonus的轻微加成。 - AI 选择此选项的概率因子为 0.35。
- 获得一个自定义提示,并设置变量
- 效果:
背景介绍: 此事件模拟了18世纪上半叶法国可能面临的“五十分之一税”征收问题。在詹森主义争议的背景下,法国王室试图通过向教会收入征税(即五十分之一税)来增加财政收入,但这引发了与教会、农民和市民阶层的紧张关系。君主面临的选择是:强行征税以充实国库并推进宗教政策,但会激怒平民阶层;或者放弃征税以换取社会稳定和民众支持。
完整事件代码:
flavor_fra.522 = { # Cinquantieme Tax
hide_portraits = yes
type = country_event
fire_only_once = yes
title = flavor_fra.522.title
desc = flavor_fra.522.desc
dynamic_historical_event = {
tag = FRA
from = 1720.1.1
to = 1740.1.1
monthly_chance = 20
}
trigger = {
has_ruler = yes
has_variable = janseism_conflict_events
NOT = { has_policy = unigenitus_codified }
religion = religion:catholic
}
illustration_tags = {
10 = angry
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
ruler ?= {
save_scope_as = fra_ruler
}
}
option = { # Levy the tax!
name = flavor_fra.522.a
historical_option = yes
custom_tooltip = {
text = cheapter_to_enact_unigenitus
set_variable = { name = reduced_unigenitus_implementation value = 1 }
}
add_religious_influence = religious_influence_severe_bonus
change_gold_effect = { scale = 3.00 }
add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_mild_penalty }
add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_penalty }
ai_chance = {
factor = 0.65
}
}
option = { # Forbid the Tax.
name = flavor_fra.522.b
custom_tooltip = {
text = period_of_stability_when_declining_unigenitus
set_variable = { name = no_unigenitus_implementation_will_grant_more_stability value = 1 }
}
add_stability = stability_severe_bonus
add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_mild_bonus }
add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_bonus }
ai_chance = {
factor = 0.35
}
}
}