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.1 卡霍基亚的黄昏

时间范围:1337.1.1 - 1356.1.1,每月 100% 概率触发

触发条件

  • 国家拥有统治者 (has_ruler = yes)。
  • 国家拥有卡霍基亚地区 (owns = location:cahokia)。

关键效果

  • 选项 A:是时候离开这座伟大城市的遗迹了

    • 历史选项:是
    • 为国家添加名为 chk_exodus_of_cahokia 的修正,持续 45 年。
    • 设置变量 chk_enable_downfall_events
    • 显示自定义提示文本 events_to_weaken_cahokia_downfallcahokia_conditions_to_avoid_migrations
    • AI 选择概率:85%。
  • 选项 B:我们的黄金时代尚未结束,我们可以重振衰落的卡霍基亚!

    • 为国家添加名为 chk_preservation_of_cahokia 的修正,持续 45 年。
    • 设置变量 chk_enable_strengthening_events
    • 显示自定义提示文本 events_to_strengthen_cahokiacahokia_conditions_to_gain_golden_agecahokia_conditions_to_avoid_migrations
    • AI 选择概率:15%。

背景介绍: 卡霍基亚是北美密西西比文化的重要中心,在公元11至13世纪达到鼎盛。然而,到了14世纪,由于环境变化、资源枯竭和社会动荡,这座曾经辉煌的城市开始走向衰落。本事件模拟了卡霍基亚统治者在城市衰败时期所面临的关键抉择:是顺应趋势,带领人民离开这片土地寻找新的家园;还是倾尽全力,试图复兴这座古老的城市,重现其往日的荣光。

完整事件代码

flavor_chk.1 = { # The Sunset of Cahokia
	type = country_event
	title = flavor_chk.1.title
	desc = flavor_chk.1.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHK
		from = 1337.1.1
		to = 1356.1.1
		monthly_chance = 100
	}

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

	option = { # It is time we moved on from remains of the great city
		name = flavor_chk.1.a	
		historical_option = yes		
        add_country_modifier = { modifier = chk_exodus_of_cahokia years = 45 mode = add }
        custom_tooltip = {
            text = events_to_weaken_cahokia_downfall
			set_variable = chk_enable_downfall_events
        }	
		custom_tooltip = cahokia_conditions_to_avoid_migrations
		ai_chance = {
            base = 85
        }	
	}
	
	option = { # Our Golden Age has not yet ended, we can resurrect ailing Cahokia!
		name = flavor_chk.1.b
        add_country_modifier = { modifier = chk_preservation_of_cahokia years = 45 mode = add }
		custom_tooltip = {
            text = events_to_strengthen_cahokia
			set_variable = chk_enable_strengthening_events
        } 	
		custom_tooltip = cahokia_conditions_to_gain_golden_age
		custom_tooltip = cahokia_conditions_to_avoid_migrations
		ai_chance = {
            base = 15
        }
	}
}