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.12 拉比加派与布斯卡派之争

时间范围:1425.1.1 - 1450.1.1(每月 10% 概率)

触发条件

  • 拥有巴塞罗那地区(owns = location:barcelona

关键效果

  • 选项 A (flavor_ara.12.a)

    • 贵族阶层满意度:轻微提升(estate_satisfaction_mild_bonus
    • 市民阶层满意度:严重降低(estate_satisfaction_severe_penalty
    • 社会价值观:贵族政治 vs 财阀政治(aristocracy_vs_plutocracy)向左移动(societal_value_move_to_left
    • 若当前时代为宗教改革时代或更晚(current_age_or_later = age_4_reformation):
      • 社会价值观:重商主义 vs 自由贸易(mercantilism_vs_free_trade)向左移动(societal_value_move_to_left
  • 选项 B (flavor_ara.12.b)

    • 市民阶层满意度:轻微提升(estate_satisfaction_mild_bonus
    • 贵族阶层满意度:严重降低(estate_satisfaction_severe_penalty
    • 社会价值观:贵族政治 vs 财阀政治(aristocracy_vs_plutocracy)向右移动(societal_value_move_to_right
    • 若当前时代为宗教改革时代或更晚(current_age_or_later = age_4_reformation):
      • 社会价值观:重商主义 vs 自由贸易(mercantilism_vs_free_trade)向右移动(societal_value_move_to_right
  • 选项 C (flavor_ara.12.c)

    • 贵族阶层满意度:轻微降低(estate_satisfaction_mild_penalty
    • 市民阶层满意度:轻微降低(estate_satisfaction_mild_penalty

背景介绍: 该事件模拟了15世纪上半叶阿拉贡王国(及其后继者西班牙)在巴塞罗那地区发生的一场内部政治斗争。拉比加派(La Biga)代表传统的贵族和大地主利益,而布斯卡派(La Busca)则代表新兴的市民、商人和手工业者阶层。这场斗争的核心是城市治理权、税收政策和经济控制权的争夺,反映了中世纪晚期城市中不同社会阶层之间日益紧张的关系。玩家的选择将决定支持哪一方,从而影响国内两个主要阶层的忠诚度以及国家未来的政治经济走向。

完整事件代码

flavor_ara.12 = { #The Struggle of La Biga and La Busca
	type = country_event
	title = flavor_ara.12.title
	desc = flavor_ara.12.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ARA
		tag = SPA
		from = 1425.1.1
		to = 1450.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

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

	trigger = {
		owns = location:barcelona
	}

	option = {
		name = flavor_ara.12.a
		add_estate_satisfaction = { type = estate_type:nobles_estate	value = estate_satisfaction_mild_bonus }
		add_estate_satisfaction = { type = estate_type:burghers_estate	value = estate_satisfaction_severe_penalty }
		change_societal_value = { type = aristocracy_vs_plutocracy value = societal_value_move_to_left }
		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_left }
		}
	}

	option = {
		name = flavor_ara.12.b
		add_estate_satisfaction = { type = estate_type:burghers_estate	value = estate_satisfaction_mild_bonus }
		add_estate_satisfaction = { type = estate_type:nobles_estate	value = estate_satisfaction_severe_penalty }
		change_societal_value = { type = aristocracy_vs_plutocracy value = societal_value_move_to_right }
		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_right }
		}
	}

	option = {
		name = flavor_ara.12.c
		add_estate_satisfaction = { type = estate_type:nobles_estate	value = estate_satisfaction_mild_penalty }
		add_estate_satisfaction = { type = estate_type:burghers_estate	value = estate_satisfaction_mild_penalty }
	}
}