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.9 莱昂纳多·达·芬奇抵达米兰

时间范围:1482.1.1 - 1500.1.1 (每月 10% 概率)

触发条件

  • 国家拥有米兰地区 (location:milano)。
  • 名为 mlo_leonardo_script 的角色存在。
  • 该角色当前不属于触发此事件的国家 (character:mlo_leonardo_script.owner != ROOT)。

关键效果

  • 选项 A (flavor_mlo.9.a)

    • 花费大量金钱 (change_gold_effect = { scale = -4 })。
    • 获得大量研究进度 (add_research_progress = research_progress_severe_bonus)。
    • 社会价值观向“创新”方向移动 (change_societal_value 移向 innovative)。
    • 角色 mlo_leonardo_script 加入我国 (move_country = ROOT)。
    • 向该角色原属国家 (target_old_country) 静默触发事件 flavor_flo.32
  • 选项 B (flavor_mlo.9.b)

    • 损失少量威望 (add_prestige = prestige_weak_penalty)。
    • 社会价值观向“传统”方向移动 (change_societal_value 移向 traditionalist)。

背景介绍: 该事件模拟了文艺复兴巨匠莱昂纳多·达·芬奇于1482年左右离开佛罗伦萨,前往米兰宫廷寻求新机遇的历史时刻。在米兰,他不仅作为画家创作了《最后的晚餐》等杰作,更以工程师、建筑师和发明家的身份为斯福尔扎家族服务。对于控制米兰的国家而言,是否接纳并资助这位天才,意味着在艺术声望、科技发展与财政支出之间做出抉择。

完整事件代码

flavor_mlo.9 = {
	type = country_event
	title = flavor_mlo.9.title
	desc = flavor_mlo.9.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1482.1.1
		to = 1500.1.1
		monthly_chance = 10
	}

	trigger = {
		owns = location:milano
		exists = character:mlo_leonardo_script
		character:mlo_leonardo_script.owner != ROOT
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		location:milano = { save_scope_as = target_location }
		character:mlo_leonardo_script.owner = {
			save_scope_as = target_old_country
		}
		character:mlo_leonardo_script = {
			save_scope_as = target_artist
		}
	}

	option = {
		name = flavor_mlo.9.a


		change_gold_effect = { scale = -4 }
		add_research_progress = research_progress_severe_bonus
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}
		character:mlo_leonardo_script = {
			move_country = ROOT
		}
		custom_tooltip = flo_target_artist_joins_our_court_tt
		hidden_effect = {
			scope:target_old_country = {
				trigger_event_silently = {
					id = flavor_flo.32
				}
			}
		}
	}


	option = {
		name = flavor_mlo.9.b

		add_prestige = prestige_weak_penalty
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}
	}
}