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_mei.160 维滕贝格大学

时间范围

1502.1.1 - 1530.1.1,每月有 1% 概率触发。

触发条件

  • 国家拥有维滕贝格(Wittenberg)地区。
  • 维滕贝格地区的等级为“城镇”(town)或“城市”(city)。

关键效果

选项 A (历史选项)

  • 如果目标地点(维滕贝格)尚未拥有大学建筑,则立即以半价(cost_multiplier = 0.5)建造一所大学,建造理由为“教士阶层的廉价赞助”。
  • 如果目标地点已拥有大学建筑,则获得一次“研究进度大幅加成”。
  • 社会价值观向“创新”(innovative)方向移动。

选项 B

  • 获得一次“研究进度小幅惩罚”。
  • 社会价值观向“传统”(traditionalist)方向移动。

背景介绍

该事件反映了16世纪早期,在萨克森选侯国(SAX)或迈森(MEI)统治下,维滕贝格作为宗教改革和学术中心兴起的关键时刻。维滕贝格大学(成立于1502年)的建立得到了当地教士阶层的大力支持和赞助,这极大地推动了该地区的知识发展与宗教改革思想的传播,使其成为马丁·路德等人物活动的重要舞台。

完整事件代码

flavor_mei.160 = { #University of Wittenberg
    type = country_event
    title = flavor_mei.160.title
    desc = flavor_mei.160.desc

	historical_info = flavor_mei.160.historical_info

    fire_only_once = yes
    dynamic_historical_event = {
        tag = MEI
		tag = SAX
        from = 1502.1.1
        to = 1530.1.1
        monthly_chance = 1
    }

    illustration_tags = {
        10 = happy
        10 = interior
    }

    trigger = {
        owns = location:wittenberg
		location:wittenberg = {
			OR = {
				location_rank = location_rank:town
				location_rank = location_rank:city
			}
		}
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		location:wittenberg = { save_scope_as = target_location }
	}

    option = {
        name = flavor_mei.160.a
		historical_option = yes
		if = {
			limit = {
				scope:target_location = {
					NOT = {
						has_building = building_type:university
					}
				}
			}
			scope:target_location = {
				construct_building = {
					building_type = building_type:university
					cost_multiplier = 0.5
					cost_multiplier_reason = "clergy_cheap_sponsorship"
				}
			}
		}
		else = {
			add_research_progress = research_progress_severe_bonus
		}
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_move_to_right }
    }

    option = {
        name = flavor_mei.160.b
		add_research_progress = research_progress_weak_penalty
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_move_to_left }
    }
}