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.11 拒绝再次引入碱化玉米

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

触发条件

  • 国家拥有统治者。
  • 国家拥有卡霍基亚(Cahokia)地区。
  • 卡霍基亚地区的发展度 >= 12。
  • 卡霍基亚地区拥有修正项 chk_nixtamalized_maize_practice_reintroduced

关键效果

  • 选项 A:拒绝放弃这项实践

    • 稳定性:stability_severe_penalty(严重惩罚)
    • 部落凝聚力:tribal_cohesion_severe_penalty(严重惩罚)
  • 选项 B:顺应民众要求,禁止进一步的碱化玉米

    • 稳定性:stability_weak_bonus(微弱增益)
    • 部落凝聚力:tribal_cohesion_weak_bonus(微弱增益)
    • 如果国家拥有修正项 chk_reintroduction_of_nixtamalization,则移除该修正项。
    • 移除卡霍基亚地区的修正项 chk_nixtamalized_maize_practice_reintroduced
    • 为国家添加修正项 chk_maize_cravings_mod,持续 25 年。
    • 在首都市场添加临时需求 demand:chk_maize_cravings,持续 300 个月。

背景介绍: 在14至15世纪,卡霍基亚地区曾尝试重新引入碱化玉米(Nixtamalized Maize)的加工技术。这项技术虽然能提升玉米的营养价值,但其推广过程可能因改变传统饮食习惯或引发社会争议而遭到部分民众的抵制。此事件模拟了统治者面对传统与变革冲突时,需要在坚持技术革新与顺应民意之间做出的艰难抉择。

完整事件代码

flavor_chk.11 = { # Renewed Rejection of Nixtamalized Maize
	hide_portraits = yes
	type = country_event
	title = flavor_chk.11.title
	desc = flavor_chk.11.desc

	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_maize.dds"


	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 = {
			development >= 12
			has_location_modifier = chk_nixtamalized_maize_practice_reintroduced
		}		
	}
	
	immediate = {
		ruler ?= {
            save_scope_as = our_ruler
        }
		location:cahokia = { 
			save_scope_as = target_location 
		}	
	}	
	
	illustration_tags = {
		10 = regular
		10 = interior
	}	


	option = { # Refuse to give up the practice
		name = flavor_chk.11.a	
		add_stability = stability_severe_penalty
		add_tribal_cohesion = tribal_cohesion_severe_penalty	
	}
	option = { # Concede to the populace demands, and forbid further nixtamalized maize
		name = flavor_chk.11.b	
		add_stability = stability_weak_bonus
		add_tribal_cohesion = tribal_cohesion_weak_bonus
		if = {
			limit = {
				has_country_modifier = chk_reintroduction_of_nixtamalization
			}
			remove_country_modifier = chk_reintroduction_of_nixtamalization
		}	
		location:cahokia = {
			remove_location_modifier = chk_nixtamalized_maize_practice_reintroduced
		}
		add_country_modifier = { modifier = chk_maize_cravings_mod years = 25 mode = add }
		capital.market = {
			add_temporary_demand = { 
				type = demand:chk_maize_cravings
				months = 300
			}
		}		
	}
}