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.76 编纂《永乐大典》

时间范围:1400.1.1 - 1450.1.1 (每月 10% 概率)

触发条件

  • 国家标签为 CHI
  • 当前统治者满足以下任一条件:
    • 总能力值 (total_abilities) ≥ 200。
    • 拥有特质 scholar
  • 国库黄金储备 (gold) ≥ 国家月度贸易与税收收入 (monthly_income_trade_and_tax) 的 6 倍。

关键效果

  • 选项 A (flavor_chi.76.a)
    • 消耗黄金:数额为当前月度贸易与税收收入的 12 倍。
    • 为国家添加名为 chi_compiling_grand_encyclopedia 的修正,持续 10 年。
    • 在 7 至 10 年后,静默触发事件 flavor_chi.77
  • 选项 B (flavor_chi.76.b)
    • 获得 prestige_mild_penalty 所对应的少量威望惩罚。

背景介绍: 此事件模拟了明朝永乐年间,在国力鼎盛、君主推崇文治的背景下,由国家主导进行大规模文化典籍编纂工程的决策。它要求统治者本人具备极高的学识或能力,并且国家拥有雄厚的财政基础,以支持这项耗时长久、耗费巨大的文化盛事。选项代表了是否投入巨资启动这项宏伟的文化工程。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1400.1.1
		to = 1450.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		ruler ?= {
			OR = {
				total_abilities >= 200
				has_trait = scholar
			}
		}
		gold >= {
			value = root.monthly_income_trade_and_tax
			multiply = 6
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_chi.76.a

		change_gold_effect = { scale = -12 }

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

		trigger_event_silently = {
			id = flavor_chi.77
			years = { 7 10 }
		}
	}

	option = {
		name = flavor_chi.76.b

		add_prestige = prestige_mild_penalty
	}
}