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_iro.1 伟大和平使者的遗产

时间范围:1337.1.1 - 1380.1.1(每月 10% 概率触发)

触发条件

  • 国家拥有统治者 (has_ruler = yes)

关键效果

  • 选项:时代正在改变。
    • 增加部落凝聚力 (add_tribal_cohesion = tribal_cohesion_mild_bonus)
    • 为国家添加持续10年的修正 iro_memory_of_the_great_peacemaker (add_country_modifier = { modifier = iro_memory_of_the_great_peacemaker years = 10 mode = add })
    • 显示自定义提示:may_unify_haudenosaunee_confederation
    • 设置变量:enabled_iroquois_unique_interactions
    • 隐藏效果:如果以下国家存在且不是事件触发国,则会在1天后静默触发事件 flavor_iro.100
      • 奥农达加 (c:ONO)
      • 卡尤加 (c:KKA)
      • 奥奈达 (c:ONY)
      • 塞内卡 (c:GYO)
      • 莫霍克 (c:ONN)

背景介绍: 该事件反映了易洛魁联盟(豪德诺索尼)形成前夕的历史背景。在14世纪中后期,传说中的“伟大和平使者”德甘纳维达与他的代言人海华沙,致力于在易洛魁诸部(莫霍克、奥奈达、奥农达加、卡尤加、塞内卡)之间传播和平、法治与团结的理念。此事件标志着这一和平与统一进程的开始,为日后强大的易洛魁联盟的建立奠定了基础。事件中“时代正在改变”的选项,象征着各部落对新时代的接纳和对联盟理念的初步认同。

完整事件代码

flavor_iro.1 = { # The Legacy of the Great Peacemaker
	type = country_event
	title = flavor_iro.1.title
	desc = flavor_iro.1.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = KKA
		tag = ONY
		tag = ONO
		tag = GYO
		tag = ONN
		from = 1337.1.1
		to = 1380.1.1
		monthly_chance = 10
	}

	trigger = {
		has_ruler = yes
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}	
	
	illustration_tags = {
		10 = regular
		10 = interior
	}	

	option = { # Times are changing.
		name = flavor_iro.1.a	
		add_tribal_cohesion = tribal_cohesion_mild_bonus			
		add_country_modifier = { modifier = iro_memory_of_the_great_peacemaker years = 10 mode = add } 
		custom_tooltip = may_unify_haudenosaunee_confederation
		set_variable = enabled_iroquois_unique_interactions
		hidden_effect = {
			if = {
				limit = { 
					country_exists = c:ONO
					this != c:ONO
				}
				c:ONO = { trigger_event_silently = { id = flavor_iro.100 days = 1 } }
			}
			if = {
				limit = { 
					country_exists = c:KKA
					this != c:KKA
				}
				c:KKA = { trigger_event_silently = { id = flavor_iro.100 days = 1 } }
			}
			if = {
				limit = { 
					country_exists = c:ONY
					this != c:ONY
				}
				c:ONY = { trigger_event_silently = { id = flavor_iro.100 days = 1 } }
			}
			if = {
				limit = { 
					country_exists = c:GYO
					this != c:GYO
				}
				c:GYO = { trigger_event_silently = { id = flavor_iro.100 days = 1 } }
			}
			if = {
				limit = { 
					country_exists = c:ONN
					this != c:ONN
				}
				c:ONN = { trigger_event_silently = { id = flavor_iro.100 days = 1 } }
			}			
		}		
	}
}