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_pol.1201 哥白尼与《天体运行论》

时间范围

1520年1月1日 - 1550年12月31日

  • 触发概率:每月一次检查,满足条件即触发(fire_only_once = yes

触发条件

  • 角色 pol_nicholas_copernicus(尼古拉·哥白尼)必须存活,且其所有者是当前国家(ROOT)。
  • 当前年份在1520年至1550年之间(包含1520年和1550年)。

关键效果

选项 A:flavor_pol.1201.a

  • 历史选项historical_option = yes
  • 增加 clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_mild_bonus)。
  • 在首都创建一件艺术作品:
    • 类型:专著(work_of_art_type:treatise
    • 关键标识revolution_spheres
    • 艺术家:尼古拉·哥白尼(scope:nicholas_copernicus_scope
    • 品质:97

选项 B:flavor_pol.1201.b

  • 触发前提:国家需拥有政策 strict_censorship(严格审查制度)。
  • 销毁标识为 revolution_spheres 的艺术作品。
  • 大幅增加 clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_extreme_bonus)。

选项 C:flavor_pol.1201.c

  • 大幅增加研究进度(research_progress_extreme_bonus)。
  • 大幅降低 clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_severe_penalty)。
  • 在首都创建一件艺术作品(与选项A相同):
    • 类型:专著(work_of_art_type:treatise
    • 关键标识revolution_spheres
    • 艺术家:尼古拉·哥白尼(scope:nicholas_copernicus_scope
    • 品质:97

背景介绍

该事件模拟了尼古拉·哥白尼完成其革命性著作《天体运行论》(De revolutionibus orbium coelestium)的历史时刻。哥白尼的日心说理论挑战了当时教会支持的地心说宇宙观,在科学和宗教领域引发了巨大震动。事件反映了统治者面临的抉择:是支持这一科学突破,还是迫于教会压力进行压制,亦或是全力推动研究但承受宗教阶层的强烈不满。

完整事件代码

flavor_pol.1201 = { #https://en.wikipedia.org/wiki/De_revolutionibus_orbium_coelestium
	type = country_event
	title = flavor_pol.1201.title
	desc = flavor_pol.1201.desc
	historical_info = flavor_pol.1201.historical_info
	fire_only_once = yes

	trigger = {
		character:pol_nicholas_copernicus ?= {
			is_alive = yes
			owner = ROOT
		}
		current_year >= 1520
		current_year <= 1550
	}

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

	immediate = {
		character:pol_nicholas_copernicus ?= {
			save_scope_as = nicholas_copernicus_scope
		}
	}

	option = {
		name = flavor_pol.1201.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		capital = {
			create_art = {
				artist = scope:nicholas_copernicus_scope
				quality = 97
				type = work_of_art_type:treatise
				key = revolution_spheres

			}
		}
	}

	option = {
		name = flavor_pol.1201.b
		trigger = { has_policy = strict_censorship }

		destroy_art = work_of_art:revolution_spheres
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_extreme_bonus }
	}

	option = {
		name = flavor_pol.1201.c

		add_research_progress = research_progress_extreme_bonus
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_penalty }
		capital = {
			create_art = {
				artist = scope:nicholas_copernicus_scope
				quality = 97
				type = work_of_art_type:treatise
				key = revolution_spheres

			}
		}
	}
}