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_oma.5 迁都基卢瓦

时间范围:1500.1.1 - 1700.1.1(每月 5% 概率)

触发条件

  • 国家拥有基卢瓦基西瓦尼(kilwa_kisiwani)地区。
  • 基卢瓦基西瓦尼地区必须是一个城市(is_city = yes),且不是当前首都(is_capital = no)。

关键效果

  • 选项 A (flavor_oma.5.a)

    • 将首都迁至基卢瓦基西瓦尼。
    • 基卢瓦基西瓦尼地区获得发展度轻度提升(development_mild_bonus)与繁荣度显著提升(prosperity_severe_bonus)。
    • 社会价值观“外向 vs 内向”(outward_vs_inward)向左移动(societal_value_move_to_left)。
  • 选项 B (flavor_oma.5.b)

    • 社会价值观“外向 vs 内向”(outward_vs_inward)向右移动(societal_value_move_to_right)。
    • 当前首都地区获得发展度轻度提升(development_mild_bonus)与繁荣度显著提升(prosperity_severe_bonus)。

背景介绍: 在16至17世纪,阿曼(Oman)的统治者面临着一个战略抉择:是继续以现有的首都为中心,还是将权力中心迁移至新近控制的、具有重要贸易与战略价值的基卢瓦(Kilwa)地区。这一决定不仅关乎行政效率,也深刻影响着国家的发展方向与社会价值观的取向。

完整事件代码

flavor_oma.5 = {
	type = country_event
	title = flavor_oma.5.title
	desc = flavor_oma.5.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = OMA
		from = 1500.1.1
		to = 1700.1.1
		monthly_chance = 5
	}

	trigger = {
		owns = location:kilwa_kisiwani
		location:kilwa_kisiwani = {
			is_city = yes
			is_capital = no
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
		location:kilwa_kisiwani = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_oma.5.a
		set_capital = location:kilwa_kisiwani
		location:kilwa_kisiwani = {
			change_development = development_mild_bonus
			change_prosperity = prosperity_severe_bonus
		}
		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_oma.5.b
		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_move_to_right
		}
		capital = {
			change_development = development_mild_bonus
			change_prosperity = prosperity_severe_bonus
		}
	}
}