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_dan.67] 埃尔梅隆德壁画

时间范围:1550.1.1 - 1837.1.1,每月 1% 概率触发

触发条件

  • 玩家拥有沃丁堡地区(location:vordingborg)。
  • 沃丁堡地区已建造寺庙建筑(has_building = building_type:temple)。

关键效果

  • 选项 A (flavor_dan.67.a):
    • 为当前主流文化添加一个弱增益的文化传统(add_cultural_tradition = cultural_tradition_weak_bonus)。
    • 在沃丁堡地区创建一件艺术品:
      • 类型:绘画(work_of_art_type:painting
      • 关键字:elmelunde_frescoes
      • 品质:60

背景介绍: 埃尔梅隆德壁画是位于丹麦莫恩岛埃尔梅隆德教堂内的一组中世纪晚期壁画,以其生动的圣经场景和独特的艺术风格而闻名。该事件模拟了在宗教建筑(寺庙)存在的前提下,这些重要文化遗产被“发现”或“创作”出来的过程,反映了艺术与宗教建筑在塑造民族文化认同中的作用。

完整事件代码

flavor_dan.67 = { #The Elmelunde Frescos
	type = country_event
	title = flavor_dan.67.title
	desc = flavor_dan.67.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = DAN
		from = 1550.1.1
		to = 1837.1.1
		monthly_chance = 1
	}

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

	immediate = {
		location:vordingborg = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_dan.67.a
		culture = {
			add_cultural_tradition = cultural_tradition_weak_bonus
		}
		location:vordingborg = {
			create_art = {
				quality = 60
				type = work_of_art_type:painting
				key = elmelunde_frescoes
			}
		}
	}
}