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.64 安大略湖沿岸村庄的兴起

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

触发条件

  • 国家拥有统治者。
  • 国家完全控制 haudenosaunee_area 地区。
  • 国家未处于战争状态。

关键效果

  • 选项 A:建立新村庄!

    • 效果:在 haudenosaunee_area 地区内,所有由本国拥有且与湖泊相邻的省份,获得 prosperity_mild_bonus 的繁荣度提升和 development_severe_bonus 的发展度提升。
  • 选项 B:将发展集中于首都

    • 效果:国家获得 prestige_mild_bonus 的威望加成。首都省份获得 development_ultimate_bonus 的发展度提升。

背景介绍: 在17世纪中叶至18世纪后期,易洛魁联盟(IRO)的领土,特别是安大略湖沿岸地区,经历了显著的人口增长与社会发展。随着和平时期的到来和联盟对核心地区的稳固控制,沿湖的肥沃土地吸引了更多定居点。此事件反映了联盟面临的一个关键抉择:是鼓励沿湖分散建立新的繁荣村庄,以充分利用地理优势,还是将资源集中用于强化政治中心(首都)的建设,以巩固联盟的集权与威望。

完整事件代码

flavor_iro.64 = { # Growth of Villages Along Lake Ontario
	type = country_event
	title = flavor_iro.64.title
	desc = flavor_iro.64.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = IRO
		from = 1650.1.1
		to = 1776.1.1
		monthly_chance = 10
	}

	trigger = {
		has_ruler = yes
		own_entire_area = area:haudenosaunee_area
		at_war = no		
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler ?= {
            save_scope_as = our_ruler
        }	
	}	
	
	illustration_tags = {
		10 = happy
		10 = exterior
	}	

	option = { # Found the new villages!
		name = flavor_iro.64.a
		area:haudenosaunee_area = {
			every_location_in_area = {
				limit = {
					owner ?= root
					is_adjacent_to_lake = yes
				}
				change_prosperity = prosperity_mild_bonus
				change_development = development_severe_bonus
			}
		}
	}
	option = { # Conslidate growth to the capital
		name = flavor_iro.64.b
		add_prestige = prestige_mild_bonus
		capital = {
			change_development = development_ultimate_bonus
		}				
	}
}