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_rus.27 普加乔夫起义

时间范围:1762.1.1 - 1800.1.1 (每月 10% 概率)

触发条件

  • 满足以下任一条件:
    • 农民阶层满意度 (estate_satisfaction:peasants_estate) 低于 0.3
    • 农奴制社会价值观 (societal_value:serfdom_vs_free_subjects) 小于或等于 -20
  • 国家稳定度 (stability) 低于 25
  • 拥有乌拉尔地区 (region:ural_region) 的任意省份

关键效果

  • 选项 A (历史选项)

    • 设置变量 rus_pugachev_uprising = 1
    • 在乌拉尔地区 (region:ural_region) 所有省份中,随机选择一个属于俄罗斯 (owner = root) 的人口,施加最大程度的不满惩罚 (add_pop_satisfaction = pop_satisfaction_ultimate_penalty) 并使其效忠于普加乔夫起义军 (change_pop_allegiance = scope:pugatchev_uprising)。
    • 如果满足以下条件:
      • 农民阶层满意度低于 0.3 农奴制社会价值观小于等于 -20
      • 在俄罗斯地区 (region:russian_region) 拥有超过 3 个省份
      • 则额外执行:在俄罗斯地区随机选取 3 个省份,对其中所有属于俄罗斯的农民人口 (pop_type:peasants) 施加最大程度的不满惩罚并使其效忠于普加乔夫起义军。
  • 选项 B

    • 将农奴制社会价值观 (serfdom_vs_free_subjects) 向右调整 (value = societal_value_move_to_right)。
    • 政府权力遭受严重惩罚 (add_government_power = government_power_severe_penalty)。

背景介绍: 该事件模拟了18世纪下半叶俄罗斯帝国爆发的普加乔夫起义。在叶卡捷琳娜二世统治时期,沉重的赋税、农奴制的压迫以及边远地区(如乌拉尔)的治理问题,导致了农民和哥萨克人的广泛不满。1773年,自称彼得三世的哥萨克人叶梅利扬·普加乔夫发动大规模起义,一度威胁到沙皇政权。该事件反映了当时俄罗斯深刻的社会矛盾与统治危机。

完整事件代码

flavor_rus.27 = {
	hide_portraits = no
	type = country_event
	title = flavor_rus.27.title
	desc = flavor_rus.27.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1762.1.1
		to = 1800.1.1
		monthly_chance = 10
	}

	trigger = {

		OR = {
			estate_satisfaction:peasants_estate < 0.3
			societal_value:serfdom_vs_free_subjects <= -20
		}
		stability < 25
		any_owned_location = {
			region = region:ural_region
		}
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {
		create_rebel = {
			name = pugatchev_uprising
			category = pretender
			save_scope_as = pugatchev_uprising
		}

		create_character = {
			first_name = Yemelyan
			last_name = pugatchev
			estate = estate_type:peasants_estate
			adm = 65
			dip = 54
			mil = 60
			birth_date = 1742.1.1
			script = rus_yemelyan_pugatchev
			save_scope_as = yemelyan_pugatchev
			change_character_allegiance = scope:pugatchev_uprising
		}

		random_owned_location = {
			limit = {
				region = region:ural_region
			}
			save_scope_as = target_location
		}
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_rus.27.a
		historical_option = yes

		set_variable = { name = rus_pugachev_uprising value = 1 }

		custom_tooltip = {
			text = pugatchev_uprising_tt
			region:ural_region = {
				every_location_in_region = {
					random_pop = {
						limit = {
							owner = root
						}
						add_pop_satisfaction = pop_satisfaction_ultimate_penalty
						change_pop_allegiance = scope:pugatchev_uprising
					}
				}
			}
		}

		if = {
			limit = {
				OR = {
					estate_satisfaction:peasants_estate < 0.3
					societal_value:serfdom_vs_free_subjects <= -20
				}
				any_owned_location = {
					count > 3
					region = region:russian_region
				}
			}
			while = {
				count = 3
				region:russian_region = {
					random_location_in_region = {
						every_pop = {
							limit = {
								owner = root
								pop_type = pop_type:peasants
							}
							add_pop_satisfaction = pop_satisfaction_ultimate_penalty
							change_pop_allegiance = scope:pugatchev_uprising
						}
					}
				}
			}
			custom_tooltip = flavor_rus.27.tt1
		}
	}

	option = {
		name = flavor_rus.27.b

		change_societal_value = {
			type = serfdom_vs_free_subjects
			value = societal_value_move_to_right
		}

		add_government_power = government_power_severe_penalty
	}

	historical_info = flavor_rus.27.historical_info

}