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_fra.2044 驿站客栈

时间范围

1450.1.1 - 1475.1.1,每月 25% 概率触发。

触发条件

  • 国家 未处于战争状态
  • 国家 拥有统治者

关键效果

选项 A:允许按国王的意愿建立这些客栈

  • 历史选项:是
  • 效果:
    • 国库 减少 825 金币。
    • 国家获得修正 fra_coaching_inns,持续 15 年。
  • AI 选择概率:70%

选项 B:扩建邮政客栈以加强间谍网络

  • 效果:
    • 国库 减少 1150 金币。
    • 国家获得修正 fra_coaching_inns_with_spys,持续 15 年。
  • AI 选择概率:20%

选项 C:一项昂贵的工程

  • 效果:
    • 获得 legitimacy_mild_bonus(合法性小幅增益)。
    • 获得 stability_mild_bonus(稳定度小幅增益)。
  • AI 选择概率:10%

背景介绍

在路易十一统治时期,法国开始建立一种被称为“驿站客栈”或“邮政客栈”的体系。这些客栈最初旨在为国王的信使和官员提供可靠的休息与换马场所,以加速信息传递和行政命令的执行。这一网络不仅提升了国内通信效率,也逐渐演变为重要的情报收集节点和贸易路线上的关键设施,对加强中央集权和国家控制力产生了深远影响。

完整事件代码

flavor_fra.2044 = { # Coaching Inns # 'Postal' inns created during the reign of Louis XI
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2044.t
 	desc = flavor_fra.2044.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1450.1.1
		to = 1475.1.1
		monthly_chance = 25
	}

 	trigger = {
		at_war = no
		has_ruler = yes
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

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

 	option = { # Allow the creation of these Inns at the King’s behest
		name = flavor_fra.2044.a
		historical_option = yes
		add_gold = {
			value = -825
		}
		add_country_modifier = {
			modifier = fra_coaching_inns
			years = 15
			mode = add
		}
        ai_chance = {
            base = 70
        }
 	}

 	option = { # Expand the Postal Inns to bolster our Spy Networks
		name = flavor_fra.2044.b
		add_gold = {
			value = -1150
		}
		add_country_modifier = {
			modifier = fra_coaching_inns_with_spys
			years = 15
			mode = add
		}
        ai_chance = {
            base = 20
        }
 	}

 	option = { # An expensive endeavor
		name = flavor_fra.2044.c
		add_legitimacy = legitimacy_mild_bonus
		add_stability = stability_mild_bonus
        ai_chance = {
            base = 10
        }
 	}
}