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_lub.1 吕贝克汉萨同盟的机遇

时间范围:1390.10.10 - 1475.12.21(每月 1% 概率)

触发条件

  • 国家已解锁 castle_advance 科技。
  • 首都拥有建筑 building_type:castle(城堡)。

关键效果

  • 选项 A (flavor_lub.1.a)
    • 在首都建造建筑 building_type:hsa_burgtor
    • 首都获得 prosperity_severe_bonus(繁荣度大幅提升)。
  • 选项 B (flavor_lub.1.b)
    • 触发条件:本国首都与 c:HSA(汉萨同盟)的首都是同一省份,且本国与 c:HSA 不是宿敌、不是敌人、也未处于战争状态。
    • 效果:触发 c:HSA 的事件 flavor_lub.2
  • 选项 C (flavor_lub.1.c)
    • 国家获得 prestige_mild_penalty(威望轻微惩罚)。
    • 首都获得 prosperity_weak_penalty(繁荣度轻微惩罚)。

背景介绍: 14世纪末至15世纪后期,汉萨同盟作为北海和波罗的海地区的商业与政治联盟,其影响力达到顶峰。作为同盟的核心成员之一,吕贝克面临着巩固其商业地位、加强城防以及与同盟其他成员深化合作的关键抉择。此事件反映了吕贝克在同盟内部寻求发展机遇,可能通过建造标志性建筑、深化与汉萨同盟的关系或采取保守策略来应对时代挑战。

完整事件代码

flavor_lub.1 = {
	type = country_event
	title = flavor_lub.1.title
	desc = flavor_lub.1.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = LUB
		from = 1390.10.10
		to = 1475.12.21
		monthly_chance = 1
	}
	
	trigger = {
		has_advance = castle_advance
		capital = { has_building = building_type:castle }
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		capital = { save_scope_as = target_location }
		c:HSA = { save_scope_as = target_country }
		save_scope_as = target_country2
	}

	option = {
		name = flavor_lub.1.a
		
		capital = {
			construct_building = {
				building_type = building_type:hsa_burgtor
			}
			change_prosperity = prosperity_severe_bonus
		}
	}

	option = {
		name = flavor_lub.1.b

		trigger = { 
			capital = c:HSA.capital 
			NOR = {
				is_rival_of = c:HSA
				is_enemy_of = c:HSA
				is_at_war_with = c:HSA
			}
		}
		c:HSA = { trigger_event_non_silently = flavor_lub.2 }
	}

	option = {
		name = flavor_lub.1.c 

		add_prestige = prestige_mild_penalty
		capital = { change_prosperity = prosperity_weak_penalty }
	}
}