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_tim.14 帖木儿帝国迁都赫拉特

时间范围:1410.1.1 - 1500.1.1 (每月 2% 概率)

触发条件

  • 国家宗教属于穆斯林宗教组。
  • 国家拥有赫拉特地区,且该地区不是首都。
  • 政府类型为君主制。
  • 当前统治者不是人物 chg_timur_lame_borjigin (帖木儿)。

关键效果

  • 选项 A (flavor_tim.14.a)

    • 将首都迁至赫拉特地区。
    • 若赫拉特地区已建有寺庙,则国家向“神秘主义”方向轻微移动。
    • 若赫拉特地区未建有寺庙,则以半价成本建造一座寺庙。
  • 选项 B (flavor_tim.14.b)

    • 当前首都获得轻微繁荣度加成。
    • 国家获得轻微威望加成。

背景介绍: 此事件模拟了帖木儿帝国在15世纪可能面临的迁都决策。赫拉特作为帝国重要的文化和经济中心,迁都至此可以加强对波斯地区的控制,并利用其宗教影响力。选择不迁都则意味着巩固现有首都的地位,以稳定和威望换取对核心区域的持续关注。

完整事件代码

flavor_tim.14 = {
	type = country_event
	title = flavor_tim.14.title
	desc = flavor_tim.14.desc
	historical_info = flavor_tim.14.historical_info

	dynamic_historical_event = {
		tag = TIM
		from = 1410.1.1
		to = 1500.1.1
		monthly_chance = 2
	}
	fire_only_once = yes

	trigger = {
		religion.group = religion_group:muslim
		location:herat = {
			owner ?= root
			is_capital = no
		}
		government_type = government_type:monarchy
		ruler != character:chg_timur_lame_borjigin
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler_or_regent = {
			save_scope_as = target_character
		}

		location:herat = {
			save_scope_as = target_location
			region = {
				save_scope_as = target_region
			}
		}
	}

	option = {
		name = flavor_tim.14.a

		set_capital = scope:target_location

		scope:target_location = {
			if = {
				limit = {
					has_building = building_type:temple
				}
				owner ?= {
					change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }
				}
			}
			else = {
				construct_building = {
					building_type = building_type:temple
					cost_multiplier = 0.5
					cost_multiplier_reason = clergy_cheap_sponsorship
				}
			}
		}
	}

	option = {
		name = flavor_tim.14.b

		capital ?= {
			change_prosperity = prosperity_mild_bonus
		}

		add_prestige = prestige_mild_bonus
	}
}