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_mug.12 莫卧儿帝国阿格拉发展

时间范围:1550.1.1 - 1700.1.1(每月 2% 概率)

触发条件

  • 事件触发国(root)是阿格拉地区(location:agra)的拥有者。

关键效果

  • 选项 A (flavor_mug.12.a)

    • 历史选项:是
    • 在阿格拉地区(target_location):
      • 增加少量发展度(change_development = development_mild_bonus
      • 增加少量繁荣度(change_prosperity = prosperity_mild_bonus
    • 社会价值观向“中央集权”方向轻微移动(centralization_vs_decentralization 向左移动 societal_value_move_to_left
    • 消耗一定数量的金钱(change_gold_effect = { scale = -1 }
  • 选项 B (flavor_mug.12.b)

    • 社会价值观向“地方分权”方向轻微移动(centralization_vs_decentralization 向右轻微移动 societal_value_minor_move_to_right

背景介绍: 此事件模拟了莫卧儿帝国在其核心地区阿格拉的发展与治理选择。阿格拉作为帝国的重要中心,其发展策略直接关系到国家的中央集权程度与地方治理模式。统治者需要在投入资源促进首都地区繁荣,与维持更宽松、分权的统治方式之间做出抉择。

完整事件代码

flavor_mug.12 = {
	type = country_event
	title = flavor_mug.12.title
	desc = flavor_mug.12.desc
	historical_info = flavor_mug.12.historical_info

	dynamic_historical_event = {
		tag = MUG
		from = 1550.1.1
		to = 1700.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		location:agra.owner ?= root
	}

	immediate = {
		location:agra = {
			save_scope_as = target_location
		}

		ruler_or_regent = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mug.12.a

		historical_option = yes

		scope:target_location = {
			change_development = development_mild_bonus
			change_prosperity = prosperity_mild_bonus
		}

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_move_to_left
		}

		change_gold_effect = { scale = -1 }
	}

	option = {
		name = flavor_mug.12.b

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_right
		}
	}
}