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.1200] 尼古拉斯·哥白尼登场

时间范围:1503年1月1日 - 1520年12月31日(每月100%概率,仅触发一次)

触发条件

  • 国家拥有利兹巴克(Lidzbark)地区。
  • 当前年份在1503年至1520年之间(含)。

关键效果

  • 历史选项(若国家为ERM)
    • 选择 flavor_pol.1200.b:花费3金币,将尼古拉斯·哥白尼招募至本国。
  • 历史选项(若国家不为ERM)
    • 选择 flavor_pol.1200.a:将尼古拉斯·哥白尼招募至本国,但为其添加持续1年的“远离宫廷”修正。
  • 其他选项
    • 若为ERM,可选择 flavor_pol.1200.a:招募哥白尼,但为其添加“远离宫廷”修正。
    • 若不为ERM,可选择 flavor_pol.1200.b:花费3金币,招募哥白尼。

背景介绍: 该事件模拟了文艺复兴时期波兰天文学家尼古拉斯·哥白尼的登场。哥白尼以其日心说理论闻名于世,彻底改变了人类对宇宙的认知。在游戏中,他作为一位拥有极高行政(98)和外交(78)能力的特殊人物出现,其登场与波兰(或其相关政体)对利兹巴克地区的控制有关,反映了历史人物与特定地域和政治环境的联系。

完整事件代码

flavor_pol.1200 = {#https://en.wikipedia.org/wiki/Jan_Zamoyski
	type = country_event
	title = flavor_pol.1200.title
	desc = flavor_pol.1200.desc

	fire_only_once = yes

	trigger = {
		owns = location:lidzbark
		current_year >= 1503
		current_year <= 1520
	}

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

	immediate = {
		create_character = { #https://en.wikipedia.org/wiki/Nicolaus_Copernicus
			first_name = name_nicholas
			last_name = Copernicus
			adm = 98 dip = 78 mil = 17
			birth_date = 1473.2.19
			birth_location = location:torun
			religion = religion:catholic
			culture = culture:greater_polish
			estate = estate_type:burghers_estate
			script = pol_nicholas_copernicus
			save_scope_as = nicholas_copernicus_scope
			create_in_limbo = yes
		}
		capital = {
			save_scope_as = capital_scope
		}
	}

	option = {#For ERM is historical to hire him
		name = flavor_pol.1200.b
		trigger = {
			tag = ERM
		}
		historical_option = yes

		change_gold_effect = { scale = -3 }
		scope:nicholas_copernicus_scope = {
			move_country = root
		}
	}

	option = {
		name = flavor_pol.1200.a
		trigger = {
			tag = ERM
		}

		scope:nicholas_copernicus_scope = {
			move_country = root
			add_character_modifier = {
				modifier = away_from_the_court_modifier
				years = -1
				mode = add_and_extend
			}
		}
	}

	option = {#For the rest is historical to ignore him
		name = flavor_pol.1200.a
		trigger = {
			NOT = {tag = ERM}
		}
		historical_option = yes

		scope:nicholas_copernicus_scope = {
			move_country = root
			add_character_modifier = {
				modifier = away_from_the_court_modifier
				years = -1
				mode = add_and_extend
			}
		}
	}

	option = {
		name = flavor_pol.1200.b
		trigger = {
			NOT = {tag = ERM}
		}

		change_gold_effect = { scale = -3 }
		scope:nicholas_copernicus_scope = {
			move_country = root
		}
	}
}