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_usa.18 谢斯起义

时间范围:1767.1.1 - 游戏结束(无明确结束日期,current_year >= 1767触发概率:一次性事件(fire_only_once = yes),满足条件后立即触发。

触发条件

  • 年份为 1767 年或之后。
  • 国家正在经历“殖民地革命”局势(situation:colonial_revolution)。
  • 国家主流文化属于不列颠文化组(culture_group:british_group)。
  • 国家不是附庸国(is_subject = no)。
  • 国家拥有首都,且首都位于“东海岸地区”(region:east_coast_region)。
  • 国家拥有至少 2 笔贷款(num_loans >= 2)。
  • 农民阶层(estate_type:peasants_estate)的税率高于 60%(estate_tax_rate > 0.6)。

关键效果

  • 历史选项flavor_usa.9.a
    • 在先前随机选定的一个省份(unrest_location)内,所有属于本国的地块,控制度降低(change_control = control_weak_bonus)。
    • 在上述省份内,所有属于本国的人口,满意度大幅下降(add_pop_satisfaction = pop_satisfaction_ultimate_penalty),并且其效忠对象转变为“谢斯起义”叛军(change_pop_allegiance = scope:target_shays_rebellion)。
    • 事件开始时创建的人物“丹尼尔·谢斯”(Daniel Shays)将效忠于“谢斯起义”叛军(change_character_allegiance = scope:target_shays_rebellion)。

背景介绍: 谢斯起义(Shays’ Rebellion)是1786年至1787年间发生在美国马萨诸塞州西部和中部的一场农民武装起义。起义者多为独立战争退伍老兵和农民,他们因战后经济萧条、高额债务和沉重的税收而陷入困境,对州政府无力解决其经济诉求感到愤怒。起义由丹尼尔·谢斯领导,旨在阻止法院审理债务案件并抗议政府政策。虽然起义最终被镇压,但它暴露了《邦联条例》下国家政府的软弱,成为推动制定更强有力的《美国宪法》的关键因素之一。

完整事件代码

flavor_usa.18 = {
	type = country_event
	title = flavor_usa.18.title
	desc = flavor_usa.18.desc

	fire_only_once = yes

	illustration_tags = {
		10 = angry
		10 = exterior
	}

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

		random_owned_location = {
			save_scope_as = unrest_location
		}
		create_rebel = {
			category = estate
			name = shays_rebellion
			save_scope_as = target_shays_rebellion
			estate = peasants_estate
		}
		create_character = {
			first_name = name_daniel
			last_name = Shays
			adm = { 40 90 }
			dip = { 40 80 }
			mil = { 60 90 }
			birth_location = location:shawmut
			birth_date = 1747.8.1
			estate = estate_type:peasants_estate
			save_scope_as = target_character
		}
	}

	trigger = {
		current_year >= 1767
		is_situation_active = situation:colonial_revolution
		culture = {
			has_culture_group = culture_group:british_group
		}
		is_subject = no
		exists = capital
		capital.region = region:east_coast_region

		num_loans >= 2
		"estate(estate_type:peasants_estate)" = { estate_tax_rate > 0.6 }
	}

	option = {
		name = flavor_usa.9.a

		show_as_tooltip = {
			create_rebel = {
				category = estate
				name = shays_rebellion
				save_scope_as = target_shays_rebellion
				estate = peasants_estate
			}
		}
		scope:unrest_location.province = {
			every_location_in_province = {
				limit = {
					owner = root
				}
				change_control = control_weak_bonus
				every_pop = {
					limit = {
						owner = root
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					change_pop_allegiance = scope:target_shays_rebellion
				}
			}
		}
		scope:target_character = {
			change_character_allegiance = scope:target_shays_rebellion
		}
	}
}