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_mal.24 寻找失落的远征队

时间范围:1337年4月1日 - 1400年1月1日(每月 1% 概率) 触发条件

  • 角色 mal_musa_keita 已死亡。
  • 统治者或摄政王拥有“自由思想家”特质。

关键效果

  • 选项 A

    • 为国家添加名为 mal_searching_lost_expedition 的修正,持续10年(模式为叠加并延长)。
    • 设置变量 mal_founding_expedition_start,并显示自定义提示文本 mal_finding_america_yields_rewards_tt
  • 选项 B(历史选项)

    • 增加 stability_mild_bonus 数值的稳定度。
    • 条件判断:如果当前时代不是“传统时代”(age_1_traditions)也不是“文艺复兴时代”(age_2_renaissance),则社会价值观“外向 vs 内向”向右移动(societal_value_move_to_right)。
    • 否则:增加 prestige_weak_bonus 数值的威望。

背景介绍: 此事件涉及马里帝国在14世纪中后期的一段历史插曲。在著名的统治者曼萨·穆萨(mal_musa_keita)去世后,一位具有“自由思想家”特质的继任者或摄政王开始关注其前任可能派遣的一支神秘远征队。这支队伍据信可能携带重要资源或知识,其命运成谜。事件反映了马里帝国在黄金时代后,统治阶层对探索、遗产与国家方向的思考与抉择。

完整事件代码

flavor_mal.24 = {
	type = country_event
	title = flavor_mal.24.title
	desc = flavor_mal.24.desc
	historical_info = flavor_mal.24.historical_info

	dynamic_historical_event = {
		tag = MAL
		from = 1337.4.1
		to = 1400.1.1
		monthly_chance = 1
	}

	fire_only_once = yes

	trigger = {
		character:mal_musa_keita = {
			is_alive = no
		}

		ruler_or_regent ?= {
			has_trait = free_thinker
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		character:mal_musa_keita = {
			save_scope_as = target_character
		}

		ruler_or_regent = {
			save_scope_as = target_character2
		}
	}

	option = {
		name = flavor_mal.24.a

		add_country_modifier = { modifier = mal_searching_lost_expedition years = 10 mode = add_and_extend }

		custom_tooltip = {
			text = mal_finding_america_yields_rewards_tt
			set_variable = mal_founding_expedition_start
		}
	}

	option = {
		name = flavor_mal.24.b

		historical_option = yes

		add_stability = stability_mild_bonus

		if = {
			limit = {
				NOR = {
					current_age = age_1_traditions
					current_age = age_2_renaissance
				}
			}
			change_societal_value = {
				type = outward_vs_inward
				value = societal_value_move_to_right
			}
		}
		else = {
			add_prestige = prestige_weak_bonus
		}
	}
}