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_boh.6 天文学家登场

时间范围:1595.1.1 - 1610.1.1(每月 25% 概率)

触发条件

  • 国家标签为 BOH(波希米亚)。
  • 社会价值观 traditionalist_vs_innovative(传统主义 vs 创新)大于 0。

关键效果

  • 选项 A (历史选项)
    • 社会价值观 traditionalist_vs_innovative 向“创新”方向移动。
    • 将生成的两位天文学家(第谷·布拉赫与约翰内斯·开普勒)移动至本国。
    • 获得 research_progress_extreme_bonus(巨量研究进度加成)。
  • 选项 B
    • 触发前提:存在一个与本国不同的 target_country(由系统根据“创新”价值观排序选出的邻国)。
    • 将生成的两位天文学家移动至目标邻国。
    • 社会价值观 traditionalist_vs_innovative 向“传统主义”方向移动。
    • 获得 stability_severe_bonus(大量稳定度加成)。

背景介绍: 16世纪末至17世纪初,欧洲正处于科学革命的前夜。波希米亚国王鲁道夫二世在布拉格营造了一个相对宽容的学术环境,吸引了包括第谷·布拉赫和约翰内斯·开普勒在内的杰出天文学家。他们的到来与合作,尤其是开普勒在第谷精密观测数据基础上提出的行星运动定律,极大地推动了天文学的发展。此事件模拟了波希米亚在这一关键时期能否抓住机遇,成为科学创新中心,或是让人才流向其他更愿意接纳新思想的国度。

完整事件代码

flavor_boh.6 = {
	type = country_event
	title = flavor_boh.6.title
	desc = flavor_boh.6.desc
	historical_info = flavor_boh.6.historical_info
	
	trigger = {
		societal_value:traditionalist_vs_innovative > 0
	}

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = BOH
		from = 1595.1.1
		to = 1610.1.1
		monthly_chance = 25
	}

	image = "gfx/interface/illustrations/institutions/scientific_revolution.dds"

	immediate = {
		if = {
			limit = { tag = BOH }
			create_character = {
				first_name = name_tycho
				last_name = brahe
				birth_date = 1546.12.27
				birth_location = location:lund
				culture = culture:danish
				religion = root.religion
				create_in_limbo = yes
				artist = scientist
				artist_skill = { 0.4 0.9 }
				estate = estate_type:burghers_estate
				save_scope_as = target_character
			}
			create_character = {
				first_name = name_john
				last_name = kepler
				birth_date = 1571.12.27
				birth_location = location:calw
				culture = culture:swabian
				religion = root.religion
				create_in_limbo = yes
				artist = scientist
				artist_skill = { 0.4 0.9 }
				estate = estate_type:burghers_estate
				save_scope_as = target_character2
			}
			ordered_neighbor_country = {
				order_by = societal_value:traditionalist_vs_innovative
				check_range_bounds = no
				max = 1
				save_scope_as = target_country
			}
		}
	}

	option = {
		name = flavor_boh.6.a

		historical_option = yes

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}

		scope:target_character = { move_country = root }
		scope:target_character2 = { move_country = root }

		add_research_progress = research_progress_extreme_bonus
	}

	option = {
		name = flavor_boh.6.b

		trigger = {
			exists = scope:target_country
			scope:target_country != root
		}

		scope:target_character = { move_country = scope:target_country }
		scope:target_character2 = { move_country = scope:target_country }

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}
		add_stability = stability_severe_bonus
	}
}