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_chk.20 外卡霍基亚的重新安置

时间范围:1337.1.1 - 1437.1.1(每月 8% 概率触发)

触发条件

  • 国家拥有统治者。
  • 国家控制 cahokia 地区。
  • 国家拥有变量 chk_enable_strengthening_events

关键效果

  • 选项 A:鼓励向外卡霍基亚重新安置

    • cahokia_province 省份定义下的所有地区生效,条件是:
      • 地区所有者为触发国。
      • 地区人口不超过 20。
    • 为符合条件的地区添加名为 chk_outer_cahokia_growth 的地区修正,持续 15 年。
  • 选项 B:将人口集中到主城

    • cahokia 地区生效。
    • 为该地区增加 development_extreme_bonus 级别的发展度。

背景介绍: 该事件模拟了卡霍基亚文明在特定历史时期面临的人口分布决策。统治者可以选择鼓励人口向卡霍基亚核心城市外围的定居点扩散,以促进区域整体发展;或者选择将资源与人口集中到主城卡霍基亚,以强化其作为政治、经济和文化中心的地位。这一选择反映了前哥伦布时期密西西比文化中城市管理与区域规划可能面临的战略考量。

完整事件代码

flavor_chk.20 = { # Repopulation of Outer Cahokia
	type = country_event
	title = flavor_chk.20.title
	desc = flavor_chk.20.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHK
		from = 1337.1.1
		to = 1437.1.1
		monthly_chance = 8
	}

	trigger = {
		has_ruler = yes
        owns = location:cahokia
		has_variable = chk_enable_strengthening_events
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler ?= {
            save_scope_as = our_ruler
        }	
		location:cahokia = { 
			save_scope_as = target_location 
		}
	}	
	
	illustration_tags = {
		10 = happy
		10 = exterior
	}	

	option = { # Encourage the resettling into outer Cahokia
		name = flavor_chk.20.a	
		province_definition:cahokia_province = {
			every_location_in_province_definition = {
				limit = {
					owner ?= root
					NOT = { population > 20 }
				}
				add_location_modifier = {
					modifier = chk_outer_cahokia_growth
					years = 15
					mode = add
				}
			}
		}				
	}
	
	option = { # Concentrate the population into the main city
		name = flavor_chk.20.b	
		location:cahokia = {
			change_development = development_extreme_bonus
		}		
	}
}