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_pue.106 普韦布洛人重聚

时间范围

1337.1.1 - 1737.1.1,每月 15% 概率触发。

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国家拥有至少 4个 已整合 (integration_level = integrated) 或已核心化 (integration_level = core) 的省份。

关键效果

选项 A:是时候让我们的人民再次团结起来了

  • 名称:flavor_pue.106.a
  • 效果:
    • 增加少量稳定度惩罚 (add_stability = stability_mild_penalty)。
    • 为国家添加持续 25年 的修正 pue_unifying_campaign

选项 B:这将是一种浪费,让我们专注于和平

  • 名称:flavor_pue.106.b
  • 效果:
    • 为国家添加持续 25年 的修正 pue_maintain_inner_tribal_peace

背景介绍

该事件模拟了在1337年至1737年间,普韦布洛诸部落在相对和平与稳定的环境下,面临是否要推动部落间政治统一的历史抉择。触发条件要求国家已有效整合了多个核心领土,这为统一运动或维持内部和平提供了政治基础。选项A代表了推动统一的政治军事行动,虽会带来短期动荡,但可能带来长期收益;选项B则代表了维持现状、专注于内部和平与发展的保守策略。

完整事件代码

flavor_pue.106 = { # Reuniting the Puebloans
	type = country_event
	title = flavor_pue.106.title
	desc = flavor_pue.106.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = ACO
		tag = TEY
		tag = ISL
		tag = KER
		tag = TST
		tag = TNN
		tag = OHK
		tag = TAO
		from = 1337.1.1
		to = 1737.1.1
		monthly_chance = 15
	}

	trigger = {
		has_ruler = yes
		at_war = no
		any_owned_location = {
			OR = {
				integration_level = integrated
				integration_level = core
			}
			count > 3			
		}
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = our_ruler
        }	
	}	
	
	illustration_tags = {
		10 = happy
		10 = interior
	}	

	option = { # It is time our peoples unite once again
		name = flavor_pue.106.a
		add_stability = stability_mild_penalty
		add_country_modifier = { modifier = pue_unifying_campaign years = 25 mode = add } 
	}
	
	option = { # It would be a wasted effort, let us focus on peace instead
		name = flavor_pue.106.b
		add_country_modifier = { modifier = pue_maintain_inner_tribal_peace years = 25 mode = add }  
	}
}