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_hab.29] 圣斯特凡大教堂竣工

时间范围:1340.1.1 - 1360.1.1(每月 1% 概率)

触发条件

  • 国家拥有统治者。
  • 国家拥有维也纳地区。

关键效果

  • 选项 A (flavor_hab.29.a)
    • 国库减少 6 金币。
    • 在维也纳地区创建一件艺术品:
      • 类型:纪念碑
      • 关键标识:st_stephens_cathedral
      • 品质:80
  • 选项 B (flavor_hab.29.b)
    • 获得少量威望惩罚。
    • (隐藏效果)销毁艺术品 st_stephens_cathedral

背景介绍: 该事件模拟了14世纪中叶,哈布斯堡王朝在维也纳完成圣斯特凡大教堂(St. Stephen’s Cathedral)建造的历史进程。大教堂的竣工不仅是维也纳城市发展的重要里程碑,也象征着哈布斯堡家族在奥地利地区统治的巩固与宗教影响力的提升。事件反映了统治者面临的抉择:是投入巨资完成这项宏伟的宗教工程以彰显权威,还是出于财政压力选择放弃,从而承受声望损失。

完整事件代码

flavor_hab.29 = { #Finishing the St. Stephen's Cathedral
	type = country_event
	title = flavor_hab.29.title
	desc = flavor_hab.29.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1340.1.1
		to = 1360.1.1
		monthly_chance = 1
	}

	immediate = {
		character:hab_albrecht_i_habsburg ?= { save_scope_as = albrecht }
		location:vienna = {
			create_art = {
				quality = 80
				type = work_of_art_type:monument
				key = st_stephens_cathedral
			}
		}
	}

	trigger = {
		has_ruler = yes
		owns = location:vienna
	}

	option = {
		name = flavor_hab.29.a
		change_gold_effect = { scale = -6 }
		show_as_tooltip = {
			location:vienna = {
				create_art = {
					quality = 80
					type = work_of_art_type:monument
					key = st_stephens_cathedral
				}
			}
		}
	}

	option = {
		name = flavor_hab.29.b
		add_prestige = prestige_mild_penalty
		hidden_effect = {
			destroy_art = work_of_art:st_stephens_cathedral
		}
	}
}