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.29 第一位现代工程师

时间范围:1397.1.1 - 1440.1.1 (每月 2% 概率触发)

触发条件

  • 国家拥有佛罗伦萨(Florence)地区。
  • 佛罗伦萨地区至少拥有以下建筑之一:
    • 艺术学院(arts_academy)
    • 艺术学校(art_school)
  • 国库储备不低于4个月的国家收入。

关键效果

  • 选项 A (flavor_flo.29.a)

    • 消耗相当于4个月国家收入的黄金。
    • 获得提示:目标艺术家加入宫廷。
    • 社会价值观向“创新”方向移动。
  • 选项 B (flavor_flo.29.b)

    • 触发前提:存在一个随机的邻国。
    • 减少少量威望。
    • 社会价值观向“传统”方向移动。
    • 将事件生成的人物(菲利波·布鲁内莱斯基)移居至随机邻国。

背景介绍: 此事件模拟了文艺复兴早期,被誉为“第一位现代工程师”的菲利波·布鲁内莱斯基在佛罗伦萨登场的可能性。布鲁内莱斯基以其在建筑、工程和线性透视法方面的开创性工作而闻名,最著名的成就是设计了佛罗伦萨圣母百花大教堂的穹顶。事件反映了佛罗伦萨作为文艺复兴中心的艺术与知识环境,以及城邦国家在吸引和留住顶尖人才方面所面临的抉择:是投入巨资将天才留在国内以推动创新,还是因经济或政治原因任其流向他国。

完整事件代码

flavor_flo.29 = { # The First Modern Engineer
	type = country_event
	title = flavor_flo.29.title
	desc = flavor_flo.29.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = FLO
		tag = TUS
		from = 1397.1.1
		to = 1440.1.1
		monthly_chance = 2
	}

	trigger = {
		owns = location:florence
		location:florence = {
			OR = {
				has_building_with_at_least_one_level = arts_academy
				has_building_with_at_least_one_level = art_school
			}
		}
		months_of_income >= 4
	}

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

	immediate = {
		create_character = {
			first_name = name_philip
			last_name = Brunelleschi
			birth_location = location:florence
			culture = culture:tuscan
			artist = architect
			artist_skill = 0.95
			add_trait = trait:prominent
			save_scope_as = target_artist
			age = 25
			estate = estate_type:burghers_estate
			script = flo_brunelleschi
		}
		random_neighbor_country = {
			save_scope_as = target_country
		}
	}

	option = {
		name = flavor_flo.29.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.29.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
		}
	}
}