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_flo.45 达芬奇绘制《蒙娜丽莎》

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

触发条件

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

关键效果

  • 选项 A (历史选项)
    • 在首都创建一件艺术品:
      • 类型:绘画
      • 关键标识:mona_lisa
      • 品质:95
      • 艺术家:莱昂纳多·达·芬奇
    • 增加少量威望。
    • 减少金钱(规模为 -5)。
  • 选项 B
    • 减少少量威望。

背景介绍: 该事件模拟了文艺复兴时期,由莱昂纳多·达·芬奇创作传世名画《蒙娜丽莎》的历史时刻。事件要求国家已处于文艺复兴的文化氛围中,并且这位天才艺术家正效力于该国。选择资助创作(历史选项)将诞生一件极高品质的艺术珍品,为国家带来文化声望,但需支付相应的佣金;而拒绝委托则会错失良机,导致国家威望受损。

完整事件代码

flavor_flo.45 = { #Leonardo da Vinci Paints the Mona Lisa
	type = country_event
	title = flavor_flo.45.title
	desc = flavor_flo.45.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = FLO
		tag = TUS
		from = 1480.1.1
		to = 1525.12.30
		monthly_chance = 1
	}

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

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

	option = {
		name = flavor_flo.45.a
		historical_option = yes

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

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

	option = {
		name = flavor_flo.45.b

		add_prestige = prestige_weak_penalty
	}
}