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.157 威廉·吉尔伯特登场

时间范围:1600.1.1 - 1650.1.1 (每月 5% 概率)

触发条件

  • 国家为 ENG (英格兰) 或 GBR (大不列颠)。
  • 社会价值观 traditionalist_vs_innovative (传统主义 vs 创新) 大于等于 20。
  • 省份 cambridge (剑桥) 的所有者为触发国,且该省份拥有建筑 building_type:university (大学)。
  • 宗教 religion:lutheran (路德宗) 在游戏中已启用 (is_religion_enabled = yes)。

关键效果

  • 选项 A (历史选项)
    • 触发条件:国家 没有 采用政策 de_heretico_comburendo (焚烧异端)。
    • 效果:
      • 获得少量威望 (add_prestige = prestige_mild_bonus)。
      • 获得少量研究进度 (add_research_progress = research_progress_mild_bonus)。
      • 教士阶层满意度大幅降低 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_penalty })。
      • 若国家采用了政策 strict_censorship (严格审查),则教士阶层满意度会 再次 大幅降低,并显示额外提示。
  • 选项 B
    • 触发条件:国家 已采用 政策 de_heretico_comburendo (焚烧异端) 国教为 religion:catholic (天主教)。
    • 效果:
      • 角色 eng_william_gilbert (威廉·吉尔伯特) 将被处决 (kill_character),处决原因为 burned_alive (活活烧死),处决者为统治者或摄政。
  • 选项 C
    • 触发条件:国家 没有 采用政策 de_heretico_comburendo (焚烧异端)。
    • 效果:
      • 社会价值观 traditionalist_vs_innovative (传统主义 vs 创新) 向“传统主义”方向移动 (societal_value_move_to_left)。
      • 教士阶层满意度大幅提升 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_bonus })。

背景介绍: 该事件模拟了英国科学家威廉·吉尔伯特(William Gilbert)的登场及其科学工作可能引发的社会与宗教反应。吉尔伯特是伊丽莎白一世时期的医生和自然哲学家,以其在电学和磁学方面的开创性实验而闻名,著有《论磁石》。在宗教改革后的欧洲,新的科学思想常常与传统的宗教教义发生冲突。此事件反映了在宗教政策(如“焚烧异端”法令)和社会价值观(传统与创新)的影响下,国家对于新兴科学人才和思想可能采取的不同态度:是予以支持并承担教会不满的风险,还是进行压制以维护宗教权威。

完整事件代码

flavor_eng.157 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.157.title
	desc = flavor_eng.157.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1600.1.1
		to = 1650.1.1
		monthly_chance = 5
	}

	trigger = {

		societal_value:traditionalist_vs_innovative >= 20

		location:cambridge = { owner = root has_building = building_type:university }

		religion:lutheran = {
			is_religion_enabled = yes
		}

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

	immediate = {
		create_character = {
			first_name = name_william
			last_name = Gilbert
			estate = estate_type:burghers_estate
			adm = 65
			dip = 45
			mil = 15
			birth_date = 1544
			artist_skill = 0.8
			artist = philosopher
			religion = religion:lutheran
			birth_location = location:colchester
			script = eng_william_gilbert
			save_scope_as = william_gilbert
		}

		location:cambridge = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.157.a
		historical_option = yes
		trigger= {
			NOT = { has_policy = de_heretico_comburendo }
		}

		custom_tooltip = flavor_eng.157.tt1

		add_prestige = prestige_mild_bonus

		add_research_progress = research_progress_mild_bonus

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_penalty
		}

		if = {
			limit = { has_policy = strict_censorship }
			add_estate_satisfaction = { type = estate_type:clergy_estate
				value = estate_satisfaction_severe_penalty
			}
			custom_tooltip = flavor_eng.157.tt2
		}

	}

	option = {
		name = flavor_eng.157.b
		trigger= {
			has_policy = de_heretico_comburendo
			religion = religion:catholic
		}

		character:eng_william_gilbert ?= {
			kill_character = {
				target = this
				reason = burned_alive
				killer = ruler_or_regent
			}
		}

		custom_tooltip = flavor_eng.157.tt3

	}

	option = {
		name = flavor_eng.157.c
		trigger= {
			NOT = { has_policy = de_heretico_comburendo }
		}

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}

		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_bonus }

	}

}