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.14 现代道路建设

时间范围:1500.1.1 - 1821.1.1,每月 2% 概率触发

触发条件

  • 国家已掌握 modern_road_advance 科技。
  • 国家拥有或控制 lahore 地区。
  • lahore 地区与 khulna 地区相连。
  • lahore 地区与 khulna 地区之间没有 modern_road 类型的道路。

关键效果

  • 选项 A (flavor_mug.14.a)

    • lahore 地区与 khulna 地区之间修建一条 modern_road 类型的道路。
    • 解锁内阁行动 maintain_trunk_road_cabinet_action
  • 选项 B (flavor_mug.14.b)

    • 社会价值观 centralization_vs_decentralization 向“右”(即集权方向)发生一次大幅移动。
    • 增加 nobles_estate 阶层满意度 estate_satisfaction_mild_bonus

背景介绍: 随着国家掌握了现代道路建设技术,连接拉合尔与库尔纳这两大重要地区的需求变得日益迫切。一条现代化的道路不仅能促进贸易与人员流动,更能加强中央政府对边远地区的控制力。然而,修建这样一条主干道需要巨大的资源投入,并可能影响现有的权力平衡。统治者面临抉择:是推动这项宏大的国家工程,还是将资源用于安抚地方贵族以维持稳定。

完整事件代码

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

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

	fire_only_once = yes

	illustration_tags = {
		10 = exterior
		10 = regular
	}

	trigger = {
		has_advance = modern_road_advance

		location:lahore = {
			owner ?= root
			is_connected_to = location:khulna
			NOT = {
				has_road_of_type_to = {
					target = location:khulna
					type = road_type:modern_road
				}
			}
		}
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:burghers   background = pop_type:burghers }
		location:lahore = {
			save_scope_as = target_location
		}

		location:khulna = {
			save_scope_as = target_location2
		}

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mug.14.a

		scope:target_location = {
			add_road_to = {
				target = scope:target_location2
				type = modern_road
			}
		}

		unlock_cabinet_action_effect = {
			type = maintain_trunk_road_cabinet_action
		}
	}

	option = {
		name = flavor_mug.14.b

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_right
		}

		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}