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.89] 郑和宝船远航

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

触发条件

  • 国家拥有变量 enabled_treasure_voyages
  • 满足以下任一条件:
    • 国库黄金 gold 大于或等于年收入 yearly_gold
    • 当前年份 current_year 大于或等于 1420 年。

关键效果

  • 选项 A (历史选项)
    • 支付一笔等于年收入 yearly_gold 的黄金(国库减少相应数额)。
    • 为国家添加名为 chi_grand_fleet_for_voyages 的修正,持续时间为永久(years = -1)。
    • AI 选择此选项的概率为 100%,除非其月度收支 monthly_balance 为负数(此时概率为 0%)。
  • 选项 B
    • 获得 prestige_severe_penalty 数值的威望惩罚(威望大幅下降)。
    • AI 选择此选项的概率为 100%,但仅当其月度收支 monthly_balance 为正数或零时(否则概率为 0%)。

背景介绍: 此事件模拟了明朝永乐至宣德年间,由郑和率领的庞大远洋船队(史称“郑和下西洋”)的筹备与决策。船队旨在宣扬国威、进行朝贡贸易并探索海外。事件反映了朝廷在巨额财政支出与国家声望、战略利益之间的权衡。选项A代表历史路径,即投入巨资组建远航舰队;选项B则代表因财政压力或其他原因放弃远航,转而承受国际声望的损失。

完整事件代码

flavor_chi.89 = {
	type = country_event
	title = flavor_chi.89.title
	desc = flavor_chi.89.desc
	historical_info = flavor_chi.89.historical_info

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

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		has_variable = enabled_treasure_voyages
		OR = {
			gold >= yearly_gold
			current_year >= 1420
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:burghers_estate }
		set_local_variable = {
			name = cost_of_treasure_voyage_fleet
			value = {
				value = yearly_gold
				multiply = -1
			}
		}
	}

	option = {
		name = flavor_chi.89.a

		historical_option = yes

		ai_chance = {
			factor = 1
			modifier = {
				factor = 0
				trigger = {
					monthly_balance < 0
				}
			}
		}

		add_gold = local_var:cost_of_treasure_voyage_fleet

		add_country_modifier = {
			mode = add
			modifier = chi_grand_fleet_for_voyages
			years = -1
		}
	}

	option = {
		name = flavor_chi.89.b

		ai_chance = {
			factor = 1
			modifier = {
				factor = 0
				trigger = {
					monthly_balance >= 0
				}
			}
		}

		add_prestige = prestige_severe_penalty
	}
}