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_nap.109 安茹国王图书馆

时间范围:1337.1.1 - 1500.1.1(每月 20% 概率触发)

触发条件

  • 事件仅对特定国家触发一次。
  • 国家标签必须为 NAP(那不勒斯)或 TWS(两西西里?)。
  • 触发时间在1337年1月1日至1500年1月1日之间。

关键效果

  • 选项 A (历史选项)
    • 获得 research_progress_severe_bonus(研究进度大幅加成)。
    • 国库金钱减少(规模系数 -2)。
    • 社会价值观向“创新”方向轻微移动(traditionalist_vs_innovative 右移 societal_value_minor_move_to_right)。
  • 选项 B
    • 触发前提:当前国家拥有统治者,且统治者具有 free_thinker(自由思想者)或 scholar(学者)特质之一。
    • 获得 research_progress_extreme_bonus(研究进度极大加成)。
    • 国库金钱减少(规模系数 -3)。
    • 社会价值观向“创新”方向轻微移动(同上)。
  • 选项 C
    • 获得 prestige_mild_penalty(威望轻度惩罚)。

背景介绍: 该事件模拟了中世纪晚期,那不勒斯王国(安茹王朝统治时期)建立或赞助一座重要图书馆的历史情景。此类图书馆作为知识与学术的中心,能够显著推动国家的研究进展,但建设和维护需要耗费大量资金。事件反映了统治者对文化、科学投资的抉择,以及其个人特质(如是否崇尚学术)可能带来的不同影响。

完整事件代码

flavor_nap.109 = { #The Library of the Angevin Kings
	type = country_event

	title = flavor_nap.109.title
	desc = flavor_nap.109.desc

	image = "gfx/interface/illustrations/institutions/scientific_revolution.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = NAP
		tag = TWS
		from = 1337.1.1
		to = 1500.1.1
		monthly_chance = 20
	}

	immediate = {
		character:nap_charles_i_anjou = {
			save_scope_as = charles_i
		}
	}

	option = {
		name = flavor_nap.109.a
		historical_option = yes
		add_research_progress = research_progress_severe_bonus
		change_gold_effect = { scale = -2 } 
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_right }
	}

	option = {
		name = flavor_nap.109.b

		trigger = {
			has_ruler = yes
			ruler = {
				OR = {
					has_trait = free_thinker
					has_trait = scholar
				}
			}
		}

		add_research_progress = research_progress_extreme_bonus
		change_gold_effect = { scale = -3 }
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_right }
	}

	option = {
		name = flavor_nap.109.c

		add_prestige = prestige_mild_penalty
	}
}