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_chi.78] 一条鞭法改革

时间范围:1580.1.1 - 1680.1.1(每月 10% 概率触发)

触发条件

  • 事件仅对国家 CHI 触发。
  • 事件为动态历史事件,且仅能触发一次。

关键效果

  • 选项 A
    • 解锁并实施政府改革 single_whip_law(一条鞭法)。
    • 如果当前没有空闲的改革槽位,则会随机移除一项现有改革,然后添加一条鞭法改革。
  • 选项 B
    • 增加少量威望惩罚(prestige_mild_penalty)。

背景介绍: 此事件模拟了明朝中后期(约16世纪末至17世纪末)在中国推行“一条鞭法”税制改革的历史进程。该改革旨在简化复杂的赋役制度,将各种税、役合并折银征收,以增加财政收入、提高行政效率并减轻农民负担。事件反映了当时中央政府在财政压力下尝试进行制度革新的努力,以及改革可能面临的阻力。

完整事件代码

flavor_chi.78 = {
	hide_portraits = yes
	type = country_event
	title = flavor_chi.78.title
	desc = flavor_chi.78.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1580.1.1
		to = 1680.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		unlock_government_reform_effect = {
			type = single_whip_law
		}
		if = {
			limit = {
				num_open_reform_slots = 0
			}
			random_current_reforms = {
				save_scope_as = target_government_reform
			}
		}
	}

	option = {
		name = flavor_chi.78.a

		if = {
			limit = {
				num_open_reform_slots = 0
			}
			remove_reform = scope:target_government_reform
		}
		add_reform = government_reform:single_whip_law
	}

	option = {
		name = flavor_chi.78.b

		add_prestige = prestige_mild_penalty
	}
}