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_bra_dynasty.7 市民对维特尔斯巴赫家族的支持

时间范围
无明确 fromto 日期限制,事件在满足触发条件后持续有效。
触发概率
monthly_chance 字段,事件由条件触发,非周期性随机事件。

触发条件

  • 国家处于“王朝混乱”状态(bra_has_dynastic_chaos_active_trigger = yes)。
  • 拥有至少一个符合以下条件的省份:
    • 省份等级为“城镇”(location_rank:town)或“城市”(location_rank:city)。
    • 该省份内存在至少一个“市民”(pop_type:burghers)阶层人口。

关键效果

  • 选项 A(支持维特尔斯巴赫家族)

    • 增加1点“投资分数”(bra_change_investment_score = { math = add value = 1 })。
    • 增加少量正统性(add_legitimacy = legitimacy_weak_bonus)。
    • 小幅降低“市民阶层”满意度(add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_penalty })。
    • 在随机一个符合条件的省份(target_location)中,小幅提升控制度(change_control = control_weak_bonus)。
  • 选项 B(这不是我们的问题)

    • 减少1点“投资分数”(bra_change_investment_score = { math = subtract value = 1 })。
    • 小幅提升“市民阶层”满意度(add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_weak_bonus })。
    • 在随机一个符合条件的省份(target_location)中,小幅降低控制度(change_control = control_mild_penalty)。

背景介绍
在王朝继承陷入混乱的时期,国家的稳定与合法性受到挑战。作为社会重要力量的市民阶层,其态度与支持对争夺王位的各方势力而言至关重要。此事件反映了市民阶层对维特尔斯巴赫家族候选人的立场,他们的支持与否将直接影响地方控制、国家投资前景以及统治者的正统性。

完整事件代码

flavor_bra_dynasty.7 = {
	type = country_event
	title = flavor_bra_dynasty.7.title
	illustration_tags = {
		10 = interior
		10 = angry
	}
	desc = flavor_bra_dynasty.7.desc
	#Support the Wittelsbacher
	trigger = {
		bra_has_dynastic_chaos_active_trigger = yes
		any_owned_location = {
			OR = {
				location_rank = location_rank:town
				location_rank = location_rank:city
			}
			any_pop = { pop_type = pop_type:burghers }
		}
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		random_owned_location = {
			limit = {
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
				any_pop = { pop_type = pop_type:burghers }
			}
			save_scope_as = target_location
		}
	}
	option = {
		name = flavor_bra_dynasty.7.a
		bra_change_investment_score = { math = add value = 1 }
		add_legitimacy = legitimacy_weak_bonus
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_penalty }
		scope:target_location = {
			change_control = control_weak_bonus
		}
	}
	#That is not our issue
	option = {
		name = flavor_bra_dynasty.7.b
		bra_change_investment_score = { math = subtract value = 1 }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_weak_bonus }
		scope:target_location = {
			change_control = control_mild_penalty
		}
	}
}