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.108 维伦纽夫条约(西西里支付年度贡金)

时间范围

  • 事件窗口:无明确 fromto 日期限制,为条件触发事件。
  • 触发概率:无 monthly_chance 设置,满足触发条件后立即发生。

触发条件

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

  • 当前国家为 西西里(SIC)
  • 当前国家拥有变量 sicily_pays_tribute

关键效果

事件提供两个选项:

选项 A:flavor_nap.108.a

  • 历史选项:是
  • 前提条件:当前 未与那不勒斯(NAP)处于战争状态
  • 核心效果
    • 支付贡金:国家黄金减少(change_gold_effect = { scale = -2 })。
    • 触发隐藏效果:那不勒斯(NAP)将静默触发事件 flavor_nap.106
  • 自定义提示flavor_nap.103.tt1

选项 B:flavor_nap.108.b

  • 核心效果
    • 外交关系:那不勒斯(NAP)对本国获得“被侮辱”意见修正(add_opinion = { target = c:NAP modifier = opinion_insulted })。
    • 移除变量:清除本国的 sicily_pays_tribute 变量。
    • 条件性触发:如果 未与那不勒斯(NAP)处于战争状态未与那不勒斯(NAP)存在停战协议,则那不勒斯(NAP)将静默触发事件 flavor_nap.107
  • 自定义提示flavor_nap.103.tt1

背景介绍

此事件模拟了历史上西西里王国可能向那不勒斯王国支付年度贡金或履行某种附庸义务的情景。“维伦纽夫条约”可能指代两国间关于权力、贡赋或宗主关系的协定。选择支付贡金(历史选项)可维持表面和平,但会损耗国库;拒绝支付则会激怒那不勒斯,可能导致外交关系恶化甚至引发后续冲突。

完整事件代码

flavor_nap.108 = { #The Treaty of Villeneuve (Sicily pays yearly homage)
	type = country_event

	title = flavor_nap.108.title
	desc = flavor_nap.108.desc

	illustration_tags = {
        10 = regular
        10 = interior
    }

	trigger = {
		tag = SIC
		has_variable = sicily_pays_tribute
	}

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

	option = {
		name = flavor_nap.108.a
		historical_option = yes
		trigger = {
			NOT = { is_at_war_with = C:NAP }
		}
		change_gold_effect = { scale = -2 }
		custom_tooltip = flavor_nap.103.tt1
		hidden_effect = {
			c:NAP = {
				trigger_event_silently = { id = flavor_nap.106 }
			}
		}
	}

	option = {
		name = flavor_nap.108.b
		add_opinion = { target = c:NAP modifier = opinion_insulted }
		custom_tooltip = flavor_nap.103.tt1
		hidden_effect = {
			if = {
				limit = { 
					OR = {
						NOT = { is_at_war_with = C:NAP } 	
						NOT = {	has_truce_with = c:NAP }
					}
				}
				c:NAP = {
					trigger_event_silently = { id = flavor_nap.107 }
				}
			}
			c:SIC = {
				remove_variable = sicily_pays_tribute
			}
		}
	}
}