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_por.58] 霍尔木兹商站

时间范围

1510.1.1 - 1600.1.1
每月触发概率:3%

触发条件

  • 事件所属国家为 葡萄牙(POR)
  • 省份 霍尔木兹(hormuz) 的顶层所有者是事件触发国(葡萄牙)。
  • 该省份 没有 建筑 building_type:por_feitoria(葡萄牙商站)。

关键效果

选项 A:flavor_por.58.a(历史选项)

  • 在目标省份(霍尔木兹)执行 establish_feitoria_effect = yes(建立商站效果)。
  • 如果当前时代处于 宗教改革时代(age_4_reformation)或更晚
    • 改变社会价值观:mercantilism_vs_free_trade(重商主义 vs 自由贸易)向 左侧轻微移动(增加重商主义倾向)。

选项 B:flavor_por.58.b

  • 如果当前时代处于 宗教改革时代(age_4_reformation)或更晚
    • 改变社会价值观:mercantilism_vs_free_trade(重商主义 vs 自由贸易)向 右侧轻微移动(增加自由贸易倾向)。
  • 否则(时代更早):
    • 增加 prestige_weak_bonus(少量威望)。

背景介绍

该事件模拟了葡萄牙帝国在16世纪早期于波斯湾战略要地霍尔木兹建立商站(Feitoria)的历史进程。霍尔木兹是控制印度洋与波斯湾贸易路线的关键节点。葡萄牙人于1515年占领该地并建立要塞和贸易据点,旨在垄断香料贸易并巩固其在亚洲的殖民网络。建立商站不仅带来了直接的经济利益,也体现了葡萄牙早期重商主义的扩张政策。

完整事件代码

flavor_por.58 = { #Feitoria of Hormuz
	type = country_event
	title = flavor_por.58.title
	desc = flavor_por.58.desc
	historical_info = flavor_por.58.historical_info

	dynamic_historical_event = {
		tag = POR
		from = 1510.1.1
		to = 1600.1.1
		monthly_chance = 3
	}
	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		location:hormuz = {
			top_owner ?= root
			NOT = {
				has_building = building_type:por_feitoria
			}
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		location:hormuz = {
			save_scope_as = target_location
		}

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_por.58.a
		historical_option = yes

		scope:target_location = {
			establish_feitoria_effect = yes
		}

		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = {
				type = mercantilism_vs_free_trade
				value = societal_value_minor_move_to_left
			}
		}
	}

	option = {
		name = flavor_por.58.b

		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = {
				type = mercantilism_vs_free_trade
				value = societal_value_minor_move_to_right
			}
		}
		else = {
			add_prestige = prestige_weak_bonus
		}
	}
}