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_eng.198] 皇家学会的成立

时间范围:1660.1.1 - 1750.1.1(每月 1% 概率)

触发条件

  • 玩家国家(root)必须控制并拥有其首都。
  • 玩家首都的平均识字率(average_location_literacy)必须大于 50。
  • 满足以下任一条件:
    1. 玩家国家拥有至少一位技能(artist_skill)不低于 0.75 的哲学家(artist_type = philosopher)。
    2. 人物 eng_christopher_wren(克里斯托弗·雷恩)存活。
    3. 人物 eng_robert_boyle(罗伯特·波义耳)存活。

关键效果

  • 选项 A (flavor_eng.198.a) [历史选项]
    • 设置变量 royal_society = 1
    • 在首都建造建筑 building_type:royal_society(皇家学会)。
    • 显示自定义提示 flavor_eng.198.tt1
  • 选项 B (flavor_eng.198.b)
    • 触发前提:玩家在不列颠地区(region:great_britain_region)拥有至少 3 个拥有大学(university)建筑的地点。
    • 效果:随机选取玩家在不列颠地区拥有的 3 个拥有大学的地点,为每个地点增加 prosperity_weak_bonus(微弱繁荣度加成)。
  • 选项 C (flavor_eng.198.c)
    • 为玩家国家增加 prestige_mild_bonus(温和威望加成)。

背景介绍: 该事件模拟了英国皇家学会在17世纪中后期的成立过程。皇家学会是世界上历史最悠久的科学学会之一,成立于1660年,其宗旨是促进自然知识的发展。事件发生的时间窗口(1660-1750年)涵盖了学会从成立到早期发展的关键时期。触发条件反映了学会成立所需的社会与智力环境:一个识字率较高的首都,以及像克里斯托弗·雷恩(建筑师、天文学家)或罗伯特·波义耳(化学家、物理学家)这样的杰出知识分子的存在。历史选项(选项A)直接对应了学会的正式建立及其制度化。

完整事件代码

flavor_eng.198 = {
	type = country_event

	title = flavor_eng.198.title
	desc = flavor_eng.198.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1660.1.1
		to = 1750.1.1
		monthly_chance = 1
	}

	trigger = {

		capital = {
			owner = root
			controller = root
			average_location_literacy > 50
		}

		OR = {
			any_character = {
				owner = root
				artist_type = philosopher
				artist_skill >= 0.75
			}
			character:eng_christopher_wren ?= { is_alive = yes }
			character:eng_robert_boyle ?= { is_alive = yes }
		}

	}

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

	immediate = {
		root = { save_scope_as = target_root_country }

		capital = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.198.a
		historical_option = yes

		set_variable = { name = royal_society value = 1 }

		capital = {
			construct_building = {
				building_type = building_type:royal_society
			}
		}

		custom_tooltip = flavor_eng.198.tt1

	}

	option = {
		name = flavor_eng.198.b
		trigger = {
			region:great_britain_region = {
				any_location_in_region = {
					count >= 3
					owner ?= root
					has_building_with_at_least_one_level = university
				}
			}
		}

		while = {
			count = 3
			region:great_britain_region = {
				random_location_in_region = {
					limit = {
						owner ?= root
						has_building_with_at_least_one_level = university
					}
					change_prosperity = prosperity_weak_bonus
				}
			}
		}

	}

	option = {
		name = flavor_eng.198.c

		add_prestige = prestige_mild_bonus

	}

	historical_info = flavor_eng.198.historical_info

}