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.8 水道污染

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

触发条件

  • 国家拥有统治者。
  • 国家拥有卡霍基亚(cahokia)地区。
  • 卡霍基亚地区人口大于30,且发展度大于等于12。

关键效果

  • 历史选项:我们必须寻找另一处水源
    • 国家稳定性小幅下降。
    • 卡霍基亚地区获得持续10年的修正“chk_river_water_polluted”。

背景介绍: 在14世纪,随着卡霍基亚地区人口的增长和定居点的扩张,人类活动对当地水道的影响日益加剧。农业、生活和手工业产生的废弃物可能未经处理便排入河流,导致水源污染,威胁到社区的饮用水安全和公共卫生。这一事件反映了早期定居点发展过程中,人口聚集与资源管理、环境保护之间出现的典型矛盾。

完整事件代码

flavor_chk.8 = { # Pollution of the Waterways
	type = country_event
	title = flavor_chk.8.title
	desc = flavor_chk.8.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
		location:cahokia = {
			population > 30
			development >= 12
		}
	}
	
	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 = regular
		10 = exterior
	}	

	option = { # We will have to look for another water source
		name = flavor_chk.8.a	
		historical_option = yes	
		add_stability = stability_mild_penalty
		location:cahokia = {
			add_location_modifier = {
				modifier = chk_river_water_polluted
				years = 10
				mode = add
			}
		}						
	}
}