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_nap.119] 罗伯特与彼特拉克

时间范围

  • 事件类型:一次性事件(fire_only_once = yes
  • 触发时间范围:无明确 fromto 日期限制,满足触发条件后即可发生。
  • 触发概率:无 monthly_chance 设定,满足条件即触发。

触发条件

事件仅在以下所有条件同时满足时触发:

  • 当前国家为 那不勒斯王国(NAP)
  • 人物 罗伯特一世·安茹(nap_robert_i_anjou) 已死亡(is_alive = no)。
  • 人物 弗朗切斯科·彼特拉克(pap_francesco_petrarca) 存活(is_alive = yes),且其所有者是 教皇国(PAP)

关键效果

事件提供两个选项:

选项 A(历史选项)

  • 名称flavor_nap.119.a
  • 标记historical_option = yes
  • 效果
    1. 减少国家金币(change_gold_effect = { scale = -1 })。
    2. 显示自定义提示 flavor_nap.119.tt
    3. 隐藏效果:在 20 天后,向教皇国(PAP)静默触发事件 flavor_nap.120

选项 B

  • 名称flavor_nap.119.b
  • 效果:无具体效果说明(代码中为空)。

背景介绍

该事件涉及那不勒斯王国与文艺复兴早期重要人物之间的关系。罗伯特一世·安茹(1277-1343)是那不勒斯国王,以其对艺术和学术的赞助而闻名,被称为“智者罗伯特”。在他去世后,事件聚焦于他与著名诗人、学者弗朗切斯科·彼特拉克(1304-1374)之间的潜在联系。彼特拉克是文艺复兴人文主义的关键人物,常受雇于或受庇护于意大利诸国宫廷,包括教皇国。此事件可能反映了那不勒斯王国在罗伯特一世去世后,试图通过文化或外交手段(如资助学者)来延续其政治遗产或影响,与彼特拉克这样的顶尖知识分子建立联系。

完整事件代码

flavor_nap.119 = { #Robert and Petrarca
	type = country_event

	title = flavor_nap.119.title
	desc = flavor_nap.119.desc

	illustration_tags = {
        10 = regular
        10 = interior
    }

	fire_only_once = yes
	trigger = {
		tag = NAP
		character:nap_robert_i_anjou ?= {
			is_alive = no
		}
		character:pap_francesco_petrarca ?= {
			is_alive = yes
			owner = c:PAP
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:nap_robert_i_anjou = { save_scope_as = target_robert }
		character:pap_francesco_petrarca = { save_scope_as = target_petrarca }
	}

	option = {
		name = flavor_nap.119.a

		historical_option = yes
		change_gold_effect = { scale = -1}
		custom_tooltip = flavor_nap.119.tt
		hidden_effect = {
			c:PAP = {
				trigger_event_silently = { id = flavor_nap.120 days = 20 }
			}
		}
	}

	option = {
		name = flavor_nap.119.b

	}
}