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.11] 莫卧儿帝国红堡建设

时间范围

1550.1.1 - 1821.1.1,每月有 2% 的概率触发。

触发条件

  • 事件触发国(root)必须是德里地区(location:delhi)的拥有者。

关键效果

选项 A:flavor_mug.11.a

  • 在德里地区(target_location)建造一座 红堡building_type:red_fort)。
  • 使德里地区获得 温和的发展度加成development_mild_bonus)。

选项 B:flavor_mug.11.b

  • 使国家在 进攻与防御offensive_vs_defensive)的社会价值观上,产生 大幅向左移动societal_value_large_move_to_left)的转变。

背景介绍

此事件模拟了莫卧儿帝国在其核心地区德里进行重大建设的决策。红堡是莫卧儿帝国建筑艺术的杰出代表,其建造不仅象征着帝国的权力与财富,也深刻影响了首都地区的发展。事件提供了两种不同的国家发展路径:一是投资于标志性的建筑与地区发展;二是调整国家的军事战略倾向,可能从更偏向进攻转为更注重防御。

完整事件代码

flavor_mug.11 = {
	type = country_event
	title = flavor_mug.11.title
	desc = flavor_mug.11.desc

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

	fire_only_once = yes

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

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

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mug.11.a

		scope:target_location = {
			construct_building = {
				building_type = building_type:red_fort
			}

			change_development = development_mild_bonus
		}
	}

	option = {
		name = flavor_mug.11.b

		change_societal_value = {
			type = offensive_vs_defensive
			value = societal_value_large_move_to_left
		}
	}
}