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_pol.1601] 斯皮什地区抵押事件

时间范围

  • 事件触发时间范围:无明确 fromto 日期限制,事件在满足触发条件后即可发生。
  • 触发概率:无 monthly_chance 字段,事件为条件触发型,非月度概率事件。

触发条件

事件触发需满足以下所有条件:

  1. 地区 lubica 的所有者为匈牙利(c:HUN)。
  2. 当前国家拥有统治者(has_ruler = yes)。

关键效果

事件提供两个选项:

选项 A(历史选项)

  • 名称flavor_pol.1601.a
  • 效果
    • 将地区 lubica 的所有权转移给触发事件的国家(ROOT)。
    • scope:pol_requesting_nation 提供一笔贷款:
      • 贷款金额:local_var:spisz_price
      • 年利率:2%(interest = 0.02
      • 还款期限:60个月
      • 设置本地化键:pledge_of_spisz
    • scope:pol_requesting_nation 设置变量 has_taken_pledge_of_spisz
    • 为触发事件的国家增加大量威望(prestige_severe_bonus)。

选项 B

  • 名称flavor_pol.1601.b
  • 效果:无具体效果描述(通常为拒绝或忽略该事件)。

背景介绍

该事件模拟了历史上波兰与匈牙利之间关于斯皮什(Spisz)地区的复杂领土与金融安排。斯皮什地区位于喀尔巴阡山脉北部,历史上多次在波兰王国和匈牙利王国之间易手。事件中的“抵押”选项可能反映了特定历史时期,波兰通过提供财政贷款,从匈牙利获得对该地区临时或永久控制权的一种政治交易。这种安排常见于中世纪晚期至近代早期,君主们通过抵押领土来获取紧急资金或巩固联盟关系。

完整事件代码

flavor_pol.1601 = {
    type = country_event

	title = flavor_pol.1601.title
	desc = flavor_pol.1601.desc

	trigger = {
		location:lubica = {
			owner = c:HUN
		}
		has_ruler = yes
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

    option = {
		name = flavor_pol.1601.a
		historical_option = yes

        location:lubica = {
            change_location_owner = ROOT
        }
		give_loan = {
			target = scope:pol_requesting_nation
			amount = local_var:spisz_price
			interest = 0.02
			months = 60
			set_loc_key = pledge_of_spisz
		}
		scope:pol_requesting_nation = {
			set_variable = has_taken_pledge_of_spisz
		}
        add_prestige = prestige_severe_bonus
	}

	option = {
		name = flavor_pol.1601.b
	}
}