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.4 卡霍基亚林地洪水

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

触发条件

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

关键效果

  • 选项:太可怕了!
    • 历史选项:是 (historical_option = yes)。
    • 效果:
      • 国家稳定度遭受严重惩罚 (add_stability = stability_severe_penalty)。
      • 卡霍基亚地区繁荣度遭受极端惩罚 (location:cahokia = { change_prosperity = prosperity_extreme_penalty })。
      • 设置变量 chk_had_flood_happened,持续时间为20年 (set_variable = { name = chk_had_flood_happened years = 20 })。

背景介绍: 该事件模拟了14至15世纪期间,北美密西西比文化中心卡霍基亚地区可能遭遇的严重洪水灾害。作为当时北美最大的聚落之一,卡霍基亚依赖其周边的肥沃土地和河流系统。洪水不仅会直接摧毁农田和建筑,导致经济与繁荣度骤降,还会动摇社会的稳定,对统治者的权威构成挑战。此事件反映了前哥伦布时期美洲大型定居点在面对自然灾害时的脆弱性。

完整事件代码

flavor_chk.4 = { # Flooding in the Cahokian Woodlands
	hide_portraits = yes
	type = country_event
	title = flavor_chk.4.title
	desc = flavor_chk.4.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		
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler ?= {
            save_scope_as = our_ruler
        }	
	}	
	
	illustration_tags = {
		10 = angry
		10 = exterior
	}	

	option = { # Horrible!
		name = flavor_chk.4.a	
		historical_option = yes	
		add_stability = stability_severe_penalty
		location:cahokia = { 
			change_prosperity = prosperity_extreme_penalty
		}	
		set_variable = {
			name = chk_had_flood_happened
			years = 20
		}		
	}
}