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.2204] 宗教冲突

时间范围
无明确起止日期(无 fromto 字段)

触发条件

  • 远征发起国(scope:expedition_initiator)的宗教与事件触发国(root)的宗教不同。
  • 远征发起国的中国远征队领袖(var:chinese_expedition_expedition_leader)的宗教与事件触发国的宗教不同。

关键效果

  • 选项 Aflavor_chi.2204.a):
    • 降低远征发起国对事件触发国的看法(decrease_opinion_of_expedition = yes)。
    • 改变社会价值观:向“灵性主义 vs 人文主义”的左侧移动(spiritualist_vs_humanist 左移)。
  • 选项 Bflavor_chi.2204.b):
    • 增加教士阶层(estate_type:clergy_estate)的极度不满(estate_satisfaction_extreme_penalty)。

背景介绍
在远航探索或殖民扩张过程中,不同宗教信仰的接触常引发文化冲突与政治紧张。此事件模拟了当远征队及其领袖的宗教与当地国家信仰相异时,可能面临的宗教对立局面。国家需在安抚国内宗教势力与维护对外关系之间做出抉择。

完整事件代码

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

	trigger = {
		scope:expedition_initiator.religion != root.religion
		scope:expedition_initiator.var:chinese_expedition_expedition_leader.religion != root.religion
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:clergy background = pop_type:soldiers }
		set_chinese_expedition_scopes = yes
	}

	option = {
		name = flavor_chi.2204.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_negative_ai_weight
				}
			}
		}
		
		decrease_opinion_of_expedition = yes
		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_chi.2204.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_penalty
		}
	}
	
	after = {
		visitation_event_pulse = yes
	}
}