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_lit.1001 汉萨同盟特权

时间范围
事件无明确 fromto 日期限制,触发概率未在代码中指定(monthly_chance 未定义)。

触发条件

  • 事件类型为国家事件(type = country_event)。
  • 主要触发条件(major_trigger)要求:当前作用域国家(this)必须是目标国家(scope:target_country)。

关键效果

  • 选项 A(flavor_lit.1001.a

    • 在目标地点(scope:target_location):
      • 以 75% 的成本(cost_multiplier = 0.75)为所有者(owner = scope:target_country2)建造一座“汉萨商站”建筑(building_type:hanseatic_kontor),成本减免原因为“市民阶层廉价赞助”(cost_multiplier_reason = "burghers_cheap_sponsorship")。
      • 大幅提升发展度(change_development = development_extreme_bonus)。
      • 大幅提升繁荣度(change_prosperity = prosperity_extreme_bonus)。
    • 与目标国家(scope:target_country)互相增加“接受汉萨权利”意见修正(modifier = lit_accepted_hansa_rights)。
  • 选项 B(flavor_lit.1001.b

    • 与目标国家(scope:target_country)互相增加“拒绝汉萨权利”意见修正(modifier = lit_rejected_hansa_rights)。

背景介绍
该事件模拟了中世纪晚期至近代早期,汉萨同盟在北欧与波罗的海贸易中的影响力。汉萨同盟是由众多商业城市组成的强大贸易网络,经常通过谈判或施压,在外国城市获取商业特权、建立商站,以垄断贸易路线并获取巨额利润。接受其特权可能带来经济繁荣,但也可能削弱本地商业自主权;拒绝则可能招致贸易制裁或关系恶化。

完整事件代码

flavor_lit.1001 = {
	type = country_event
	title = flavor_lit.1001.title
	desc = flavor_lit.1001.desc
	major = yes
	major_trigger = {
		this = scope:target_country
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
	}
	
	option = {
		name = flavor_lit.1001.a

		scope:target_location = {
			construct_building = {
				building_type = building_type:hanseatic_kontor
				cost_multiplier = 0.75
				cost_multiplier_reason = "burghers_cheap_sponsorship"
				owner = scope:target_country2
			}
			change_development = development_extreme_bonus
			change_prosperity = prosperity_extreme_bonus
		}

		add_opinion_mutual_effect = {
			modifier = lit_accepted_hansa_rights
			target = scope:target_country
		}
	}

	option = {
		name = flavor_lit.1001.b

		add_opinion_mutual_effect = {
			modifier = lit_rejected_hansa_rights
			target = scope:target_country
		}
	}
}