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_eng.32 詹姆斯党起义

时间范围:1740.1.1 - 1770.1.1(每月 5% 概率)

触发条件

  • 斯图亚特王朝 (dynasty:stewart_dynasty) 的家族首领 (dynasty_head) 不是统治者 (is_ruler = no) 且已成年 (is_adult = yes)。
  • 当前统治者的王朝 (ruler.dynasty) 不是斯图亚特王朝。
  • 国家处于战争状态 (at_war = yes) 厌战度 (war_exhaustion_percentage) 大于 0.25。
  • 国家 SCO 不存在 (NOT = { country_exists = c:SCO })。
  • 完全拥有罗斯省 (province_definition:ross_province) 和莫里省 (province_definition:moray_province)。
  • 在苏格兰高地地区 (area:scottish_highlands_area) 内,至少有一个省份存在高地文化 (culture:highland) 的人口 (culture_percentage > 0)。

关键效果

  • 历史选项flavor_eng.32.a
    • 将斯图亚特王朝的家族首领 (dynasty_head) 的效忠对象改为詹姆斯党叛军 (scope:jacobite_uprising)。
    • 在苏格兰高地地区 (area:scottish_highlands_area) 内,所有属于本国 (owner = root) 且文化为高地文化 (culture:highland) 的人口 (pop):
      • 增加人口不满度 (add_pop_satisfaction = pop_satisfaction_ultimate_penalty)。
      • 将效忠对象改为詹姆斯党叛军 (change_pop_allegiance = scope:jacobite_uprising)。
    • 国家稳定性大幅下降 (add_stability = stability_extreme_penalty)。

背景介绍: 此事件模拟了18世纪中叶,特别是在1745年至1746年间,由查尔斯·爱德华·斯图亚特(“小王子查理”)领导的詹姆斯党起义。詹姆斯党人支持被废黜的斯图亚特王朝复辟英国王位。起义主要得到了苏格兰高地氏族,尤其是那些仍信奉天主教或对汉诺威王朝统治不满的氏族的支持。事件反映了在特定历史条件下(如英格兰处于战争或国内动荡时),斯图亚特王位觊觎者的出现如何可能引发大规模叛乱,对英国(英格兰/大不列颠)的稳定构成严重威胁。

完整事件代码

flavor_eng.32 = {
	type = country_event
	title = flavor_eng.32.title
	desc = flavor_eng.32.desc
	historical_info = flavor_eng.32.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1740.1.1
		to = 1770.1.1
		monthly_chance = 5
	}

	illustration_tags = {
		10 = exterior
		10 = armed
	}

	trigger = {
		dynasty:stewart_dynasty ?= {
			dynasty_head ?= {
				is_ruler = no
				is_adult = yes
			}
		}
		ruler ?= {
			dynasty ?= { this != dynasty:stewart_dynasty }
		}

		OR = {
			at_war = yes
			war_exhaustion_percentage > 0.25
		}

		NOT = { country_exists = c:SCO }

		own_entire_province = province_definition:ross_province
		own_entire_province = province_definition:moray_province

		area:scottish_highlands_area = {
			any_province_in_area = {
				culture_percentage = {
					culture = culture:highland
					value >  0
				}
			}
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		create_rebel = {
			category = pretender
			name = jacobite_uprising
			save_scope_as = jacobite_uprising
		}

		dynasty:stewart_dynasty = {
			dynasty_head ?= {
				save_scope_as = target_character
				move_country = root
			}
		}
	}

	option = {
		name = flavor_eng.32.a
		dynasty:stewart_dynasty = {
			dynasty_head ?= {
				change_character_allegiance = scope:jacobite_uprising
			}
		}


		custom_tooltip = {
			text = jacobite_uprising_joining
			every_owned_location = {
				limit = {
					area = area:scottish_highlands_area
				}
				every_pop = {
					limit = {
						owner = root
						culture = culture:highland
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					change_pop_allegiance = scope:jacobite_uprising
				}
			}

		}

		add_stability = stability_extreme_penalty
	}
}