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_mlo.6 达·芬奇绘制《最后的晚餐》

时间范围:1470.1.1 - 1525.12.30(每月 1% 概率)

触发条件

  • 角色 mlo_leonardo_script(莱昂纳多·达·芬奇)存活,且为当前国家所有。
  • 已接纳“文艺复兴”思潮。

关键效果

  • 选项 A(历史选项)
    • 在首都创建一件艺术品:
      • 类型:绘画
      • 关键字:last_supper
      • 质量:85
      • 艺术家:莱昂纳多·达·芬奇
    • 获得少量威望加成。
    • 损失 5 倍基础值的金币。
  • 选项 B
    • 获得少量威望惩罚。

背景介绍: 该事件模拟了文艺复兴时期,由莱昂纳多·达·芬奇在米兰公爵国(MLO)创作其著名壁画《最后的晚餐》的历史时刻。事件要求国家已接纳文艺复兴思潮,且达·芬奇在世并为该国服务。选择历史选项将消耗资金以委托创作这幅杰作,为国家带来艺术声望;拒绝委托则可能导致声望损失。

完整事件代码

flavor_mlo.6 = { #Leonardo da Vinci Paints the Last Supper
	type = country_event
	title = flavor_mlo.6.title
	desc = flavor_mlo.6.desc

	dynamic_historical_event = {
		tag = MLO
		from = 1470.1.1
		to = 1525.12.30
		monthly_chance = 1
	}

	fire_only_once = yes

	trigger = {
		character:mlo_leonardo_script ?= {
			is_alive = yes
			owner = ROOT
		}
		has_embraced_institution = institution:renaissance
	}

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

	immediate = {
		character:mlo_leonardo_script = {
			save_scope_as = target_artist
		}
		capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_mlo.6.a
		historical_option = yes

		scope:target_location = {
			create_art = {
				quality = 85
				artist = scope:target_artist
				type = work_of_art_type:painting
				key = last_supper
			}
		}
		add_prestige = prestige_mild_bonus
		change_gold_effect = { scale = -5 }
	}

	option = {
		name = flavor_mlo.6.b

		add_prestige = prestige_weak_penalty
	}
}