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.29 彼特拉克访问米兰

时间范围:1339.1.1 - 1360.12.30(每月 1% 概率)

触发条件

  • 国家处于和平且富裕状态 (peaceful_and_rich = yes)。
  • 人物 pap_francesco_petrarca(弗朗切斯科·彼特拉克)存活,且不属于本国。
  • 彼特拉克的所属国与本国满足以下所有条件:
    • 不是敌对国 (is_enemy_of)。
    • 不是竞争对手 (is_rival_of)。
    • 对本国的好感度大于10。
  • 本国拥有统治者 (has_ruler = yes)。
  • 本国统治者未被绝罚 (NOT = { has_character_modifier = excommunicated })。
  • 本国拥有 location:milano(米兰地区)。

关键效果

  • 选项 A (flavor_mlo.29.a)
    • 将人物 pap_francesco_petrarca(彼特拉克)移动至本国。
    • 社会价值观 traditionalist_vs_innovative 向右移动(趋向创新)。
    • 金钱减少(规模系数 -3)。
  • 选项 B (flavor_mlo.29.b)
    • 增加少量威望惩罚 (prestige_weak_penalty)。
    • 社会价值观 traditionalist_vs_innovative 向左移动(趋向传统)。

背景介绍: 14世纪中叶,意大利人文主义先驱弗朗切斯科·彼特拉克曾游历各地。作为文艺复兴的先驱,他的到访被视为对当地文化声望的极大提升。此事件模拟了彼特拉克可能访问米兰公国的情况,反映了当时意大利城邦对学者和艺术家的争夺,以及人文主义思想传播对当地社会价值观可能产生的影响。

完整事件代码

flavor_mlo.29 = { #Petrarch visits Milano
	hide_portraits = yes
	type = country_event
	title = flavor_mlo.29.title
	desc = flavor_mlo.29.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = MLO
		from = 1339.1.1
		to = 1360.12.30
		monthly_chance = 1
	}

	trigger = {
		peaceful_and_rich = yes
		character:pap_francesco_petrarca = {
			is_alive = yes
			NOT = { owner = ROOT }
		}
		character:pap_francesco_petrarca.owner = {
			NOR = {
				is_rival_of = ROOT
				is_enemy_of = ROOT
				opinion = {
					target = ROOT
					value <= 10
				}
			}
		}
		has_ruler = yes
		ruler = {
			NOT = { has_character_modifier = excommunicated }
		}
		owns = location:milano
	}

	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:pap_francesco_petrarca = {
			save_scope_as = target_character
		}
		ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_mlo.29.a

		scope:target_character = {
			move_country = ROOT
		}
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_move_to_right }
		change_gold_effect = { scale = -3 }
	}

	option = {
		name = flavor_mlo.29.b

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