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.34] 莱昂纳多·达·芬奇的骑马雕像

时间范围:1497.1.1 - 1515.12.30(每月 1% 概率)

触发条件

  • 国家拥有米兰(milano)地区。
  • 角色 mlo_leonardo_script(莱昂纳多·达·芬奇)属于本国且存活。

关键效果

  • 选项 A (flavor_mlo.34.a):
    • 花费相当于3倍规模的黄金。
    • 在米兰地区创建一件艺术品:
      • 艺术家:莱昂纳多·达·芬奇。
      • 品质:85。
      • 类型:纪念碑(monument)。
      • 标识符:equestrian_statue
  • 选项 B (flavor_mlo.34.b):
    • 获得少量政府权力惩罚。
    • 社会价值观向“传统主义 vs 创新”的左侧(传统主义方向)轻微移动。

背景介绍: 该事件模拟了文艺复兴时期,米兰统治者考虑是否委托艺术大师莱昂纳多·达·芬奇创作一座宏伟的骑马雕像的历史可能性。达·芬奇曾为米兰公爵弗朗切斯科·斯福尔扎设计过大型骑马雕像,虽未最终建成,但其设计体现了文艺复兴艺术与工程学的结合。此事件反映了赞助艺术对城市声望、财政以及文化价值观的影响。

代码块

flavor_mlo.34 = { #The Equestrian Statue of Leonardo da Vinci
	type = country_event
	title = flavor_mlo.34.title
	desc = flavor_mlo.34.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1497.1.1
		to = 1515.12.30
		monthly_chance = 1
	}

	trigger = {
		owns = location:milano
		character:mlo_leonardo_script = {
			owner = ROOT
			is_alive = yes
		}
	}

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

	immediate = {
		location:milano = {
			save_scope_as = target_location
		}
		character:mlo_leonardo_script = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mlo.34.a


		change_gold_effect = { scale = -3 }
		scope:target_location = {
			create_art = {
				artist = scope:target_character
				quality = 85
				type = work_of_art_type:monument
				key = equestrian_statue
			}
		}
	}

	option = {
		name = flavor_mlo.34.b

		add_government_power = government_power_mild_penalty
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_minor_move_to_left
		}
	}
}