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_pap.15 西斯廷教堂装饰

时间范围:1470.1.1 - 1600.1.1(每月 10% 概率)

触发条件

  • 控制罗马地区。
  • 罗马地区拥有地点修正 pap_sistine_chapel
  • 国家未处于破产状态。
  • 国库资金至少为月总收入的两倍。

关键效果

  • 选项 A (flavor_pap.15.a)

    • 触发条件:年份早于1510年,且人物 flo_sandro_boticelli_script(桑德罗·波提切利)存活。
    • 效果:花费相当于3倍月总收入的资金。若波提切利不在我国,则将其迁入我国。为罗马地区添加地点修正 pap_sistinechapel_botticelli
  • 选项 B (flavor_pap.15.b)

    • 触发条件:年份早于1494年,且人物 dominic_ghirlandaio(多梅尼科·吉兰达约)存活。
    • 效果:花费相当于3倍月总收入的资金。若吉兰达约不在我国,则将其迁入我国。为罗马地区添加地点修正 pap_sistinechapel_ghirlandaio
  • 选项 C (flavor_pap.15.c)

    • 触发条件:年份早于1523年,且人物 pietro_perugino(彼得罗·佩鲁吉诺)存活。
    • 效果:花费相当于3倍月总收入的资金。若佩鲁吉诺不在我国,则将其迁入我国。为罗马地区添加地点修正 pap_sistinechapel_perugino
  • 选项 D (flavor_pap.15.d)

    • 触发条件:年份在1500年至1564年之间,且人物 michelangelo_artist(米开朗基罗)存活。
    • 效果:花费相当于3倍月总收入的资金。若米开朗基罗不在我国,则将其迁入我国。为罗马地区添加地点修正 pap_sistinechapel_michelangelo
  • 选项 E (flavor_pap.15.e)

    • 效果:花费相当于2倍月总收入的资金。为罗马地区添加地点修正 pap_sistinechapel_decorated

背景介绍: 西斯廷教堂于1470年代竣工,其内部的装饰工程是文艺复兴时期艺术史上的重要篇章。数任教皇先后委托当时最杰出的艺术家为其绘制壁画,其中以米开朗基罗的天顶画最为著名。该事件模拟了教宗国在财力充足时,聘请不同艺术大师来装饰西斯廷教堂的决策过程,不同的选择将带来不同的艺术遗产和地区影响。

完整事件代码

flavor_pap.15 = {
	type = country_event
	fire_only_once = yes
	title = flavor_pap.15.title
	desc = flavor_pap.15.desc
	dynamic_historical_event = {
		tag = PAP
		from = 1470.1.1
		to = 1600.1.1
		monthly_chance = 10
	}
	
	trigger = {
		owns = location:rome
		location:rome = { has_location_modifier = pap_sistine_chapel }
		is_during_bankruptcy = no
		gold >= {
			value = monthly_income_total
			multiply = 2
		}
	}
	
	image = "gfx/interface/illustrations/institutions/renaissance.dds"

	immediate = {
		location:rome = {
			remove_location_modifier = pap_sistine_chapel
			save_scope_as = target_location
		}

		character:flo_sandro_boticelli_script ?= {
			save_scope_as = sandro_boticelli_scope
		}
		character:michelangelo_artist ?= {
			save_scope_as = michaelangelo_scope
		}
		if = {
			limit = {
				current_year < 1494
			}
			location:florence.owner = {
				create_character = { #https://en.wikipedia.org/wiki/Domenico_Ghirlandaio
					first_name = name_dominic #Domenico
					last_name = di_tommaso_curradi
					nickname = ghirlandaio
					birth_date = 1448.6.2
					birth_location = location:florence
					culture = culture:tuscan
					estate = estate_type:burghers_estate
					artist_skill = 0.80
					artist = painter
					script = dominic_ghirlandaio
					save_scope_as = ghirlandaio_scope
				}
			}
		}
		if = {
			limit = {
				current_year < 1523
			}
			location:chiusi.owner = {
				create_character = { #https://en.wikipedia.org/wiki/Pietro_Perugino
					first_name = name_peter
					last_name = vannucci
					nickname = perugino
					birth_date = 1446.1.1
					birth_location = location:chiusi
					culture = culture:tuscan
					estate = estate_type:burghers_estate
					artist_skill = 0.85
					artist = painter
					script = pietro_perugino
					save_scope_as = pietro_perugino_scope
				}
			}
		}

	}
	
	option = {
		name = flavor_pap.15.a
		trigger = {
			current_year < 1510
			scope:sandro_boticelli_scope ?= {
				is_alive = yes
			}
		}
		change_gold_effect = { scale = -3.00 }
		scope:sandro_boticelli_scope = {
			if = {
				limit = { owner != root }
				move_country = root
			}
		}
		location:rome = {
			add_location_modifier = { modifier = pap_sistinechapel_botticelli months = -1 mode = add_and_extend }
		}
	}
	
	option = {
		name = flavor_pap.15.b
		trigger = {
			current_year < 1494
			scope:ghirlandaio_scope = {
				is_alive = yes
			}
		}
		change_gold_effect = { scale = -3.00 }
		scope:ghirlandaio_scope = {
			if = {
				limit = { owner != root }
				move_country = root
			}
		}
		location:rome = {
			add_location_modifier = { modifier = pap_sistinechapel_ghirlandaio months = -1 mode = add_and_extend }
		}
	}
	
	option = {
		name = flavor_pap.15.c
		trigger = {
			current_year < 1523
			scope:pietro_perugino_scope = {
				is_alive = yes
			}
		}
		change_gold_effect = { scale = -3.00 }
		scope:pietro_perugino_scope = {
			if = {
				limit = { owner != root }
				move_country = root
			}
		}
		location:rome = {
			add_location_modifier = { modifier = pap_sistinechapel_perugino months = -1 mode = add_and_extend }
		}
	}
	
	option = {
		name = flavor_pap.15.d
		trigger = {
			current_year >= 1500
			current_year < 1564
			scope:michaelangelo_scope = {
				is_alive = yes
			}
		}
		change_gold_effect = { scale = -3.00 }
		scope:michaelangelo_scope = {
			if = {
				limit = { owner != root }
				move_country = root
			}
		}
		location:rome = {
			add_location_modifier = { modifier = pap_sistinechapel_michelangelo months = -1 mode = add_and_extend }
		}
	}
	
	option = {
		name = flavor_pap.15.e
		change_gold_effect = { scale = -2.00 }
		location:rome = {
			add_location_modifier = { modifier = pap_sistinechapel_decorated months = -1 mode = add_and_extend }
		}
	}
}