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.62 尚普兰援助休伦人

时间范围:1610.1.1 - 1660.1.1,每月 10% 概率触发

触发条件

  • 国家拥有统治者。
  • 全局变量 iro_champlain_huron_contact 存在。
  • 人物 samuel_de_champlain 存活。
  • 至少存在以下国家之一:c:ARNc:ATGc:AGWc:TRT

关键效果

  • 历史选项:选择“诅咒!”(flavor_iro.62.a
    • 如果国家 c:ARN 存在且其首都被法国(c:FRA)发现,则为 c:ARN 添加国家修正 iro_champlain_aided_the_hurons,持续10年。
    • 如果国家 c:ATG 存在且其首都被法国(c:FRA)发现,则为 c:ATG 添加国家修正 iro_champlain_aided_the_hurons,持续10年。
    • 如果国家 c:AGW 存在且其首都被法国(c:FRA)发现,则为 c:AGW 添加国家修正 iro_champlain_aided_the_hurons,持续10年。
    • 如果国家 c:TRT 存在且其首都被法国(c:FRA)发现,则为 c:TRT 添加国家修正 iro_champlain_aided_the_hurons,持续10年。
  • 事件结束后,移除全局变量 iro_champlain_huron_contact

背景介绍: 在17世纪初,法国探险家塞缪尔·德·尚普兰深入北美内陆,与当地的休伦人(Huron)建立了联系。这一事件反映了尚普兰在法国殖民扩张和毛皮贸易网络建立过程中,对休伦人联盟提供的军事援助与支持,此举也深刻影响了该地区原住民部落与欧洲殖民者之间的力量平衡与外交关系。

完整事件代码

flavor_iro.62 = { # Champlain aids the Hurons
	type = country_event
	title = flavor_iro.62.title
	desc = flavor_iro.62.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = IRO
		from = 1610.1.1
		to = 1660.1.1
		monthly_chance = 10
	}

	trigger = {
		has_ruler = yes
		has_global_variable = iro_champlain_huron_contact
		character:samuel_de_champlain ?= { is_alive = yes }
		OR = { # One of these tribes should exist in case wiped out in between Champlain expedition
			country_exists = c:ARN
			country_exists = c:ATG
			country_exists = c:AGW
			country_exists = c:TRT
		}
	}
	
	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		ruler ?= {
            save_scope_as = our_ruler
        }	
		character:samuel_de_champlain ?= {
			save_scope_as = target_character
		}			
	}	
	
	illustration_tags = {
		10 = regular
		10 = exterior
	}	

	option = { # Curses!
		name = flavor_iro.62.a	
		historical_option = yes	
		if = {
			limit = { 
				country_exists = c:ARN
				c:ARN ?= {
					capital = {
						is_discovered_by = c:FRA
					}
				}
			}
			c:ARN ?= {
				add_country_modifier = { modifier = iro_champlain_aided_the_hurons years = 10 mode = add } 
			}
		}	
		if = {
			limit = { 
				country_exists = c:ATG
				c:ATG ?= {
					capital = {
						is_discovered_by = c:FRA
					}
				}
			}
			c:ATG ?= {
				add_country_modifier = { modifier = iro_champlain_aided_the_hurons years = 10 mode = add } 
			}
		}
		if = {
			limit = { 
				country_exists = c:AGW
				c:AGW ?= {
					capital = {
						is_discovered_by = c:FRA
					}
				}
			}
			c:AGW ?= {
				add_country_modifier = { modifier = iro_champlain_aided_the_hurons years = 10 mode = add } 
			}
		}
		if = {
			limit = { 
				country_exists = c:TRT
				c:TRT ?= {
					capital = {
						is_discovered_by = c:FRA
					}
				}
			}
			c:TRT ?= {
				add_country_modifier = { modifier = iro_champlain_aided_the_hurons years = 10 mode = add } 
			}
		}										
	}
	after = {
		remove_global_variable = iro_champlain_huron_contact
	}
}