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_chi.2218] 中国探险队

时间范围
无明确 fromto 日期,事件通过 visitation_event_pulse 在特定周期内触发。无 monthly_chance 概率设定。

触发条件
事件触发条件未在代码中直接给出,但通过 set_chinese_expedition_scopes = yes 推断,事件可能与中国探险队相关的特定状态或条件(如探险队已成立、处于特定阶段等)有关。

关键效果

  • 选项 A(flavor_chi.2218.a)

    • 增加探险队对国家的看法(increase_opinion_of_expedition = yes)。
    • AI 选择权重:基础 100,乘以 chinese_expedition_positive_ai_weight 调整。
  • 选项 B(flavor_chi.2218.b)

    • 获得少量威望(add_prestige = prestige_weak_bonus)。
    • AI 选择权重:基础 100,乘以 chinese_expedition_neutral_ai_weight 调整。

背景介绍
该事件模拟了中国探险队在海外活动时与国家互动的情景。作为统治者,你可以选择支持探险队以增进其忠诚,或采取中立态度以获取国内威望,反映了历史上君主对远洋探索的不同策略及其对内外稳定的影响。

完整事件代码

flavor_chi.2218 = {
	type = country_event
	title = flavor_chi.2218.title
	desc = flavor_chi.2218.desc

	illustration_tags = {
        10 = happy
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		set_chinese_expedition_scopes = yes
	}

	option = {
		name = flavor_chi.2218.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_positive_ai_weight
				}
			}
		}
		
		increase_opinion_of_expedition = yes
	}

	option = {
		name = flavor_chi.2218.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		add_prestige = prestige_weak_bonus
	}
	
	after = {
		visitation_event_pulse = yes
	}
}