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.2209] 中国远征队领袖的信仰

时间范围

此事件为动态历史事件,无固定 fromto 日期限制,在满足触发条件时即可发生。事件无 monthly_chance 字段,其触发依赖于游戏状态。

触发条件

  • 中国远征队发起者(scope:expedition_initiator)的变量 chinese_expedition_expedition_leader 所指向人物的宗教必须是 逊尼派religion:sunni)。

关键效果

事件提供两个选项:

选项 A:flavor_chi.2209.a

  • AI 倾向:基础权重为 100,并乘以 chinese_expedition_neutral_ai_weight 变量。
  • 主要效果
    1. 如果中国宝船舰队当前位置(scope:expedition_initiator.var:chinese_treasure_fleet_location)存在,则在该地 免费建造一座寺庙building_type:temple)。
    2. 使社会价值观向 灵性主义spiritualist_vs_humanist)方向移动(即向右移动)。

选项 B:flavor_chi.2209.b

  • AI 倾向:基础权重为 100,并乘以 chinese_expedition_negative_ai_weight 变量。
  • 主要效果
    • 降低远征队相关方的外交好感度decrease_opinion_of_expedition = yes)。

背景介绍

在明朝郑和下西洋的宏大背景下,庞大的宝船舰队不仅承载着外交与贸易使命,也汇聚了来自不同文化背景的成员。此事件聚焦于舰队中一位关键领袖人物的个人信仰。当这位被委以重任的领袖是一位逊尼派穆斯林时,他的信仰可能对舰队的决策、沿途的互动以及船队停靠港口的建设产生影响,反映出远洋航行中文化、宗教与帝国意志之间的微妙互动。

完整事件代码

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

	trigger = {
		scope:expedition_initiator.var:chinese_expedition_expedition_leader.religion = religion:sunni
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		set_chinese_expedition_scopes = yes
		if = {
			limit = {
				is_ai = no
			}
			event_illustration_estate_background_effect = { background = estate_type:nobles_estate }
			scope:expedition_initiator = {
				event_illustration_estate_foreground_effect = { foreground = estate_type:nobles_estate }
			}
		}
		
		var:chinese_expedition_expedition_leader.religion = {
			save_scope_as = target_religion
		}
	}

	option = {
		name = flavor_chi.2209.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		scope:expedition_initiator.var:chinese_treasure_fleet_location ?= {
			construct_building = {
				building_type = building_type:temple
				cost_multiplier = 0
				cost_multiplier_reason = game_concept_event
			}
		}

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_right
		}
	}

	option = {
		name = flavor_chi.2209.b

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

	after = {
		visitation_event_pulse = yes
	}
}