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_sco.204 阿伯丁大学的建立

时间范围:1485.1.1 - 1510.1.1(每月 20% 概率)

触发条件

  • 国家拥有统治者。
  • 国家拥有 aberdeen 地区。
  • paris 地区已建有大学建筑 (building_type:university)。
  • aberdeen 地区尚未建有大学建筑。
  • 国家 c:PAP(教皇国)存在。
  • 国家 c:PAP 拥有统治者。

关键效果

  • 选项 A:资助这所大学! (历史选项)
    • 效果:国库减少 6 单位金钱。
    • 效果:在 aberdeen 地区立即免费建造一所大学 (building_type:university)。
    • 效果:获得大量研究进度 (research_progress_severe_bonus)。
    • AI 选择权重:75%。
  • 选项 B:我们不需要这所学院
    • 效果:获得少量稳定度 (stability_mild_bonus)。
    • 效果:获得少量正统性 (legitimacy_mild_bonus)。
    • AI 选择权重:25%。

背景介绍: 15世纪末至16世纪初,苏格兰正处于文艺复兴思想传播与教育发展的关键时期。受巴黎大学等欧洲学术中心的影响,苏格兰本土也开始寻求建立高等学府。阿伯丁作为苏格兰东北部的重要城市,其主教的倡议得到了国王詹姆斯四世的支持。1495年,教皇亚历山大六世颁布诏书,正式批准建立阿伯丁大学(又称国王学院),使其成为苏格兰第三古老的大学,也是英语世界第五古老的大学。这一事件标志着苏格兰高等教育体系的完善和与欧洲大陆学术网络的连接。

完整事件代码

flavor_sco.204 = { # Founding of Aberdeen University
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.204.title
 	desc = flavor_sco.204.desc

	dynamic_historical_event = {
		tag = SCO
		tag = GBR
		from = 1485.1.1
		to = 1510.1.1
		monthly_chance = 20
	}

 	trigger = {
		has_ruler = yes
		owns = location:aberdeen
		location:paris = {
			has_building = building_type:university
		}
		NOT = { location:aberdeen = { has_building = building_type:university } }
		country_exists = c:PAP
		c:PAP ?= {
			has_ruler = yes
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = sco_ruler
        }
		c:PAP = {
        	ruler ?= {
            	save_scope_as = pap_ruler
        	}
		}
	}

 	option = { # Sponsor the University!
		name = flavor_sco.204.a
		historical_option = yes
		change_gold_effect = { scale = -6 }
		location:aberdeen = {
			construct_building = {
				building_type = building_type:university
				instant = yes
				cost_multiplier = 0
				cost_multiplier_reason = "game_concept_event"
			}
		}
		add_research_progress = research_progress_severe_bonus
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # We have no need for this college
		name = flavor_sco.204.b
		add_stability = stability_mild_bonus
		add_legitimacy = legitimacy_mild_bonus
		ai_chance = {
			factor = 0.25
		}
 	}
}