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.57 维特·施托斯与克拉科夫圣坛

时间范围:1477.1.1 - 1496.1.1(每月 5% 概率)

触发条件

  • 国家拥有克拉科夫(krakow)地区。
  • 克拉科夫地区建有一座寺庙(building_type:temple)。

关键效果

  • 选项 A (flavor_pol.57.a) [历史选项]
    • 花费 6 个月收入(scale = -6)。
    • 将艺术家维特·施托斯(Vitus Stoss)移至本国。
    • 在克拉科夫地区创建一件艺术品:
      • 类型:雕像(work_of_art_type:statue)。
      • 品质:70。
      • 艺术家:维特·施托斯。
      • 标识符:pol_altarpiece
  • 选项 B (flavor_pol.57.b)
    • 获得少量威望惩罚(prestige_mild_penalty)。
    • 无声地杀死艺术家维特·施托斯。

背景介绍: 该事件模拟了文艺复兴时期德国雕塑家维特·施托斯(约1448-1533年)受邀为波兰克拉科夫圣玛丽教堂创作大型木制祭坛画(圣坛)的历史事件。施托斯是当时欧洲最杰出的雕塑家之一,他的这件作品耗时12年(1477-1489年),成为晚期哥特式雕塑的杰作,极大地提升了克拉科夫的文化声望,并体现了文艺复兴艺术在波兰的传播与影响。

完整事件代码

flavor_pol.57 = {
	type = country_event

	title = flavor_pol.57.title
	desc = flavor_pol.57.desc
	historical_info = flavor_pol.57.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = POL
		from = 1477.1.1
		to = 1496.1.1
		monthly_chance = 5
	}

	fire_only_once = yes

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

	trigger = {
		owns = location:krakow
		location:krakow = {
			has_building = building_type:temple
		}
	}

	immediate = {
		location:krakow = {
			save_scope_as = pol_basilica_location
		}
		create_character = { #https://en.wikipedia.org/wiki/Veit_Stoss
			first_name = name_vitus
			last_name = Stoss
			adm = { 40 50 }
			dip = { 50 60 }
			mil = { 20 30 }
			birth_date = 1448.1.1
			birth_location = location:horb
			estate = estate_type:burghers_estate
			create_in_limbo = yes
			artist = sculptor
			artist_skill = { 0.65 0.85 }
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_pol.57.a

		historical_option = yes

		change_gold_effect = { scale = -6 }
		scope:target_character = {
			move_country = ROOT
		}

		location:krakow = {
			create_art = {
				artist = scope:target_character
				quality = 70
				type = work_of_art_type:statue #best equivalent for an altarpiece?
				key = pol_altarpiece
			}
		}
	}
	option = {
		name = flavor_pol.57.b

		add_prestige = prestige_mild_penalty
   		kill_character_silently = scope:target_character
	}
}