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.4601] 马基雅维利与《君主论》

时间范围
此事件为动态历史事件,无固定的 fromto 日期限制。当触发条件满足时,每月有概率触发(具体概率取决于游戏引擎的默认设置或未在此代码中明确指定的 monthly_chance 值)。

触发条件

  • 角色 flo_machiavelli(马基雅维利)必须存活。
  • 该角色必须由玩家控制的国家(root)拥有。

关键效果

  • 历史选项flavor_flo.4601.a
    • 获得少量威望加成(add_prestige = prestige_mild_bonus)。
    • 如果国家 c:MLO(米兰)存在,则向其静默触发事件 flavor_flo.4602

背景介绍
尼科洛·马基雅维利是文艺复兴时期佛罗伦萨的政治家、哲学家和作家。他最著名的作品《君主论》写于1513年,是一部关于政治权力和统治艺术的论著,以其现实主义和实用主义观点而闻名,对后世政治思想产生了深远影响。该事件模拟了马基雅维利创作《君主论》这一历史时刻,以及其作品可能对周边政治实体(如米兰)产生的影响。

完整事件代码

flavor_flo.4601 = {
	type = country_event
	title = flavor_flo.4601.title
	desc = flavor_flo.4601.desc

	trigger = {
		character:flo_machiavelli ?= {
			is_alive = yes
			owner = root
		}
	}

	immediate = {
		location:florence = {
			create_art = {
				artist = scope:target_artist
				quality = 92
				type = work_of_art_type:treatise
				key = the_prince
			}
		}
		work_of_art:the_prince = {
			save_scope_as = target_art
		}
	}

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

	option = {
		name = flavor_flo.4601.a
		add_prestige = prestige_mild_bonus

		if = {
			limit = {
				country_exists = c:MLO
			}
			c:MLO = { trigger_event_silently = { id = flavor_flo.4602  } }
		}
	}
}