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.6 普拉托的命运

时间范围:1345.1.1 - 1355.1.1(每月 10% 概率)

触发条件

  • 国家 c:PRA(普拉托)必须存在,且:
    • 由AI控制。
    • 与事件触发国(ROOT)处于联合统治状态。
    • 至少拥有1个省份。
  • 国家 c:FLO(佛罗伦萨)必须存在,且:
    • c:PRA 接壤。
    • 未与事件触发国(ROOT)处于战争状态。
    • 未与 c:PRA 处于战争状态。

关键效果

  • 选项 A (flavor_nap.6.a) - 历史选项
    • 事件触发国:支付一笔金额,其数值等于 c:PRA 国家月贸易与税收收入的60倍。
    • 目标国(佛罗伦萨):获得上述金额,并触发事件 flavor_nap.7
  • 选项 B (flavor_nap.6.b)
    • 事件触发国:获得 legitimacy_mild_bonus(适度的正统性增益)。

背景介绍: 该事件模拟了14世纪中叶,普拉托(Prato)城邦在政治上的关键抉择。普拉托当时处于那不勒斯王国(或相关势力)的联合统治之下,并与强大的邻邦佛罗伦萨接壤。事件的核心是决定普拉托的未来:是将其“出售”给富庶的佛罗伦萨以换取资金,还是维持现状以巩固统治者的正统性。这反映了中世纪意大利城邦间复杂的外交、经济与附庸关系。

完整事件代码

flavor_nap.6 = { #Fate of Prato
	hide_portraits = yes
	type = country_event
	title = flavor_nap.6.title
	desc = flavor_nap.6.desc
	historical_info = flavor_nap.6.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = NAP
		tag = TWS
		from = 1345.1.1
		#1351 in our timeline
		to = 1355.1.1
		monthly_chance = 10
	}

	trigger = {
		country_exists = c:PRA
		c:PRA = {
			is_ai = yes
			in_union_with = ROOT
			any_province = {
				count = 1
			}
		}
		country_exists = c:FLO
		c:FLO = {
			is_neighbor_of = c:PRA
			NOT = { is_at_war_with = ROOT }
			NOT = { is_at_war_with = c:PRA }
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		c:FLO = {
			save_scope_as = target_country
		}
		c:PRA = {
			save_scope_as = sold_country
		}
		save_scope_as = nap_from
		character:nap_robert_i_anjou = {
			save_scope_as = robert_scope
		}

		set_local_variable = {
			name = cost_for_prato
			value = { value = c:PRA.monthly_income_trade_and_tax multiply = 60 }
		}
	}


	option = {
		name = flavor_nap.6.a

		historical_option = yes

		show_as_tooltip = {
			add_gold = local_var:cost_for_prato
		}


		scope:target_country = {
			show_as_tooltip = {
				add_gold = { value = local_var:cost_for_prato multiply = -1 }
			}
			trigger_event_non_silently = flavor_nap.7
		}
	}

	option = {
		name = flavor_nap.6.b

		add_legitimacy = legitimacy_mild_bonus
	}
}