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.1121] 勒皮地区的叛乱传闻

时间范围:1378年6月1日 - 1398年1月1日(每月 10% 概率触发)

触发条件

  • 国家拥有 le_puy 地区。
  • 国家正在与 ENG(英格兰)交战。

关键效果

  • 选项 A:镇压他们!

    • 历史选项:是
    • 效果:在 le_puy 地区,所有属于本国的 peasants(农民)人口将获得 pop_satisfaction_radical_penalty(激进惩罚)满意度修正。
    • AI 选择概率:70%
  • 选项 B:授予他们自治权!

    • 效果:
      1. le_puy 地区的控制度将变为 control_radical_penalty(激进惩罚)。
      2. le_puy 地区,所有属于本国的 peasants(农民)人口将获得 pop_satisfaction_severe_bonus(大幅奖励)满意度修正。
    • AI 选择概率:30%

背景介绍: 在百年战争期间,法国王室与英格兰的长期冲突加剧了国内的社会矛盾。位于法国中南部的勒皮地区,农民因沉重的战争税负和兵役而苦不堪言,不满情绪逐渐累积,最终演变为反抗的传闻。法国王室面临着是武力镇压以维持秩序,还是通过让步来安抚民心的艰难抉择。

完整事件代码

flavor_fra.1121 = { # Rumors of Revolt in Tuchin
	type = country_event
	title = flavor_fra.1121.title
	desc = flavor_fra.1121.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1378.6.1
		to = 1398.1.1
		monthly_chance = 10
	}

	trigger = {
		owns = location:le_puy
		is_at_war_with = c:ENG
	}

	illustration_tags = {
		10 = armed
		10 = exterior
	}

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

	option = { # Crush them!
		name = flavor_fra.1121.a
		historical_option = yes
		custom_tooltip = le_puy_may_revolt
		location:le_puy = {
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_satisfaction = pop_satisfaction_radical_penalty
			}
		}
		ai_chance = {
			base = 70
		}
	}

	option = { # Grant them autonomy!
		name = flavor_fra.1121.b
		location:le_puy = {
			change_control = control_radical_penalty
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_satisfaction = pop_satisfaction_severe_bonus
			}
		}
		ai_chance = {
			base = 30
		}
	}
}