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_ara.21 日耳曼尼亚斯起义

时间范围:1515年1月1日 - 1550年1月1日(每月 10% 概率触发)

触发条件

  • 完全控制瓦伦西亚地区 (area:valencia_area)。
  • 市民阶层 (burghers_estate) 的满意度低于 0.3。

关键效果

  • 选项 A (flavor_ara.21.a):
    • 国家稳定性遭受严重惩罚 (stability_severe_penalty)。
    • 瓦伦西亚地区内所有由本国拥有的市民阶层人口 (pop_type:burghers):
      • 人口满意度遭受终极惩罚 (pop_satisfaction_ultimate_penalty)。
      • 改变人口效忠对象至起义军 (scope:target_rebels)。
  • 选项 B (flavor_ara.21.b):
    • 损失大量金钱 (change_gold_effect = { scale = -8 })。
    • 市民阶层满意度获得轻微提升 (estate_satisfaction_mild_bonus)。
    • 镇压起义军 (destroy_rebel = scope:target_rebels)。
  • 选项 C (flavor_ara.21.c) (历史选项)
    • 镇压起义军 (destroy_rebel = scope:target_rebels)。
    • 市民阶层满意度遭受严重惩罚 (estate_satisfaction_severe_penalty)。
    • 瓦伦西亚地区内所有由本国拥有的市民阶层人口 (pop_type:burghers):
      • 人口规模减少 20% (multiply = -0.2)。

背景介绍: 日耳曼尼亚斯起义(Revolt of the Germanias)是16世纪早期在瓦伦西亚王国(后并入阿拉贡和西班牙)爆发的一场主要由工匠和市民阶层领导的重大社会起义。起义的导火索是王室沉重的税收、贵族特权以及对当地自治传统的侵蚀。市民阶层的不满情绪最终演变为公开的武装反抗,对王室在当地的统治构成了严重挑战。该事件反映了中央集权与地方特权、不同社会阶层之间深刻的矛盾。

完整事件代码

flavor_ara.21 = { #Revolt of the Germanias
	type = country_event
	title = flavor_ara.21.title
	desc = flavor_ara.21.desc
	fire_only_once = yes
	historical_info = flavor_ara.21.historical_info

	dynamic_historical_event = {
		tag = ARA
		tag = SPA
		from = 1515.1.1
		to = 1550.1.1
		monthly_chance = 10
	}

	trigger = {
		own_entire_area = area:valencia_area
		estate_satisfaction:burghers_estate < 0.3
	}
	
	illustration_tags = {
		10 = angry
		10 = exterior
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		create_rebel = {
			category = estate
			estate = burghers_estate
			name = germanies_revolt
			save_scope_as = target_rebels
		}
	}

	option = {
		name = flavor_ara.21.a
		add_stability = stability_severe_penalty
		custom_tooltip = {
			text = flavor_ara.21.a.tt
			every_owned_location = {
				limit = {
					area = area:valencia_area
				}
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:burghers
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					change_pop_allegiance = scope:target_rebels
				}
			}
		}
	}

	option = {
		name = flavor_ara.21.b
		change_gold_effect = { scale = -8 }
		add_estate_satisfaction = { type = estate_type:burghers_estate
			value = estate_satisfaction_mild_bonus
		}
		destroy_rebel = scope:target_rebels
	}

	option = {
		name = flavor_ara.21.c
		historical_option = yes
		destroy_rebel = scope:target_rebels
		add_estate_satisfaction = { type = estate_type:burghers_estate
			value = estate_satisfaction_severe_penalty
		}
		every_owned_location = {
			limit = {
				area = area:valencia_area
			}
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:burghers
				}
				add_pop_size = {
					value = pop_size
					multiply = -0.2
				}
			}
		}
	}
}