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_mal.13 廷巴克图大学投资

时间范围:1340.1.1 - 1400.1.1(每月 1% 概率)

触发条件

  • 国家拥有廷巴克图(location:timbuktu)。
  • 廷巴克图地区至少拥有一座经学院(madrasa)建筑。

关键效果

  • 选项 A:投资大学
    • 历史选项:是
    • 效果:
      • 获得少量研究进度加成(research_progress_mild_bonus)。
      • 减少 4 倍规模的金钱(scale = -4)。
      • 社会价值观“传统主义 vs 创新”大幅向右(创新方向)移动(societal_value_large_move_to_right)。
      • 获得少量威望(prestige_mild_bonus)。
  • 选项 B:很好
    • 效果:
      • 社会价值观“传统主义 vs 创新”小幅向右(创新方向)移动(societal_value_minor_move_to_right)。
      • 主流文化获得少量文化传统(cultural_tradition_weak_bonus)和文化影响力(cultural_influence_weak_bonus)。

背景介绍: 该事件模拟了马里帝国(MAL)在14世纪对其重要学术中心廷巴克图的大学进行投资的可能性。廷巴克图作为撒哈拉以南非洲的学术与贸易枢纽,其经学院(Madrasa)是当时伊斯兰世界重要的知识中心。马里帝国的统治者可以选择投入资源进一步发展这里的学术机构,以促进知识创新、提升国家威望和文化影响力,这反映了历史上马里帝国对教育和学术的重视,以及廷巴克图在跨撒哈拉贸易和文化交流中的关键角色。

完整事件代码

flavor_mal.13 = {
	type = country_event
	title = flavor_mal.13.title
	desc = flavor_mal.13.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = MAL
		from = 1340.1.1
		to = 1400.1.1
		monthly_chance = 1
	}

	trigger = {
		owns = location:timbuktu
		location:timbuktu = {
			has_building_with_at_least_one_level = madrasa
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		location:timbuktu = { save_scope_as = target_location }
	}

	#Invest in the university
	option = {
		name = flavor_mal.13.a
		historical_option = yes

		add_research_progress = research_progress_mild_bonus
		change_gold_effect = { scale = -4 }
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_large_move_to_right
		}
		add_prestige = prestige_mild_bonus
	}

	#Neat
	option = {
		name = flavor_mal.13.b

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_minor_move_to_right
		}
		culture = {
			add_cultural_tradition = cultural_tradition_weak_bonus
			add_cultural_influence = cultural_influence_weak_bonus
		}
	}
}