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.24] 重建拉特朗宫

时间范围:1580.1.1 - 1600.1.1(每月 1% 概率)

触发条件

  • 国家控制罗马地区。
  • 国家拥有变量 pap_can_rebuild_lateran
  • 人物 pap_fontana_script 存活。

关键效果

  • 选项 A (历史选项)
    • 人物 pap_fontana_script 获得 0.05 艺术家技能。
    • 在罗马地区创建一件艺术品:
      • 类型:纪念碑
      • 标识符:lateran_palace
      • 质量:70
      • 艺术家:pap_fontana_script
  • 选项 B
    • 罗马地区获得一次温和的发展度提升。

背景介绍: 拉特朗宫是罗马教廷的重要历史建筑。在16世纪末,教皇国考虑重建或修缮这座宫殿,以彰显其权威与艺术成就。本事件反映了教廷在反宗教改革时期,通过赞助艺术和建筑项目来巩固其精神与世俗影响力的努力。

完整事件代码

flavor_pap.24 = {
	type = country_event
	fire_only_once = yes
	title = flavor_pap.24.title
	desc = flavor_pap.24.desc
	fire_only_once = yes

	historical_info = flavor_pap.24.historical_info

	dynamic_historical_event = {
		tag = PAP
		from = 1580.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	trigger = {
		owns = location:rome
		has_variable = pap_can_rebuild_lateran
		character:pap_fontana_script ?= { is_alive = yes }
	}

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

	immediate = {
		location:rome ?= {
			save_scope_as = target_province
		}
		character:pap_fontana_script ?= { save_scope_as = fontana }
	}

	option = {
		name = flavor_pap.24.a
		historical_option = yes
		scope:fontana = {
			add_artist_skill = 0.05
		}
		location:rome = {
			create_art = {
				quality = 70
				type = work_of_art_type:monument
				key = lateran_palace
				artist = scope:fontana
			}
		}
	}

	option = {
		name = flavor_pap.24.b
		location:rome = {
			change_development = development_mild_bonus
		}
	}

	after = {
		remove_variable = pap_can_rebuild_lateran
	}
}