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_boh.20 布拉格大学

时间范围:1345.1.1 - 1356.12.30(每月 1% 概率)

触发条件

  • 国家拥有布拉格(location:prague)。
  • 国家拥有在世的统治者。
  • 布拉格地区尚未建造大学建筑(building_type:university)。

关键效果

  • 选项 A (历史选项)
    • 在布拉格地区建造一所大学。
    • 社会价值观向“创新”方向大幅移动(societal_value_large_move_to_right)。
    • 获得大量研究进度(research_progress_severe_bonus)。
  • 选项 B
    • 教士阶层满意度获得极大提升(estate_satisfaction_extreme_bonus)。
    • 社会价值观向“传统”方向大幅移动(societal_value_large_move_to_left)。

背景介绍: 该事件模拟了布拉格大学的建立。布拉格大学(又称查理大学)由神圣罗马帝国皇帝兼波希米亚国王查理四世于1348年创立,是中欧最古老的大学。它的建立旨在提升波希米亚王国的学术声望,吸引学者,并促进知识与文化的发展,是波希米亚“黄金时代”的重要标志之一。

完整事件代码

flavor_boh.20 = { #The University of [ShowLocationName('prague')]
	type = country_event
	title = flavor_boh.20.title
	desc = flavor_boh.20.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = BOH
		from = 1345.1.1
		to = 1356.12.30
		monthly_chance = 1
	}

	trigger = {
		owns = location:prague
		ruler ?= {
			is_alive = yes
		}
		location:prague = {
			NOT = {
				has_building = building_type:university
			}
		}
	}

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

	immediate = {
		location:prague = {
			save_scope_as = target_location
		}
		ruler ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_boh.20.a

		historical_option = yes
		location:prague = {
			construct_building = {
				building_type = building_type:university
			}
		}
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_large_move_to_right
		}
		add_research_progress = research_progress_severe_bonus
	}

	option = {
		name = flavor_boh.20.b

		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_extreme_bonus }
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_large_move_to_left
		}

	}
}