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_brapru.18 法兰克福(奥得河畔)大学的兴起

时间范围:1480.1.1 - 1540.1.1 (每月 2% 概率)

触发条件

  • 国家拥有 lebus 地区。

关键效果

  • 历史选项:选择 flavor_brapru.18.a
    1. 地区升级:如果 lebus 地区当前等级为 rural_settlement(乡村定居点),则将其升级为 town(城镇)。
    2. 建造大学:如果 lebus 地区没有大学建筑,则在该地区以半价(cost_multiplier = 0.5)建造一所大学。
    3. 替代发展:如果 lebus 地区已有大学,则改为提升该地区的发展度(development_mild_bonus)和繁荣度(prosperity_severe_bonus)。
    4. 地区更名:将 lebus 地区重命名为 frankfurt_an_der_oder(奥得河畔法兰克福)。

背景介绍: 在15世纪末至16世纪初,神圣罗马帝国境内出现了建立新大学以促进学术和宗教改革的浪潮。勃兰登堡选侯国(后发展为普鲁士)在其东部领地,特别是奥得河畔的法兰克福,寻求建立学术中心。这一事件模拟了该地区从一个乡村定居点发展为拥有高等学府的城镇的过程,反映了当时德意志地区诸侯通过赞助教育来提升自身声望和领土治理能力的普遍策略。

完整事件代码

flavor_brapru.18 = { #Frankfurt Oder emerging University
	type = country_event
	title = flavor_brapru.18.title
	desc = flavor_brapru.18.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = BRA
		tag = PRU
		from = 1480.1.1
		to = 1540.1.1
		monthly_chance = 2
	}

	immediate = {
		location:lebus = {
		save_scope_as = target_location
		}
	}

	trigger = {
		owns = location:lebus
	}

	option = {
		name = flavor_brapru.18.a
		historical_option = yes
		location:lebus = {
			if = {
				limit = {
					location_rank = location_rank:rural_settlement
				}
				change_location_rank = location_rank:town
			}
		}
		if = {
			limit = {
				NOT = {
					location:lebus = { has_building = building_type:university }
				}
			}
			location:lebus = {
				construct_building = {
					building_type = building_type:university
					cost_multiplier = 0.5
					cost_multiplier_reason = "academic_cheap_sponsorship"
				}
			}
		}
		else = {
			location:lebus = {
				change_development = development_mild_bonus
				change_prosperity = prosperity_severe_bonus
			}
		}
		location:lebus = {
			rename_location = frankfurt_an_der_oder
		}
	}
}