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_chi.2014 丁香贸易

时间范围
无明确 fromto 日期限制,事件触发概率未在代码中直接指定(monthly_chance 未定义)。

触发条件

  • 事件类型为国家事件(type = country_event)。
  • 触发时立即执行 set_chinese_expedition_scopes = yes,推测与特定的中国远征或探索机制相关(具体条件需参考游戏内其他脚本或机制)。

关键效果

  • 选项 A(名称对应本地化键 flavor_chi.2014.a):
    • 经济增益:首都市场(capital.market)增加大量丁香(goods:cloves)供应,具体数量由变量 market_goods_severe_gain 决定。
    • 国家修正:为国家添加名为 chi_cloves 的修正,持续 5 年

背景介绍
该事件反映了历史上中国通过海上贸易或远征活动获取珍贵香料——丁香的场景。丁香在近代早期是重要的贸易商品,主要产自摩鹿加群岛(今印度尼西亚马鲁古群岛),通过贸易网络传入东亚。事件中中国势力通过远征获得丁香供应,并因此获得长期的经济利益,体现了当时远洋贸易对资源与国家经济的影响。

完整事件代码

flavor_chi.2014 = {
	type = country_event
	title = flavor_chi.2014.title
	desc = flavor_chi.2014.desc

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

	immediate = {
		set_chinese_expedition_scopes = yes
	}

	option = {
		name = flavor_chi.2014.a
		
		capital.market = {
			add_goods_supply = {
				amount = market_goods_severe_gain
				goods = goods:cloves
			}
		}

		add_country_modifier = {
			mode = add
			modifier = chi_cloves
			years = 5
		}
	}

	after = {
		fire_post_expedition_events = yes
	}
}