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_fra.1122] 哈雷勒与马约坦起义

时间范围

1382.6.1 - 1392.1.1(每月 20% 概率)

触发条件

  • 国家拥有变量 last_rites_of_charles_v
  • 国家拥有地区 rouen
  • 国家已启用政策 allowed_fouage_tax

关键效果

历史选项:镇压他们!

  • 鲁昂地区:所有属于本国的 peasants(农民)阶层人口获得 pop_satisfaction_radical_penalty(激进惩罚)满意度修正。
  • 首都地区:所有属于本国的 peasants(农民)阶层人口获得 pop_satisfaction_ultimate_penalty(终极惩罚)满意度修正。
  • 全国范围peasants_estate(农民阶层)获得 estate_satisfaction_mild_penalty(轻度惩罚)满意度修正。

背景介绍

该事件模拟了14世纪末法国爆发的“哈雷勒”与“马约坦”起义。这些起义主要由沉重的赋税(特别是“fouage”炉灶税)引发,是法国农民和城市平民对瓦卢瓦王朝财政压榨的激烈反抗。事件反映了中世纪晚期法国社会尖锐的阶级矛盾和王权与地方自治力量之间的紧张关系。

完整事件代码

flavor_fra.1122 = { # Harelle and Maillotin Revolts
	type = country_event
	title = flavor_fra.1122.title
	desc = flavor_fra.1122.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1382.6.1
		to = 1392.1.1
		monthly_chance = 20
	}

	trigger = {
		has_variable = last_rites_of_charles_v
		owns = location:rouen
		has_policy = allowed_fouage_tax
	}
	
	illustration_tags = {
		10 = armed
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
	}

	option = { # Crush them!
		name = flavor_fra.1122.a
		historical_option = yes
		location:rouen = {
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_satisfaction = pop_satisfaction_radical_penalty
			}
		}
		root.capital = {
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_penalty
			}
		}
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_mild_penalty }
		ai_chance = {
			base = 1
		}
	}
}