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.223] 教皇拒绝我们的请求

时间范围
事件为一次性触发(fire_only_once = yes),无具体 fromto 日期限制,也无 monthly_chance 概率设置。

触发条件
事件为特定触发的国家事件,代码中未直接给出 trigger 字段,需在游戏内其他机制或前置事件中满足条件后方可触发。

关键效果

  • 选项 A(历史选项)flavor_nap.223.a
    • 获得金钱:金额为 那不勒斯(NAP)每月贸易与税收收入的两倍add_gold = { value = c:NAP.monthly_income_trade_and_tax multiply = 2 }

背景介绍
该事件描述了那不勒斯向教皇提出某项请求但遭到拒绝的情景。作为补偿或应对措施,那不勒斯获得了一笔相当于其两个月收入的资金,可能用于缓解外交失利带来的影响或转而投入其他国内事务。

完整事件代码

flavor_nap.223 = { #The Pope rejects our Request
	type = country_event

	title = flavor_nap.223.title
	desc = flavor_nap.223.desc


	fire_only_once = yes
	
	illustration_tags = {
        10 = happy
        10 = interior
    }
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		c:PAP.ruler ?= {
			save_scope_as = pope_scope
		}
	}

	option = {
		name = flavor_nap.223.a
		historical_option = yes
		add_gold = {
			value = c:NAP.monthly_income_trade_and_tax
			multiply = 2
		}
	}
}