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_plc.17] 赫梅利尼茨基起义

时间范围:1640.4.1 - 1700.1.1(每月 10% 概率)

触发条件

  • 哥萨克阶层满意度(estate_satisfaction:cossacks_estate)低于或等于 50%。
  • 至少拥有 10 个满足 plc_cossack_interest_location_trigger 条件的地点。

关键效果

  • 历史选项flavor_plc.17.a
    • 使已创建的叛军(target_rebel)开始内战(start_civil_war)。

背景介绍: 该事件模拟了波兰立陶宛联邦历史上著名的赫梅利尼茨基起义。在17世纪中叶,由于波兰贵族对乌克兰哥萨克权利的压迫、宗教矛盾(东正教与天主教)以及经济剥削不断加剧,哥萨克阶层的不满情绪日益高涨。最终,在博赫丹·赫梅利尼茨基的领导下,哥萨克发动了大规模起义,旨在争取自治权并反抗联邦中央政府的统治。这场起义不仅引发了长期的内战,也深刻改变了东欧的政治格局,为后来哥萨克盖特曼国的形成以及俄罗斯的介入埋下了伏笔。

完整事件代码

flavor_plc.17 = {
	type = country_event
	title = flavor_plc.17.title
	desc = flavor_plc.17.desc
	historical_info = flavor_plc.17.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = POL
		tag = PLC
		from = 1640.4.1
		to = 1700.1.1
		monthly_chance = 10
	}

	trigger = {
		estate_satisfaction:cossacks_estate <= 0.5

		any_owned_location = {
			plc_cossack_interest_location_trigger = yes
			count >= 10
		}
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		create_character = {
			estate = estate_type:cossacks_estate
			first_name = name_bogdan
			last_name = Chmielnicki
			birth_date = 1595.12.27
			birth_location = location:chyhyryn
			culture = culture:ruthenian
			religion = religion:orthodox

			adm = { 50 70 } dip = { 40 60 } mil = { 60 75 }
			save_scope_as = target_character
		}

		create_rebel = {
			category = estate
			estate = cossacks_estate
			name = plc_chmielnicki_uprising
			save_scope_as = target_rebel
		}

		scope:target_character = {
			change_character_allegiance = scope:target_rebel
		}

		every_owned_location = {
			limit = {
				plc_cossack_interest_location_trigger = yes
			}
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:tribesmen
					is_cossacks = yes
				}
				change_pop_allegiance = scope:target_rebel
				add_pop_satisfaction = pop_satisfaction_extreme_penalty
			}
		}
	}

	option = {
		name = flavor_plc.17.a

		scope:target_rebel = {
			start_civil_war = {}
		}
	}
}