flavor_brapru.18 法兰克福(奥得河畔)大学的兴起
时间范围:1480.1.1 - 1540.1.1 (每月 2% 概率)
触发条件:
- 国家拥有
lebus地区。
关键效果:
- 历史选项:选择
flavor_brapru.18.a- 地区升级:如果
lebus地区当前等级为rural_settlement(乡村定居点),则将其升级为town(城镇)。 - 建造大学:如果
lebus地区没有大学建筑,则在该地区以半价(cost_multiplier = 0.5)建造一所大学。 - 替代发展:如果
lebus地区已有大学,则改为提升该地区的发展度(development_mild_bonus)和繁荣度(prosperity_severe_bonus)。 - 地区更名:将
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
}
}
}