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_mos.32 农奴制与农民迁移

时间范围:1497.1.1 - 1547.1.1(每月 5% 概率)

触发条件

  • 全局允许农民迁移 (modifier:global_peasants_migration_allowed = yes)
  • 满足以下任一条件:
    • 社会价值“农奴制 vs 自由民”小于等于10 (societal_value:serfdom_vs_free_subjects <= 10)
    • 已通过政府改革“法典” (has_reform = government_reform:sudebnik)

关键效果

  • 选项 A (历史选项)
    • 为国家添加名为 pozhiloye 的修正,持续10年,效果可叠加或延长 (mode = add_and_extend)
  • 选项 B
    • 为农民阶层 (estate_type:peasants_estate) 增加大量满意度 (estate_satisfaction_severe_bonus)

背景介绍: 该事件反映了16世纪早期莫斯科大公国(及其继承者俄罗斯)在农奴制发展关键时期面临的社会治理挑战。随着中央集权加强和《法典》改革推行,国家需在维持传统土地贵族利益与应对农民流动压力之间做出抉择。事件模拟了这一时期统治者如何处理农民迁移问题——是强化农奴制以控制劳动力,还是通过安抚农民阶层来维持社会稳定。这一决策深刻影响了俄罗斯未来数百年的社会结构发展轨迹。

完整事件代码

flavor_mos.32 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes

	title = flavor_mos.32.title
	desc = flavor_mos.32.desc

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1497.1.1
		to = 1547.1.1
		monthly_chance = 5
	}

	trigger = {

		modifier:global_peasants_migration_allowed = yes

		OR = {
			societal_value:serfdom_vs_free_subjects <= 10
			has_reform = government_reform:sudebnik
		}
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {

		capital = {
			save_scope_as = target_location
		}

		ruler = {
			save_scope_as = target_character
		}

		root = { save_scope_as = target_root_country }

		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
	}

	option = {
		name = flavor_mos.32.a
		historical_option = yes

		add_country_modifier = {
			modifier = pozhiloye
			years = 10
			mode = add_and_extend
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.32.b

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

		ai_chance = {
			factor = 1
		}
	}

	historical_info = flavor_mos.32.historical_info

}