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.193] 艾萨克·牛顿与《自然哲学的数学原理》

时间范围:1687.1.1 - 1730.1.1(每月 5% 概率)

触发条件

  • 特定人物 eng_isaac_newton(艾萨克·牛顿)存活。

关键效果

  • 选项 A (历史选项)

    • 在首都创建一件艺术品:
      • 艺术家:艾萨克·牛顿
      • 品质:100
      • 类型:小说类
      • 标识:the_principia
    • 为艾萨克·牛顿增加 0.03 艺术家技能。
    • 获得 research_progress_mild_bonus 研究进度。
    • 若存在变量 coffee_house_established,则额外获得 research_progress_weak_bonus 研究进度。
  • 选项 B

    • 损失 6 金币。
    • 在首都创建一件艺术品(与选项 A 相同)。
    • 为艾萨克·牛顿增加 0.03 艺术家技能。
    • 获得 research_progress_extreme_bonus 研究进度。
    • 若存在变量 coffee_house_established,则额外获得 research_progress_weak_bonus 研究进度。
  • 选项 C

    • 获得 prestige_mild_bonus 威望。

背景介绍: 此事件模拟了艾萨克·牛顿爵士在1687年发表其开创性著作《自然哲学的数学原理》(常简称为《原理》)的历史时刻。该著作奠定了经典力学的基础,阐述了万有引力定律和三大运动定律,是科学革命的核心文献。事件反映了牛顿作为英格兰(及后来的大不列颠)关键人物对科学发展的巨大推动,以及其工作可能因社会环境(如咖啡馆文化)而得到进一步传播。

完整事件代码

flavor_eng.193 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.193.title
	desc = flavor_eng.193.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1687.1.1
		to = 1730.1.1
		monthly_chance = 5
	}
	image = "gfx/interface/illustrations/institutions/scientific_revolution.dds"
	trigger = {

		character:eng_isaac_newton ?= { is_alive = yes }

	}

	immediate = {

		character:eng_isaac_newton = { save_scope_as = isaac_newton }

		capital = { save_scope_as = target_location }

	}

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

			scope:target_location = {
				create_art = {
					artist = scope:isaac_newton
					quality = 100
					location = scope:target_location
					type = work_of_art_type:novel
					key = the_principia
				}
			}

			scope:isaac_newton = {
				add_artist_skill = 0.03
			}

			add_research_progress = research_progress_mild_bonus

			if = {
				limit = {
					has_variable = coffee_house_established
				}
				custom_tooltip = flavor_eng.193.tt
				add_research_progress = research_progress_weak_bonus
			}
	}

	option = {
		name = flavor_eng.193.b

		change_gold_effect = { scale = -6 }

		scope:target_location = {
			create_art = {
				artist = scope:isaac_newton
				quality = 100
				location = scope:target_location
				type = work_of_art_type:novel
				key = the_principia
			}
		}

		scope:isaac_newton = {
			add_artist_skill = 0.03
		}

		add_research_progress = research_progress_extreme_bonus

		if = {
			limit = {
				has_variable = coffee_house_established
			}
			custom_tooltip = flavor_eng.193.tt
			add_research_progress = research_progress_weak_bonus

		}

	}

		option = {
		name = flavor_eng.193.c

		add_prestige = prestige_mild_bonus

		}

	historical_info = flavor_eng.193.historical_info

}