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.199 皇家学会与《哲学汇刊》

时间范围:1665.1.1 - 1800.1.1 (每月 1% 概率)

触发条件

  • 首都拥有至少1级的 royal_society 建筑,且该建筑由本国控制。
  • 未采用 strict_censorship 政策。

关键效果

  • 选项 A (历史选项)
    • 触发条件:伦敦拥有至少1级的 printing_press_shop 建筑。
    • 效果:为国家添加名为 philosophical_transactions 的修正(效果永久持续)。
  • 选项 B
    • 触发条件:已解锁 printing_press_shop_advance 科技,且伦敦没有 printing_press_shop 建筑。
    • 效果:
      • 为国家添加名为 philosophical_transactions 的修正(效果永久持续)。
      • 在伦敦建造一座 printing_press_shop 建筑。
      • 花费 6 金币。
  • 选项 C
    • 效果:获得少量研究进度加成。

背景介绍: 1665年,英国皇家学会开始出版《哲学汇刊》,这是世界上最早的持续发行的科学期刊之一。该期刊的创立标志着科学交流进入了一个新的、制度化的时代,极大地促进了科学知识的传播和学术共同体的形成。此事件模拟了国家在拥有皇家学会后,如何通过支持出版业来推动科学进步。

完整事件代码

flavor_eng.199 = {
	type = country_event

	title = flavor_eng.199.title
	desc ={
		first_valid = {
			triggered_desc = {
				trigger = {
					NOT = {
						location:london = {
							has_building_with_at_least_one_level = printing_press_shop
						}
					}
				}
				desc = flavor_eng.199.desc_no_printer
			}
			triggered_desc = {
				trigger = { always = yes }
				desc = flavor_eng.199.desc
			}
		}
	}

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1665.1.1
		to = 1800.1.1
		monthly_chance = 1
	}
	image = "gfx/interface/illustrations/institutions/printing_press.dds"
	trigger = {

		capital = {
			has_building_with_at_least_one_level = royal_society
			controller = root
		}

		NOT = { has_policy = strict_censorship }


	}

	immediate = {

		location:london = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.199.a
		historical_option = yes
		trigger = {
			location:london = {
				has_building_with_at_least_one_level = printing_press_shop
			}
		}

		add_country_modifier = {
			modifier = philosophical_transactions
			months = -1
			mode = add_and_extend
		}

	}

	option = {
		name = flavor_eng.199.b
		trigger = {
			has_advance = printing_press_shop_advance
			NOT = {
				location:london = {
					has_building_with_at_least_one_level = printing_press_shop
				}
			}
		}

		add_country_modifier = {
			modifier = philosophical_transactions
			months = -1
			mode = add_and_extend
		}

		location:london = {
			construct_building = {
				building_type = building_type:printing_press_shop
			}
		}

		change_gold_effect = { scale = -6 }

		custom_tooltip = flavor_eng.199.tt1

	}

	option = {
		name = flavor_eng.199.c

		add_research_progress = research_progress_mild_bonus

		custom_tooltip = flavor_eng.199.tt2

	}

	historical_info = flavor_eng.199.historical_info

}