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_ven.53 威尼斯盐业贸易

时间范围
1350.1.1 - 1836.1.1(每月 1% 概率)

触发条件

  • 拥有至少 10 个生产盐(goods:salt)的省份

关键效果

  • 选项flavor_ven.53.a
    • 获得相当于 6 倍规模的金钱(change_gold_effect = { scale = 6 }
    • 所有拥有盐资源的省份获得繁荣度大幅提升(change_prosperity = prosperity_severe_bonus

背景介绍
威尼斯共和国凭借其优越的地理位置与贸易网络,长期垄断地中海地区的盐业贸易。盐不仅是重要的调味品与防腐剂,也是中世纪至近代早期国际贸易中的关键商品。本事件反映了威尼斯通过控制盐资源产地与贸易路线,积累巨额财富并带动相关地区经济繁荣的历史过程。

完整事件代码

flavor_ven.53 = { # The Venetian Salt Trade
	type = country_event
	title = flavor_ven.53.title
	desc = flavor_ven.53.desc

	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_salt.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = VEN
		from = 1350.1.1
		to = 1836.1.1
		monthly_chance = 1
	}

	trigger = {
		any_owned_location = {
			count >= 10
			raw_material = goods:salt
		}
	}

	option = {
		name = flavor_ven.53.a
		change_gold_effect = { scale = 6 }
		custom_tooltip = flavor_ven.53.a.tt
		hidden_effect = {
			every_owned_location = {
				if = {
					limit = {
						raw_material = goods:salt
					}
					change_prosperity = prosperity_severe_bonus
				}
			}
		}
	}
}