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_ira.17 瓷器贸易协定

时间范围

1500.1.1 - 1800.1.1,每月 5% 概率触发。

触发条件

  • 国家必须拥有统治者 (has_ruler = yes)。
  • 首都所在市场 (capital.market) 未禁止进口 (is_import_banned) 商品 瓷器 (goods:porcelain)。
  • 至少存在一个 同盟关系 (type = alliance) 的关联国家 (any_related_country),且该国家满足:
    • 拥有统治者 (has_ruler = yes)。
    • 首都位于 东亚 次大陆 (capital.sub_continent = sub_continent:east_asia)。
    • 其首都所在市场 (capital.market) 满足:
      • 未禁止出口 (is_export_banned) 商品 瓷器 (goods:porcelain)。
      • 该市场 生产 (is_produced_in_market) 瓷器。

关键效果

选项:flavor_ira.17.a

  • 在触发国(root_market)的市场中,为 瓷器 供应量增加一个 市场商品大量增益 (amount = market_goods_severe_gain)。
  • 触发国获得 威望小幅增益 (add_prestige = prestige_mild_bonus)。
  • 目标同盟国(target_country)获得 威望小幅增益 (add_prestige = prestige_mild_bonus)。

背景介绍

在近代早期(1500-1800年),瓷器是东亚地区重要的贸易商品,尤其以中国瓷器闻名于世。此事件模拟了伊朗(或符合条件的国家)通过与东亚的同盟国建立贸易联系,成功将珍贵的瓷器引入本国市场的过程。这不仅丰富了国内的奢侈品供应,也通过成功的国际贸易增强了双方国家的声望与影响力。

完整事件代码

flavor_ira.17  = {
	type = country_event
	title = flavor_ira.17.title
	desc = flavor_ira.17.desc
	fire_only_once = yes

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

	dynamic_historical_event = {
		tag = IRA
		from = 1500.1.1
		to = 1800.1.1
		monthly_chance = 5
	}
	trigger = {
		has_ruler = yes
		capital = {
			market ?= {
				NOT = { is_import_banned = goods:porcelain }
			}
		}
		any_related_country = {
			type = alliance
			capital.sub_continent = sub_continent:east_asia
			has_ruler = yes
			capital = {
				market ?= {
					NOT = { is_export_banned = goods:porcelain }
					is_produced_in_market = goods:porcelain
				}
			}
		}
	}
	immediate = {
		save_scope_as = root_country
		ruler ?= { save_scope_as = root_character }
		capital.market = { save_scope_as = root_market }
		random_related_country = {
			type = alliance
			limit = {
				capital.sub_continent = sub_continent:east_asia
				capital = {
					market ?= {
						NOT = { is_export_banned = goods:porcelain }
						is_produced_in_market = goods:porcelain
					}
				}
			}
			save_scope_as = target_country
			ruler ?= { save_scope_as = target_character }
		}
	}
	option = {
		name = flavor_ira.17.a
		scope:root_market = {
			add_goods_supply = {
				goods = goods:porcelain
				amount = market_goods_severe_gain
			}
		}
		add_prestige = prestige_mild_bonus
		scope:target_country = { add_prestige = prestige_mild_bonus }
	}
}