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_eng.228 威廉·皮特与战时财政

时间范围:1795.1.1 - 1820.1.1(每月 5% 概率)

触发条件

  • 国家为英格兰(ENG)或大不列颠(GBR)。
  • 变量 eng_william_pitt_the_younger 所指人物必须:
    • 存活(is_alive = yes)。
    • 在内阁中任职(in_cabinet = yes)。
  • 满足以下任一财政状况:
    • 月度收支为负(monthly_balance < 0)。
    • 拥有超过1笔贷款(num_loans > 1)。
  • 处于战争状态(at_war = yes)。

关键效果

  • 选项 A (历史选项)
    • 实施政策:所得税(policy:income_tax)。
    • 获得国家修正:temporary_income_tax,持续5年(可叠加延长)。
    • 贵族阶层(estate_type:nobles_estate)与教士阶层(estate_type:clergy_estate)满意度大幅降低(estate_satisfaction_severe_penalty)。
  • 选项 B
    • 实施政策:贸易税(policy:trade_tax)。
    • 市民阶层(estate_type:burghers_estate)满意度大幅降低(estate_satisfaction_severe_penalty)。
  • 选项 C
    • 实施政策:传统税制(policy:traditional_tax)。
    • 政府权力大幅减少(government_power_severe_penalty)。

背景介绍: 该事件模拟了1795年至1820年间,英格兰(或大不列颠)在战争时期面临的财政危机。当时,年轻的威廉·皮特作为首相,为应对战争开支和财政赤字,推动了一系列税收改革。事件反映了政府在不同税制选择(如所得税、贸易税或维持传统税制)上面临的权衡,以及这些决策对国内各主要社会阶层(贵族、教士、市民)满意度及政府权威的直接影响。

完整事件代码

flavor_eng.228 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.228.title
	desc = flavor_eng.228.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1795.1.1
		to = 1820.1.1
		monthly_chance = 5
	}

	trigger = {

		var:eng_william_pitt_the_younger ?= { 
			is_alive = yes 
			in_cabinet = yes 
		}

		OR = {
			monthly_balance < 0
			num_loans > 1
		}

		at_war = yes

	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = target_root_country

		capital = { save_scope_as = target_location }

		set_variable = taxation_law

		var:eng_william_pitt_the_younger = {
			save_scope_as = william_pitt_the_younger
		}

	}

	option = {
		name = flavor_eng.228.a
		historical_option = yes

		custom_tooltip = {
			text = flavor_eng.228.custom
		}

		add_policy = policy:income_tax

		hidden_effect = {
			add_country_modifier = {
				modifier = temporary_income_tax
				years = 5
				mode = add_and_extend
			}
		}

		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_penalty }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_penalty }

	}

	option = {
		name = flavor_eng.228.b

		custom_tooltip = flavor_eng.228.custom

		add_policy = policy:trade_tax

		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_severe_penalty }

	}

	option = {
		name = flavor_eng.228.c

		custom_tooltip = {
			text = flavor_eng.228.custom
		}

		add_policy = policy:traditional_tax

		add_government_power = government_power_severe_penalty

		custom_tooltip = flavor_eng.228.tt

	}

	historical_info = flavor_eng.228.historical_info

}