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.32 莱昂纳多移居米兰

时间范围
无明确 fromto 日期,事件仅触发一次(fire_only_once = yes)。

触发条件
事件为静态定义,无 trigger 字段,通常由游戏脚本或条件自动触发。

关键效果

  • 选项 A(flavor_flo.32.a

    • 文化获得轻度文化影响力加成(cultural_influence_mild_bonus
    • 文化获得轻度文化传统加成(cultural_tradition_mild_bonus
    • 社会价值观向“创新”方向移动(traditionalist_vs_innovative 右移)
  • 选项 B(flavor_flo.32.b

    • 国家威望受到轻微惩罚(prestige_weak_penalty
    • 获得针对莱昂纳多所属国家的“受辱”宣战理由(casus_belli:cb_insulted_us

背景介绍
该事件模拟了文艺复兴时期杰出人物莱昂纳多·达·芬奇从佛罗伦萨迁居米兰的历史情境。米兰在当时是艺术与科技的重要中心,莱昂纳多的移居促进了当地文化的繁荣与创新氛围的形成。事件反映了人才流动对地区文化发展与社会价值观的影响。

完整事件代码

flavor_flo.32 = { #Leonardo Moves to Milano
	type = country_event
	title = flavor_flo.32.title
	desc = flavor_flo.32.desc

	fire_only_once = yes

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

	immediate = {
		location:florence = {
			save_scope_as = target_old_location
		}
		location:milano = {
			save_scope_as = target_location
		}
		character:mlo_leonardo_script = { save_scope_as = target_artist }
	}

	option = {
		name = flavor_flo.32.a
		culture = {
			add_cultural_influence = cultural_influence_mild_bonus
			add_cultural_tradition = cultural_tradition_mild_bonus
		}
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}
	}

	option = {
		name = flavor_flo.32.b
		add_prestige = prestige_weak_penalty
		add_casus_belli = {
			type = casus_belli:cb_insulted_us
			target = character:mlo_leonardo_script.owner
		}
	}
}