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.2043 皇家邮政道路扩建

时间范围:1450.1.1 - 1485.1.1(每月 15% 概率触发)

触发条件

  • 国家处于和平状态(at_war = no
  • 国家拥有统治者(has_ruler = yes

关键效果

  • 选项 A:资助皇家道路的扩建!(历史选项)
    • 国库减少 825 金币。
    • 获得国家修正 fra_royal_postal_roads_expansion,持续 15 年。
  • 选项 B:调整项目以建造更便宜的道路
    • 国库减少 500 金币。
    • 获得国家修正 fra_cheaper_roads_expansion,持续 15 年。
  • 选项 C:这种道路扩建是浪费资源
    • 获得少量威望加成(prestige_mild_bonus)。

背景介绍: 在15世纪中后期,法兰西王国正致力于加强中央集权与内部联通。一个高效、可靠的邮政与道路网络对于传达王室政令、促进商业流通和军事调动至关重要。此事件反映了王室试图投资扩建“皇家邮政道路”体系,以巩固对国家的控制并刺激经济发展,但不同的财政与管理策略将带来不同的长期效果。

完整事件代码

flavor_fra.2043 = { # Expansion of the Royal Postal roads
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2043.t
 	desc = flavor_fra.2043.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1450.1.1
		to = 1485.1.1
		monthly_chance = 15
	}

 	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 = { # Fund the expansion of the royal roads!
		name = flavor_fra.2043.a
		historical_option = yes
		add_gold = {
			value = -825
		}
		add_country_modifier = {
			modifier = fra_royal_postal_roads_expansion
			years = 15
			mode = add
		}
        ai_chance = {
            base = 50
        }
 	}

 	option = { # Adjust the project to allow the creation of cheaper roads
		name = flavor_fra.2043.b
		add_gold = {
			value = -500
		}
		add_country_modifier = {
			modifier = fra_cheaper_roads_expansion
			years = 15
			mode = add
		}
        ai_chance = {
            base = 30
        }
 	}

 	option = { # This road expansion is a waste of resources
		name = flavor_fra.2043.c
		add_prestige = prestige_mild_bonus
        ai_chance = {
            base = 20
        }
 	}
}