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_cas.2702 叛乱被镇压

时间范围
无具体日期范围(from/to未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 国家拥有变量 spa_enable_peruvian_rebellion
  • 国家拥有变量 spa_tupac_revolt
  • 不存在任何名为 tupac_rebellion 的叛军

关键效果

  • 选项 A(历史选项)

    • 设置变量 spa_execute_tupac
    • 增加大量稳定度(stability_severe_bonus
    • 社会价值观向“好战”方向移动(belligerent_vs_conciliatory 向左移动)
    • 安第斯地区(andes_region)中所有由本国控制的省份内,所有艾马拉文化(aimara_culture)人口满意度大幅下降(pop_satisfaction_severe_penalty
  • 选项 B(历史选项)

    • 增加少量稳定度(stability_mild_bonus
    • 社会价值观向“和解”方向移动(belligerent_vs_conciliatory 向右移动)
    • 安第斯地区(andes_region)中所有由本国控制的省份内,所有艾马拉文化(aimara_culture)人口满意度小幅提升(pop_satisfaction_mild_bonus

事件结束后
隐藏效果:移除变量 spa_enable_peruvian_rebellionspa_tupac_revolt

背景介绍
该事件反映了西班牙殖民当局在秘鲁地区镇压图帕克·阿马鲁二世(Túpac Amaru II)领导的大规模土著起义后的局面。起义被粉碎后,殖民者面临如何处置残余反抗势力、安抚当地艾马拉等土著人口,并选择后续统治策略的抉择。选项代表了历史上可能采取的两种不同路线:严厉镇压或相对怀柔。

完整事件代码

flavor_cas.2702 = { #Rebellion Crushed
	type = country_event
	title = flavor_cas.2702.title
	desc = flavor_cas.2702.desc

	fire_only_once = yes

	historical_info = flavor_cas.2702.historical_info

	trigger = {
		has_variable = spa_enable_peruvian_rebellion
		has_variable = spa_tupac_revolt
		NOT = {
			any_rebel = {
				rebel_name_key = tupac_rebellion
			}
		}
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	option = {
		name = flavor_cas.2702.a
		historical_option = yes
		set_variable = spa_execute_tupac
		add_stability = stability_severe_bonus
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_left }
		custom_tooltip = {
			text = flavor_cas.2702.a.tt
			region:andes_region = {
				every_location_in_region = {
					limit = {
						owner ?= root
					}
					every_pop = {
						limit = {
							owner = root
							culture = culture:aimara_culture
						}
						add_pop_satisfaction = pop_satisfaction_severe_penalty
					}
				}
			}
		}
	}

	option = {
		name = flavor_cas.2702.b
		historical_option = yes
		add_stability = stability_mild_bonus
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_right }
		custom_tooltip = {
			text = flavor_cas.2702.b.tt
			region:andes_region = {
				every_location_in_region = {
					limit = {
						owner ?= root
					}
					every_pop = {
						limit = {
							owner = root
							culture = culture:aimara_culture
						}
						add_pop_satisfaction = pop_satisfaction_mild_bonus
					}
				}
			}
		}
	}

	after = {
		hidden_effect = {
			remove_variable = spa_enable_peruvian_rebellion
			remove_variable = spa_tupac_revolt
		}
	}
}