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_mug.4] 新货币改革

时间范围

1550.1.1 - 1700.1.1(每月 3% 概率)

触发条件

  • 国家统治者或摄政王满足以下条件:
    • 行政能力大于 60
    • 拥有“企业家”特质
  • 国家未处于破产状态
  • 通货膨胀率大于等于 5%
  • 未拥有特权:estate_privilege:control_over_the_coinage(铸币控制权)

关键效果

选项 A:flavor_mug.4.a

  • 在首都市场添加一个持续 120 个月的临时需求:demand:mug_new_coinage
  • 增加通货膨胀:inflation_extreme_bonus
  • 减少市民阶层满意度:estate_satisfaction_extreme_penalty

选项 B:flavor_mug.4.b

  • 增加市民阶层满意度:estate_satisfaction_mild_bonus

背景介绍

在16至17世纪,随着贸易扩张和经济活动加剧,许多国家面临着货币体系混乱和通货膨胀的压力。一位具有企业家精神的统治者,在目睹本国货币贬值和经济不稳后,可能会考虑推行重大的货币改革,例如引入新的铸币标准或体系。然而,此类改革往往触及市民阶层(尤其是商人和金融家)的核心利益,他们可能因旧货币贬值或新体系带来的不确定性而蒙受损失,也可能从更稳定的货币环境中获益。此事件反映了统治者试图在稳定经济与安抚关键社会力量之间寻求平衡的经典困境。

完整事件代码

flavor_mug.4 = {
	type = country_event
	title = flavor_mug.4.title
	desc = flavor_mug.4.desc

	dynamic_historical_event = {
		tag = MUG
		from = 1550.1.1
		to = 1700.1.1
		monthly_chance = 3
	}

	fire_only_once = yes

	illustration_tags = {
		10 = interior
		10 = regular
	}

	trigger = {
		ruler_or_regent ?= {
			adm > 60
			has_trait = entrepreneur
		}
		is_during_bankruptcy = no
		inflation >= 0.05
		NOT = { has_estate_privilege = estate_privilege:control_over_the_coinage }
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		ruler_or_regent = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mug.4.a

		capital.market = {
			add_temporary_demand = {
				type = demand:mug_new_coinage
				months = 120
			}
		}

		add_inflation = inflation_extreme_bonus
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_extreme_penalty }
	}

	option = {
		name = flavor_mug.4.b

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