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_pap.19 伽利略·伽利莱登场

时间范围:1590.1.1 - 1640.1.1,每月 5% 概率触发

触发条件

  • 国家已了解制度:忏悔主义

关键效果

  • 选项 A (flavor_pap.19.a):
    • 增加大量稳定度
    • 社会价值观(传统主义 vs 创新)小幅向右(创新方向)移动
  • 选项 B (flavor_pap.19.b):
    • 增加少量政府力量
    • 增加少量威望
    • 增加少量陆军传统
    • 增加少量海军传统
    • 社会价值观(传统主义 vs 创新)小幅向左(传统主义方向)移动

背景介绍: 该事件模拟了文艺复兴晚期,著名天文学家、物理学家和工程师伽利略·伽利莱的出现。伽利略以其在天文学上的观测发现(如木星卫星、金星相位)和对日心说的支持而闻名,他的工作对科学革命产生了深远影响,但也因其观点与当时教会的教义相冲突而面临争议。事件反映了教廷(PAP)在面临新科学思想与既有宗教传统冲突时的抉择。

完整事件代码

flavor_pap.19 = {
	type = country_event
	fire_only_once = yes
	title = flavor_pap.19.title
	desc = flavor_pap.19.desc
	
	dynamic_historical_event = {
		tag = PAP
		from = 1590.1.1
		to = 1640.1.1
		monthly_chance = 5
	}
	
	trigger = {
		knows_about_institution = institution:confessionalism
	}
	
	image = "gfx/interface/illustrations/institutions/renaissance.dds"

	immediate = {
		if = {
			limit = {
				NOT = { has_global_variable = galileo_spawned }
			}
			location:pisa.owner = {
				create_character = { #https://en.wikipedia.org/wiki/Galileo_Galilei
					first_name = name_galileo
					last_name = galilei
					birth_date = 1564.2.15
					birth_location = location:pisa
					culture = culture:tuscan
					estate = estate_type:burghers_estate
					artist_skill = 0.96
					artist = philosopher
					script = galileo_galilei
					save_scope_as = galileo_galilei_scope
				}
			}
			set_global_variable = galileo_spawned
		}
		else = {
			character:galileo_galilei = {
				save_scope_as = galileo_galilei_scope
			}
		}
	}

	option = {
		name = flavor_pap.19.a
		add_stability = stability_extreme_bonus
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_right }
	}
	
	option = {
		name = flavor_pap.19.b
		add_government_power = government_power_mild_bonus
		add_prestige = prestige_weak_bonus
		add_army_tradition = army_tradition_weak_bonus
		add_navy_tradition = navy_tradition_weak_bonus
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_left }
	}
}