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_geo.13 库塔伊西的秩序

时间范围

1345.1.1 - 1380.3.14,每月有 1% 的概率触发。

触发条件

  • 国家必须完全控制 imereti_province 省份。

关键效果

选项 A (flavor_geo.13.a):

  • 稳定性: 轻微下降 (stability_mild_penalty)。
  • 财政: 损失 5 金币 (change_gold_effect = { scale = -5 })。
  • 省份修正: 在 target_location 所属省份的所有地块上,添加持续 20年 的修正 geo_centralization_efforts_modifier
  • 基建: 在 target_location 地块与首都之间修建一条 碎石路 (gravel_road)。
  • 社会价值: 中央化 vs 去中央化 社会价值大幅向左移动(即向中央化方向移动)。

选项 B (flavor_geo.13.b):

  • 社会价值: 中央化 vs 去中央化 社会价值大幅向右移动(即向去中央化方向移动)。
  • 稳定性: 轻微上升 (stability_weak_bonus)。

背景介绍

14世纪中后期,格鲁吉亚王国在经历蒙古入侵的动荡后,正努力恢复其核心地区的秩序与中央权威。伊梅列季省,尤其是其中心库塔伊西,是王国西部的重要区域。本事件反映了格鲁吉亚统治者面临的选择:是投入资源强化对库塔伊西及周边地区的控制,以巩固中央集权;还是采取更为宽松的策略,维持地方贵族的传统权力与稳定。

完整事件代码

flavor_geo.13 = { #Order Across [ShowProvinceDefinitionNameWithNoTooltip('kutaisi')]
	type = country_event
	title = flavor_geo.13.title
	desc = flavor_geo.13.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = GEO
		from = 1345.1.1
		to = 1380.3.14
		monthly_chance = 1
	}

	trigger = {
		own_entire_province = province_definition:imereti_province
	}

	illustration_tags = {
		10 = exterior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = target_country
		location:kutaisi.province = {
			ordered_location_in_province = {
				order_by = population
				check_range_bounds = no
				max = 1
				save_scope_as = target_location
			}
		}
	}

	option = {
		name = flavor_geo.13.a


		add_stability = stability_mild_penalty
		change_gold_effect = { scale = -5 }
		scope:target_location.province = {
			every_location_in_province = {
				add_location_modifier = {
					modifier = geo_centralization_efforts_modifier
					mode = add_and_extend
					years = 20
				}
			}
		}
		scope:target_location = {
			add_road_to = {
				target = root.capital
				type = gravel_road
			}
		}
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_left
		}
	}

	option = {
		name = flavor_geo.13.b

		change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_right }
		add_stability = stability_weak_bonus
	}
}