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.1600] 波兰抵押斯皮什地区

时间范围:1350.1.1 - 1450.1.1,每月 10% 概率触发

触发条件

  • 事件接收国(ROOT)必须存在。
  • 事件接收国拥有卢比察(lubica)地区,且该地区至少有一个相邻地区的所有者是波兰(c:POL)。
  • 事件接收国拥有君主。
  • 波兰(c:POL)拥有君主。
  • 事件接收国的月度收支为负(monthly_balance < 0)。
  • 波兰(c:POL)的国库资金至少是事件接收国月度贸易与税收收入(monthly_income_trade_and_tax)的24倍。
  • 波兰(c:POL)与事件接收国是盟友,或者波兰对事件接收国的看法值至少为100。

关键效果

  • 选项 A (历史选项)
    • 将卢比察(lubica)地区的所有权转让给波兰(c:POL)。
    • 波兰(c:POL)获得大量威望(prestige_severe_bonus)。
    • 波兰(c:POL)向事件接收国提供一笔无息贷款(利率0.02),金额为事件接收国月度贸易与税收收入的24倍,还款期为60个月。
    • 1个月后,波兰(c:POL)将触发事件 flavor_pol.1601
  • 选项 B:无具体效果描述。

背景介绍: 该事件模拟了中世纪晚期,波兰王国与匈牙利王国之间围绕斯皮什(Spisz)地区的一系列复杂交易。历史上,匈牙利国王曾因财政困难,将斯皮什地区的部分城镇和城堡抵押给波兰,以换取急需的资金。这一事件反映了当时中欧地区王室财政的脆弱性、领土作为抵押品的普遍做法,以及波兰在该地区日益增长的影响力。

完整事件代码

flavor_pol.1600 = {
	hide_portraits = yes
    type = country_event

	title = flavor_pol.1600.title
	desc = flavor_pol.1600.desc
	dynamic_historical_event = {
		tag = HUN
		from = 1350.1.1
		to = 1450.1.1
		monthly_chance = 10
	}

	fire_only_once = yes

    trigger = {
        country_exists = c:POL
        location:lubica = {
            owner = ROOT
            any_neighbor_location = {
                owner ?= c:POL
            }
        }
		has_ruler = yes
		c:POL = { has_ruler = yes }
        monthly_balance < 0
        c:POL = {
            gold >= {
				value = root.monthly_income_trade_and_tax
				multiply = 24
			}
            OR = {
                is_allied_with = { target = ROOT }
                opinion = {
                    target = ROOT
                    value >= 100
                }
            }
        }
    }

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		set_local_variable = {
			name = spisz_price
			value = {
				value = root.monthly_income_trade_and_tax
				multiply = 24
			}
		}
		location:lubica = {
			save_scope_as = pol_spisz_prov
		}
		c:POL = { save_scope_as = pol_the_loan_provider }
		save_scope_as = pol_requesting_nation
		ruler = { save_scope_as = pol_requesting_nation_ruler }
	}

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

        show_as_tooltip = {
            location:lubica = {
                change_location_owner = c:POL
            }
            c:POL = {
                add_prestige = prestige_severe_bonus
				give_loan = {
					target = scope:pol_requesting_nation
					amount = local_var:spisz_price
					interest = 0.02
					months = 60
				}
            }
        }

		c:POL = {
            trigger_event_non_silently = {
                id = flavor_pol.1601
                months = 1
            }
        }
	}

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