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.53 劳工法令

时间范围

1340.1.1 - 1360.1.1,每月有 1% 的概率触发。

触发条件

  • 国家为 英格兰 (ENG)大不列颠 (GBR)
  • 任意拥有的农村地区存在 鼠疫 (bubonic_plague) 疾病,且其存在度 大于等于 0.2

关键效果

选项 A (历史选项):

  • 若已授予特权 “自由农民 (peasants_free_peasantry)”,则将其撤销。
  • 授予特权 “劳工法令 (ordinance_of_laborers)”
  • 设置变量 eng_ordinance_of_laborers_flag 为 1。

选项 B:

  • 增加 极端通货膨胀惩罚 (inflation_extreme_penalty)
  • 农民阶层 (peasants_estate) 满意度获得 巨额增益 (estate_satisfaction_severe_bonus)
  • 贵族阶层 (nobles_estate) 满意度受到 巨额惩罚 (estate_satisfaction_severe_penalty)

背景介绍

14世纪中叶,黑死病(鼠疫)席卷欧洲,导致人口锐减,劳动力严重短缺。幸存的农民因此要求更高的工资和更好的待遇,动摇了传统的封建经济秩序。作为应对,英格兰王室于1349年颁布了《劳工法令》,旨在通过法律手段将工资冻结在瘟疫前的水平,并限制劳动力的自由流动,以维护贵族和雇主的利益,防止社会动荡和经济崩溃。

完整事件代码

flavor_eng.53 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.53.title
	desc = flavor_eng.53.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1340.1.1
		to = 1360.1.1
		monthly_chance = 1
	}

	trigger = {
		any_owned_rural_location = {
			disease_presence = {
				disease = disease:bubonic_plague
				value >= 0.2
			}
		}
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		capital = { save_scope_as = target_location }

	}

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

		if = {
			limit = {
				has_estate_privilege = estate_privilege:peasants_free_peasantry
			}
			revoke_estate_privilege = estate_privilege:peasants_free_peasantry
	 	}

		grant_estate_privilege = estate_privilege:ordinance_of_laborers
		set_variable = { name = eng_ordinance_of_laborers_flag value = 1 }

	}
	option = {
		name = flavor_eng.53.b

		add_inflation = inflation_extreme_penalty

		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_severe_bonus }
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_penalty }

	}

	historical_info = flavor_eng.53.historical_info

}