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.57 托瓦尔森博物馆

时间范围:1795.1.1 - 1815.1.1,每月 10% 概率触发

触发条件

  • 全局变量 berthel_thorvaldsen 对应的人物已死亡。
  • 位于 kobenhavn 的地点中,存在艺术品 work_of_art:christiansborg_palace(克里斯蒂安堡宫艺术品)。

关键效果

  • 选项 A (flavor_dan.57.a) - 历史选项

    • 获得 prestige_mild_bonus(少量威望加成)。
    • 文化获得 cultural_tradition_mild_bonus(少量文化传统加成)。
    • 金钱减少(规模系数 -8)。
    • 艺术品 work_of_art:christiansborg_palace 的艺术品质提升 15。
  • 选项 B (flavor_dan.57.b)

    • 获得 prestige_weak_bonus(微弱威望加成)。
    • 文化获得 cultural_tradition_weak_bonus(微弱文化传统加成)。
    • 金钱减少(规模系数 -3)。
  • 选项 C (flavor_dan.57.c)

    • 获得 prestige_mild_penalty(少量威望惩罚)。

背景介绍: 该事件围绕丹麦新古典主义雕塑家贝特尔·托瓦尔森(Bertel Thorvaldsen)及其艺术遗产展开。托瓦尔森是19世纪初欧洲最著名的艺术家之一,其大量作品被收藏于哥本哈根。事件模拟了在其去世后,国家或机构决定如何处置其艺术遗产,特别是与克里斯蒂安堡宫相关的艺术品,可能涉及建立博物馆、进行艺术投资或选择忽视其文化价值的不同路径。

完整事件代码

flavor_dan.57 = { #Thorvaldsen's Museum
	type = country_event
	title = flavor_dan.57.title
	desc = flavor_dan.57.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = DAN
		from = 1795.1.1
		to = 1815.1.1
		monthly_chance = 10
	}

	historical_info = flavor_dan.57.historical_info

	immediate = {
		character:dan_thorvaldsen_script ?= { save_scope_as = thorvaldsen }
		location:kobenhavn = {
		save_scope_as = target_location
		}
	}

	trigger = {
		global_var:berthel_thorvaldsen = {
			is_alive = no
		}
		location:kobenhavn = {
			any_work_of_art_in_location = {
				this = work_of_art:christiansborg_palace
			}
		}
	}

	option = {
		name = flavor_dan.57.a
		historical_option = yes
		add_prestige = prestige_mild_bonus
		culture = {
			add_cultural_tradition = cultural_tradition_mild_bonus
		}
		change_gold_effect = { scale = -8 }
		work_of_art:christiansborg_palace = {
			change_art_quality = 15
		}
	}

	option = {
		name = flavor_dan.57.b
		add_prestige = prestige_weak_bonus
		culture = {
			add_cultural_tradition = cultural_tradition_weak_bonus
		}
		change_gold_effect = { scale = -3 }
	}

	option = {
		name = flavor_dan.57.c
		add_prestige = prestige_mild_penalty
	}

	after = {
		remove_variable = berthel_thorvaldsen
	}
}