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.2205] 宝藏探险队事件

时间范围
无明确 fromto 日期限制,事件由游戏内机制触发,无固定概率(monthly_chance 未定义)。

触发条件

  • 事件类型为国家事件(type = country_event)。
  • 事件通过 set_chinese_expedition_scopes = yes 设置中国探险队相关作用域。
  • 触发时,系统会尝试寻找一个符合以下条件的随机人物作为目标逃亡者(target_escapee):
    • 文化属于中华文化组(culture_group:chinese_group)。
    • 出生地点位于以下任一地区:
      • 中国西部(region:west_china_region
      • 中国东部(region:east_china_region
      • 中国南部(region:south_china_region
  • 若未找到符合条件的现有角色,则会在控制国(expedition_initiator)拥有的上述任一地区随机位置创建一个新角色作为目标逃亡者:
    • 该角色属于市民阶层(estate_type:burghers_estate)。
    • 其文化、宗教与目标地点主流文化、宗教相同。
    • 最小年龄为30岁。

关键效果

选项 A:flavor_chi.2205.a

  • AI 倾向:基础权重 100,并乘以 chinese_expedition_neutral_ai_weight 系数。
  • 效果
    • 将目标逃亡者(target_escapee)移交给探险队(move_to_expedition = yes)。
    • 为目标逃亡者设置变量 chi_extradited,其值为触发国(ROOT)。
    • 触发国获得少量政府权力惩罚(add_government_power = government_power_mild_penalty)。

选项 B:flavor_chi.2205.b

  • AI 倾向:基础权重 100,并乘以 chinese_expedition_negative_ai_weight 系数。
  • 效果
    • 降低探险队对触发国的看法(decrease_opinion_of_expedition = yes)。
    • 为目标逃亡者添加一个持续5年的角色修正 chi_grateful_for_not_being_extradited(模式为替换)。

背景介绍
在中华帝国广袤的疆域内,官方组织的探险队时常在偏远地区活动,搜寻传说中的宝藏或执行特殊任务。在此过程中,他们可能会遭遇或追捕到某些身份特殊的人物——这些人可能是在逃的要犯、掌握秘密的知情者,或是因各种原因隐匿于地方的角色。探险队面临一个抉择:是将其拘捕并移交以履行帝国职责,还是网开一面,或许能换取其感激并在当地获得潜在支持。这个决定不仅关乎一时的人情,也可能影响探险队与地方势力乃至朝廷之间的关系。

完整事件代码

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

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		set_chinese_expedition_scopes = yes
		if = {
			limit = {
				is_ai = no
			}
			event_illustration_poptype_background_effect = { background = pop_type:soldiers }
			scope:expedition_initiator = {
				event_illustration_poptype_foreground_effect = { foreground = pop_type:nobles }
			}
		}		
		
		random_character = {
			limit = {
				culture = {
					has_culture_group = culture_group:chinese_group
				}
				birth_location ?= {
					OR = {
						region = region:west_china_region
						region = region:east_china_region
						region = region:south_china_region
					}
				}
			}
			save_scope_as = target_escapee
		}
		if = {
			limit = {
				NOT = { exists = scope:target_escapee }
			}
			scope:expedition_initiator = {
				random_owned_location = {
					limit = {
						OR = {
							region = region:west_china_region
							region = region:east_china_region
							region = region:south_china_region
						}
					}
					save_scope_as = target_location
				}
			}
			create_character = {
				estate = estate_type:burghers_estate
				birth_location = scope:target_location
				culture = scope:target_location.dominant_culture
				religion = scope:target_location.dominant_religion
				min_age = 30
				save_scope_as = target_escapee
			}
		}
	}

	option = {
		name = flavor_chi.2205.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_neutral_ai_weight
				}
			}
		}
		
		scope:target_escapee = {
			move_to_expedition = yes
			set_variable = {
				name = chi_extradited
				value = ROOT
			}
		}

		add_government_power = government_power_mild_penalty
	}

	option = {
		name = flavor_chi.2205.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_negative_ai_weight
				}
			}
		}
	
		decrease_opinion_of_expedition = yes
		scope:target_escapee = {
			add_character_modifier = {
				mode = replace
				modifier = chi_grateful_for_not_being_extradited
				years = 5
			}
		}
	}
	
	after = {
		visitation_event_pulse = yes
	}
}