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_mlo.54] 帕维亚图书馆的困境

时间范围
该事件为动态历史事件,无固定的 fromto 日期限制。其触发概率由游戏引擎动态计算,代码中未指定 monthly_chance

触发条件
代码中未明确列出 trigger 字段,因此该事件的触发依赖于游戏内部的其他动态条件或脚本。

关键效果
事件提供一个选项:

  • 选项 A (flavor_mlo.54.a)
    • 在目标地点(帕维亚)执行以下操作:
      • 如果该地点拥有修正 MLO_library_research,则移除该修正。
      • 如果该地点拥有修正 MLO_library_arts,则移除该修正。
    • 为国家带来轻微的威望惩罚 (add_prestige = prestige_mild_penalty)。

背景介绍
该事件涉及帕维亚地区的一座图书馆。选项表明,统治者可能面临某种压力或做出了一个决策,导致图书馆先前拥有的研究或艺术相关的增益效果被取消,同时国家的声望也受到了一定的负面影响。这或许反映了在资源分配、文化政策或与当地贵族(事件插画关联贵族阶层)关系上的一次挫折或权衡。

完整事件代码

flavor_mlo.54 = {
	type = country_event
	title = flavor_mlo.54.title
	desc = flavor_mlo.54.desc

	illustration_tags = {
		10 = armed
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		location:pavia = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_mlo.54.a

		scope:target_location = {
			if = {
				limit = {
					has_location_modifier = MLO_library_research
				}
				remove_location_modifier = MLO_library_research
			}
			if = {
				limit = {
					has_location_modifier = MLO_library_arts
				}
				remove_location_modifier = MLO_library_arts
			}
		}

		add_prestige = prestige_mild_penalty
	}
}