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_fra.2013 普瓦捷大学建立

时间范围

1425.1.1 - 1444.1.1,在此期间每月有 20% 的概率触发。

触发条件

  • 法国 (FRA) 处于和平状态 (at_war = no)。
  • 法国拥有统治者 (has_ruler = yes)。
  • 教宗国 (PAP) 拥有统治者 (has_ruler = yes)。
  • 法国拥有普瓦捷地区 (owns = location:poitiers)。
  • 普瓦捷地区 (location:poitiers) 满足以下所有条件:
    • 是法国的核心领土 (is_core_of = ROOT)。
    • 其所有者 拥有 university_construction_blocked 修正 (NOT = { owner = { modifier:university_construction_blocked = no } })。
    • 是一个城市 (is_city = yes)。

关键效果

选项一:同意建立大学

  • 名称: flavor_fra.2013.a
  • 历史选项: 是 (historical_option = yes)
  • 效果:
    • 获得温和的宗教影响力加成 (add_religious_influence = religious_influence_mild_bonus)。
    • 如果 普瓦捷地区 (location:poitiers) 没有 大学 (university) 建筑:
      • 在该地区免费建造一座大学 (construct_building = building_type:universitycost_multiplier = 0)。
    • 否则 (如果该地区已有大学):
      • 该地区获得温和的发展度加成 (change_development = development_mild_bonus)。

选项二:禁止建立大学

  • 名称: flavor_fra.2013.b
  • 效果:
    • 获得显著的名望加成 (add_prestige = prestige_severe_bonus)。
    • 获得温和的宗教影响力惩罚 (add_religious_influence = religious_influence_mild_penalty)。

背景介绍

此事件模拟了15世纪早期法国普瓦捷大学的建立过程。普瓦捷大学是法国最古老的大学之一,其建立需要获得国王和教宗的双重特许。选择支持建立大学将促进当地教育与学术发展,并巩固与教会的关系;而禁止建立则可能提升王权威望,但会损害与教会的关系。

完整事件代码

flavor_fra.2013 = { # University of Poitiers
	type = country_event
	title = flavor_fra.2013.title
	desc = flavor_fra.2013.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1425.1.1
		to = 1444.1.1
		monthly_chance = 20
	}

 	trigger = {
		at_war = no
		has_ruler = yes
		c:PAP = {
			has_ruler = yes
		}
		owns = location:poitiers
		location:poitiers = {
			is_core_of = ROOT
			NOT = { owner = { modifier:university_construction_blocked = no } }
			is_city = yes
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		c:PAP = {
        	ruler ?= {
            	save_scope_as = pap_ruler
        	}
		}
	}

	option = { # Agree to Charter the University
		name = flavor_fra.2013.a
		historical_option = yes
		add_religious_influence = religious_influence_mild_bonus
		if = {
			limit = {
				NOT = {
					location:poitiers = { has_building = building_type:university }
				}
			}
			location:poitiers = {
				construct_building = {
					building_type = building_type:university
					cost_multiplier = 0
					cost_multiplier_reason = "game_concept_event"
				}
			}
		}
		else = {
			location:poitiers = {
				change_development = development_mild_bonus
			}
		}
	}
	
	option = { # Forbid the University's construction
		name = flavor_fra.2013.b
		add_prestige = prestige_severe_bonus
		add_religious_influence = religious_influence_mild_penalty
	}
}