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.22 帕维亚大学

时间范围:1337.1.1 - 1444.11.11(每月 1% 概率)

触发条件

  • 国家拥有帕维亚(Pavia)地区。
  • 帕维亚地区至少拥有一级大学(university)建筑。
  • 国家未处于战争状态。

关键效果

  • 选项 A (flavor_mlo.22.a)

    • 获得少量研究进度加成(research_progress_mild_bonus)。
    • 社会价值观向“创新”方向轻微移动(societal_value_tiny_move_to_right)。
  • 选项 B (flavor_mlo.22.b)

    • 获得大量研究进度加成(research_progress_severe_bonus)。
    • 损失金钱(change_gold_effect = { scale = -2 })。
    • 社会价值观向“创新”方向小幅移动(societal_value_minor_move_to_right)。
  • 选项 C (flavor_mlo.22.c)

    • 触发前提:国家统治者需拥有“自由思想家”(free_thinker)或“学者”(scholar)特质之一。
    • 获得巨额研究进度加成(research_progress_extreme_bonus)。
    • 损失更多金钱(change_gold_effect = { scale = -3 })。
    • 社会价值观向“创新”方向小幅移动(societal_value_minor_move_to_right)。

背景介绍: 帕维亚大学是欧洲最古老的学府之一,其建立与发展是米兰公国(MLO)在14至15世纪文化、教育领域的重要事件。该事件模拟了米兰统治者对这座高等学府的不同支持策略,反映了投资教育与学术研究对国家科技进步和社会思潮的深远影响。

完整事件代码

flavor_mlo.22 = { #The University of Pavia
	type = country_event
	title = flavor_mlo.22.title
	desc = flavor_mlo.22.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1337.1.1
		to = 1444.11.11
		monthly_chance = 1
	}

	trigger = {
		owns = location:pavia
		location:pavia = {
			has_building_with_at_least_one_level = university
		}
		at_war = no
	}

	illustration_tags = {
        10 = happy
        10 = exterior
    }

	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.22.a

		add_research_progress = research_progress_mild_bonus
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_tiny_move_to_right }
	}

	option = {
		name = flavor_mlo.22.b

		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_mlo.22.c

		trigger = {
			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 }
	}
}