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.103 维勒讷夫条约(西西里的回应)

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

触发条件:此事件由其他事件(如 flavor_nap.106)或游戏逻辑触发,代码中未直接定义 trigger 字段。

关键效果

  • 选项 A:接受条约

    • 历史选项:是 (historical_option = yes)
    • 效果:
      • 减少相当于2倍月度收入的金币 (change_gold_effect = { scale = -2 })。
      • 触发隐藏效果:
        • 触发事件 flavor_nap.106
        • 为西西里 (c:SIC) 设置变量 sicily_pays_tribute 为 1。
  • 选项 B:要求附庸

    • 效果:
      • 使西西里 (c:SIC) 成为那不勒斯 (c:NAP) 的附庸国 (subject_type:vassal)。
      • 阿拉贡 (c:ARA) 对本国产生“被侮辱”意见 (opinion_insulted)。
      • 那不勒斯 (c:NAP) 对本国产生“满意”意见 (opinion_pleased)。
      • 触发隐藏效果:
        • 触发阿拉贡事件 flavor_nap.104
        • 触发那不勒斯事件 flavor_nap.105
  • 选项 C:拒绝条约

    • 效果:
      • 那不勒斯 (c:NAP) 对本国产生“被侮辱”意见 (opinion_insulted)。
      • 教皇国 (c:PAP) 对本国产生“轻微不满”意见 (opinion_mildly_displeased)。
      • 触发隐藏效果:
        • 触发那不勒斯事件 flavor_nap.107

背景介绍:此事件模拟了那不勒斯王国与西西里王国之间关于《维勒讷夫条约》的谈判与决策。该条约涉及两国的地位、贡金或附庸关系,其不同的选择将直接影响两国关系,并可能引发阿拉贡、教皇国等周边势力的连锁反应,反映了意大利南部地区复杂的政治博弈。

完整事件代码

flavor_nap.103 = { #The Treaty of Villeneuve (Sicily's answer)
	type = country_event

	title = flavor_nap.103.title
	desc = flavor_nap.103.desc

	illustration_tags = {
        10 = regular
        10 = interior
    }

	fire_only_once = yes

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_nap.103.a
        historical_option = yes

		change_gold_effect = { scale = -2 }
		custom_tooltip = flavor_nap.103.tt1
		hidden_effect = {
			c:NAP = {
				trigger_event_silently = { id = flavor_nap.106 }
			}
			c:SIC = {
				set_variable = {
					name = sicily_pays_tribute
					value = 1
				}
			}
		}
	}
	option = {
		name = flavor_nap.103.b
		c:SIC = {
			make_subject_of = {
				target = c:NAP
				type = subject_type:vassal
			}
		}
		add_opinion = { target = c:ARA modifier = opinion_insulted }
		add_opinion = { target = c:NAP modifier = opinion_pleased }


		custom_tooltip = flavor_nap.103.tt1
		custom_tooltip = flavor_nap.103.tt2
		hidden_effect = {
			c:ARA = {
				trigger_event_silently = { id = flavor_nap.104 }
			}
			c:NAP = {
				trigger_event_silently = { id = flavor_nap.105 }
			}
		}
	}
	option = {
		name = flavor_nap.103.c

		add_opinion = { target = c:NAP modifier = opinion_insulted }
		add_opinion = { target = c:PAP modifier = opinion_mildly_displeased }
		custom_tooltip = flavor_nap.103.tt1
		hidden_effect = {
			c:NAP = {
				trigger_event_silently = { id = flavor_nap.107 }
			}
		}

	}
}