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.1002] 贸易收入转移

时间范围
该事件为一次性事件,无具体时间范围。

触发概率
该事件为一次性触发事件,无周期性概率。

触发条件

  • 事件为一次性事件 (fire_only_once = yes)。
  • 事件通过游戏机制(如满足特定条件或由其他事件链触发)直接激活,代码中未定义具体的 trigger 条件。

关键效果

  • 选项 A (flavor_chi.1002.a):
    • 获得一笔金币,金额等于目标外国国家 (scope:target_foreign_country) 24个月的贸易与税收月收入总和。
    • 如果本国是国际组织“中央王国” (international_organization:middle_kingdom) 的领导者,则获得温和的天朝权威增益 (celestial_authority_mild_bonus)。

背景介绍
此事件模拟了一次性的重大贸易或财政转移。可能源于与某个外国势力达成了一项极其有利的贸易协定、征收了巨额关税、获得了战争赔款,或是一次成功的商业投机。对于领导着“中央王国”这一国际组织的国家而言,这笔横财不仅充实了国库,还进一步巩固了其在该组织内的权威和领导地位。

完整事件代码

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

	fire_only_once = yes

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
	}

	option = {
		name = flavor_chi.1002.a
		add_gold = { value = scope:target_foreign_country.monthly_income_trade_and_tax multiply = 24 }
		if = {
			limit = { is_leader_of_international_organization = international_organization:middle_kingdom }
			change_celestial_authority = { value = celestial_authority_mild_bonus }
		}
	}
}