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

2203 中国寻宝远征

时间范围:未指定具体日期范围(代码中未定义 fromto 字段)。
触发概率:未指定月度概率(代码中未定义 monthly_chance 字段)。

触发条件:未在提供的事件代码块中定义 trigger 字段。

关键效果

  • 选项 A (flavor_chi.2203.a):
    • 获得大量威望 (add_prestige = prestige_severe_bonus)。
    • 降低远征相关方的看法 (decrease_opinion_of_expedition = yes)。
  • 选项 B (flavor_chi.2203.b):
    • 改变社会价值观:将“外向 vs 内向”倾向向左移动(即更偏向内向)(change_societal_value = { type = outward_vs_inward value = societal_value_move_to_left })。
    • 显著降低贵族阶层满意度 (add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_penalty })。

背景介绍
此事件模拟了中国(或中华文化圈国家)内部关于是否支持一项重大海外寻宝远征的决策。朝廷面临两难选择:一方面,支持远征可以带来巨大的声望和国际影响力;另一方面,反对远征则可能安抚国内保守的贵族势力,并强化内向型国策,但会激怒贵族阶层。这反映了历史上明朝郑和下西洋后期,朝廷内部关于远航利弊的争论,以及海禁政策与对外开放之间的张力。

完整事件代码

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

	illustration_tags = {
        10 = regular
        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.2203.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_negative_ai_weight
				}
			}
		}
		
		add_prestige = prestige_severe_bonus
		decrease_opinion_of_expedition = yes
	}

	option = {
		name = flavor_chi.2203.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_move_to_left
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_extreme_penalty
		}
	}
	
	after = {
		visitation_event_pulse = yes
	}
}