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_nov.28 阿尔汉格尔斯克的发展

时间范围:1564.1.1 - 1604.1.1(每月 1% 概率触发)

触发条件

  • 控制阿尔汉格尔斯克(location:arkhangelsk)地区。
  • 国家稳定度不低于 20。

关键效果

  • 历史选项 (flavor_nov.28.a):
    • 花费 12 金币。
    • 在阿尔汉格尔斯克地区:
      • 若该地等级低于城镇(town),则将其提升至城镇等级。
      • 大幅增加发展度。
      • 建造 1 级市场、1 级港务局、1 级粮仓和 1 级码头。
  • 备选选项 (flavor_nov.28.b):
    • 获得少量威望惩罚。

背景介绍: 16世纪中后期,随着俄罗斯寻求与西欧的直接贸易通道,位于北德维纳河入海口的阿尔汉格尔斯克地区战略地位日益凸显。该事件反映了诺夫哥罗德(或继承其领土的国家)决策者对于是否投资建设这一潜在北方港口与贸易中心的考量。历史的选择是投入资源将其建设为一个功能齐全的城镇,以促进贸易、仓储和航运,从而打开通往白海的窗口。

完整事件代码

flavor_nov.28 = {
	type = country_event
	fire_only_once = yes
	title = flavor_nov.28.title
	desc = flavor_nov.28.desc
	dynamic_historical_event = {
		tag = NOV
		from = 1564.1.1
		to = 1604.1.1
		monthly_chance = 1
	}
	trigger = {
		owns = location:arkhangelsk
		stability >= 20
	}
	immediate = {
		location:arkhangelsk = {
			save_scope_as = target_location
		}
	}
	#It looks like a great place for a new town!
	option = {
		name = flavor_nov.28.a
		historical_option = yes
		change_gold_effect = { scale = -12 }
		scope:target_location = {
			if = {
				limit = {
					NOT = { location_rank = location_rank:city }
					NOT = { location_rank = location_rank:town }
				}
				change_location_rank = location_rank:town
			}
			change_development = development_severe_bonus
			change_building_level_in_location = {
				building = building_type:marketplace
				value = 1
			}
			change_building_level_in_location = {
				building = building_type:port_authority
				value = 1
			}
			change_building_level_in_location = {
				building = building_type:granary
				value = 1
			}
			change_building_level_in_location = {
				building = building_type:wharf
				value = 1
			}
		}
		ai_chance = {
			factor = 1
		}
	}
	#It is not worth it.
	option = {
		name = flavor_nov.28.b
		add_prestige = prestige_weak_penalty
		ai_chance = {
			factor = 1
		}
	}
}