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

2202 中国宝船远征

时间范围
无明确 fromto 日期,事件通过其他机制触发。
触发概率
monthly_chance 字段,事件触发依赖特定条件。

触发条件
事件代码中未直接定义 trigger 字段,触发条件由外部脚本或前置事件控制。

关键效果
事件提供两个选项,每个选项产生不同效果:

  • 选项 A (flavor_chi.2202.a)

    • AI倾向:基础权重为100,但会乘以变量 chinese_expedition_neutral_ai_weight 进行调整。
    • 主要效果
      1. 大幅降低 市民阶层 (burghers_estate) 的满意度。
      2. 如果当前时代处于 宗教改革时代 (age_4_reformation) 或更晚,则社会价值观向 重商主义 (mercantilism_vs_free_trade) 方向移动。
  • 选项 B (flavor_chi.2202.b)

    • AI倾向:基础权重为100,但会乘以变量 chinese_expedition_negative_ai_weight 进行调整。
    • 主要效果
      1. 执行 decrease_opinion_of_expedition 效果(具体为降低与远征相关的国家或势力的好感度)。
      2. 获得少量 稳定度 加成。

背景介绍
此事件模拟了明朝郑和下西洋(即“宝船远征”)结束后,朝廷内部关于海外探索与贸易政策走向的争论。一方主张收缩,停止耗资巨大的远航以安抚国内利益集团(尤其是市民阶层);另一方则可能主张维持一定的对外联系或采取更为保守的内向政策。事件反映了大航海时代初期,中央帝国在开拓精神与内敛传统之间的抉择。

完整事件代码

flavor_chi.2202 = {
	type = country_event
	title = flavor_chi.2202.title
	desc = flavor_chi.2202.desc
	
	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		set_chinese_expedition_scopes = yes
		scope:expedition_initiator.var:chinese_treasure_fleet_location ?= {
			save_scope_as = fleet_loc
		}
	}

	option = {
		name = flavor_chi.2202.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_extreme_penalty
		}
		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = {
				type = mercantilism_vs_free_trade
				value = societal_value_move_to_left
			}
		}
	}

	option = {
		name = flavor_chi.2202.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_negative_ai_weight
				}
			}
		}
		
		decrease_opinion_of_expedition = yes
		add_stability = stability_weak_bonus
	}
	
	after = {
		visitation_event_pulse = yes
	}
}