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_flo.35 曼努埃尔·克里索洛拉斯登场

时间范围

1394.1.1 - 1415.12.30,在此期间,每月有 4% 的概率触发此事件。

触发条件

  • 国家必须 拥有佛罗伦萨(Florence)地区

关键效果

事件触发时,会立即创建一个名为 曼努埃尔·克里索洛拉斯(Emmanuel Chrysoloras) 的人物,其属性如下:

  • 出生地:君士坦丁堡(Constantinople)
  • 文化:希腊文化(Greek Culture)
  • 能力值:行政 80,外交 75,军事 41
  • 出生日期:1350.2.11
  • 阶层:市民阶层(Burghers Estate)
  • 职业:作家(Writer),技能等级 0.75
  • 脚本flo_manuel_chrysoloras

随后,系统会随机选择一个邻国和一个地点(佛罗伦萨)作为后续选项的潜在目标。

选项 A:flavor_flo.35.a

  • 效果
    • 花费 4 金币。
    • 获得提示:目标艺术家加入我国宫廷。
    • 社会价值观 “传统主义 vs 创新”“创新” 方向移动。

选项 B:flavor_flo.35.b

  • 触发前提:随机选择的邻国(scope:target_country)必须存在。
  • 效果
    • 国家声望受到 轻微惩罚
    • 社会价值观 “传统主义 vs 创新”“传统主义” 方向移动。
    • 人物 曼努埃尔·克里索洛拉斯 将移居到该随机邻国。
    • 该邻国获得 显著的科研进度加成

背景介绍

曼努埃尔·克里索洛拉斯是拜占庭帝国晚期的著名学者、外交官和人文主义者。在14世纪末至15世纪初,他作为希腊文化的使者前往意大利,特别是在佛罗伦萨教授希腊语和古典文学,对意大利文艺复兴的兴起起到了关键的推动作用。此事件模拟了这位关键人物可能被佛罗伦萨或其他意大利城邦接纳,从而传播古典知识、影响当地文化思潮与学术发展的历史可能性。

完整事件代码

flavor_flo.35 = { # Manuel Chrysoloras
	type = country_event
	title = flavor_flo.35.title
	desc = flavor_flo.35.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FLO
		tag = TUS
		from = 1394.1.1
		to = 1415.12.30
		monthly_chance = 4
	}

	trigger = {
		owns = location:florence
	}

	immediate = {
		create_character = {
			first_name = name_emmanuel
			last_name = Chrysoloras
			birth_location = location:constantinople
			culture = culture:greek_culture
			adm = 80
			dip = 75
			mil = 41
			birth_date = 1350.2.11
			estate = estate_type:burghers_estate
			script = flo_manuel_chrysoloras
			save_scope_as = target_artist
			artist = writer
			artist_skill = 0.75
		}
		random_neighbor_country = {
			save_scope_as = target_country
		}
		location:florence = {
			save_scope_as = target_location
		}
	}

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

	option = {
		name = flavor_flo.35.a

	change_gold_effect = { scale = -4 }
		custom_tooltip = flo_target_artist_joins_our_court_tt
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}
	}

	option = {
		name = flavor_flo.35.b

		trigger = {
			exists = scope:target_country
		}
		add_prestige = prestige_weak_penalty
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}
		scope:target_artist = {
			move_country = scope:target_country
		}
		scope:target_country = {
			add_research_progress = research_progress_severe_bonus
		}
	}
}