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_byz.10 拜占庭的捐赠者

时间范围
无明确 fromto 日期限制。
触发概率
monthly_chance 字段,为一次性触发事件。

触发条件

  • 事件通过脚本或条件直接触发,无显式 trigger 字段。
  • 事件逻辑要求存在至少一个国家拥有变量 donated_to_byzantium

关键效果
选项 A:接受捐赠

  • 财政增益:获得相当于 donated_to_byzantium 国家(捐赠国)月度贸易与税收收入的 6 倍金额。
  • 威望影响:获得少量威望惩罚(prestige_mild_penalty)。
  • 变量清理:从所有拥有变量 donated_to_byzantium 的国家中移除该变量。

背景介绍
该事件模拟了外部势力对拜占庭帝国的财政援助。在帝国面临内外压力时,友好的国家或势力可能提供资金支持,以帮助稳定局势或巩固联盟。接受此类捐赠虽能缓解财政压力,但可能被视为依赖外援,对帝国的威望造成一定损害。

完整事件代码

flavor_byz.10 = {
	hide_portraits = yes
	type = country_event
	title = flavor_byz.10.title
	desc = flavor_byz.10.desc

	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		random_country = {
			limit = {
				has_variable = donated_to_byzantium
			}
			ruler = { save_scope_as = target_character }
			save_scope_as = donated_to_byzantium
		}

		location:constantinople = {
			save_scope_as = target_province
		}

		event_illustration_government_estate_effect = yes
	}

	option = {
		name = flavor_byz.10.a

		add_gold = {
			value = scope:donated_to_byzantium.monthly_income_trade_and_tax
			multiply = 6
		}

		add_prestige = prestige_mild_penalty

		random_country = {
			limit = {
				has_variable = donated_to_byzantium
			}
			remove_variable = donated_to_byzantium
		}
	}
}