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_mam.70 马穆鲁克统治者投资开罗

时间范围:无明确起止日期(from/to),事件满足条件后即可触发。

触发条件

  • 国家已采用政府改革:马穆鲁克政府 (has_reform = government_reform:mamluk_government)。
  • 国家拥有变量 mam_ruler_invested_in_cairo
  • 省份开罗 (location:cairo) 是当前国家的首都 (is_capital_of = { target = root })。

关键效果: 事件提供五个选项,每个选项均会为当前国家设置变量 mam_ruler_invested_in_cairo,以防止事件重复触发。

  • 选项 A (flavor_mam.70.a)

    • 效果:在首都市场 (scope:target_location.market) 为该国添加一个持续 120个月 的温和贸易力量增益 (merchant_power_mild_bonus),效果标识为 bolstered_capital_trade
    • 代价:支付一笔相当于 1个月总收入 的金钱(金额在10至1000之间)。
  • 选项 B (flavor_mam.70.b)

    • 效果:提升首都省份 (scope:target_location) 的发展度 (development_mild_bonus)。
    • 代价:支付一笔相当于 1个月总收入 的金钱(金额在10至1000之间)。
  • 选项 C (flavor_mam.70.c)

    • 效果
      1. 提升 神职人员阶层 (estate_type:clergy_estate) 的阶层满意度 (estate_satisfaction_mild_bonus)。
      2. 使社会思潮 神秘主义 vs 法学 (mysticism_vs_jurisprudence) 向“法学”方向轻微移动 (societal_value_tiny_move_to_right)。
    • 代价:支付一笔相当于 1个月总收入 的金钱(金额在10至1000之间)。
  • 选项 D (flavor_mam.70.d)

    • 效果:获得温和的 正统性 (legitimacy_mild_bonus) 与 威望 (prestige_mild_bonus) 增益。
    • 代价:支付一笔相当于 1个月总收入 的金钱(金额在10至1000之间)。
  • 选项 E (flavor_mam.70.e)

    • 效果:承受温和的 正统性 惩罚 (legitimacy_mild_penalty)。
    • 代价:无金钱消耗。

背景介绍: 作为马穆鲁克苏丹国的统治者,坐拥开罗这座繁华的都城与贸易枢纽,您面临着如何运用国家财富的抉择。是投资于强化首都的商业地位,还是直接促进城市的发展?是笼络强大的宗教阶层,还是巩固自身的统治威望?抑或是选择将资源保留,但这可能会引发关于统治者责任与能力的质疑。每一项投资都旨在增强国力,但也需要从国库中支取相应的资金。

完整事件代码

flavor_mam.70 = {
	type = country_event
	title = flavor_mam.70.title
	desc = flavor_mam.70.desc

	trigger = {
		has_reform = government_reform:mamluk_government
		NOT = { has_variable = mam_ruler_invested_in_cairo }
		location:cairo = {
			is_capital_of = {
				target = root
			}
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
		capital ?= {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_mam.70.a
		scope:target_location.market = {
			add_merchant_power = {
				country = root
				key = bolstered_capital_trade
				months = 120
				power = merchant_power_mild_bonus
			}
		}
		add_gold = {
			value = monthly_income_total
			min = 10
			max = 1000
			multiply = -1
		}
	}

	option = {
		name = flavor_mam.70.b
		scope:target_location = {
			change_development = development_mild_bonus
		}
		add_gold = {
			value = monthly_income_total
			min = 10
			max = 1000
			multiply = -1
		}
	}

	option = {
		name = flavor_mam.70.c
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
		change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }
		add_gold = {
			value = monthly_income_total
			min = 10
			max = 1000
			multiply = -1
		}
	}

	option = {
		name = flavor_mam.70.d
		add_legitimacy = legitimacy_mild_bonus
		add_prestige = prestige_mild_bonus
		add_gold = {
			value = monthly_income_total
			min = 10
			max = 1000
			multiply = -1
		}
	}

	option = {
		name = flavor_mam.70.e
		add_legitimacy = legitimacy_mild_penalty
	}

	after = {
		set_variable = mam_ruler_invested_in_cairo
	}
}