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.30 一位伟大的意大利画家

时间范围:1415.1.1 - 1425.1.1,每月 1% 概率触发

触发条件

  • 拥有阿雷佐(Arezzo)和佛罗伦萨(Florence)地区。
  • 佛罗伦萨地区至少拥有一座艺术研究院(Arts Academy)或艺术学校(Art School)。
  • 国库储备至少为4个月的收入。

关键效果

  • 选项 A (flavor_flo.29.a)

    • 花费相当于4个月收入的金钱。
    • 社会价值观向“创新”方向移动。
    • 一位名为托马斯·迪·塞尔·乔瓦尼·迪·西蒙(Thomas di Ser Giovanni di Simone)的20岁托斯卡纳文化画家将加入你的宫廷。他拥有“熟练”特质,初始绘画技能为0.7,并被分配至市民阶层。
  • 选项 B (flavor_flo.29.b)

    • 触发前提:存在一个随机的邻国。
    • 损失少量威望。
    • 社会价值观向“传统”方向移动。
    • 上述画家将离开你的宫廷,并移居至一个随机的邻国。

背景介绍: 此事件模拟了文艺复兴早期,一位才华横溢的画家在佛罗伦萨及其周边地区崭露头角的历史情境。佛罗伦萨作为艺术赞助和教育的中心(拥有艺术学院或学校),吸引了像托马斯(可能指代早期文艺复兴画家马萨乔)这样的艺术家。事件反映了统治者面临的经典抉择:是投入资源资助并留住这位本土天才,推动文化创新;还是出于财政或保守考虑,任由人才流失至邻国。

完整事件代码

flavor_flo.30 = { # A Great Italian Painter
	type = country_event
	title = flavor_flo.30.title
	desc = flavor_flo.30.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FLO
		tag = TUS
		from = 1415.1.1
		to = 1425.1.1
		monthly_chance = 1
	}

	trigger = {
		owns = location:arezzo
		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_thomas
			last_name = di_Ser_Giovanni_di_Simone
			birth_location = location:arezzo
			culture = culture:tuscan
			artist = painter
			artist_skill = 0.7
			save_scope_as = target_artist
			age = 20
			add_trait = trait:adept
			estate = estate_type:burghers_estate
		}
		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
		}
	}
}