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_plc.18 迁都华沙

时间范围:1600.4.1 - 1821.1.1(每月 10% 概率)

触发条件

  • 拥有华沙(warsaw)地区。
  • 首都在华沙地区。
  • 当前处于战争状态。
  • 当前处于破产状态。

关键效果

  • 选项 A (flavor_plc.18.a) - 历史选项

    • 花费相当于8个月收入的金钱。
    • 将首都从当前首都迁至华沙。
    • 获得国家修正 plc_capital_change_modifier,持续25年。
  • 选项 B (flavor_plc.18.b)

    • 当前首都所在省份的所有地区获得少量繁荣度提升。
    • 国家获得少量稳定度提升。

背景介绍: 此事件模拟了波兰立陶宛联邦(PLC)在17世纪初期考虑将首都迁回历史与政治中心华沙的决策。华沙自1596年起便成为联邦的实际行政中心,但法律上的首都迁移有时会因财政、贵族政治或战争等因素而延迟或引发争议。该事件为玩家提供了遵循历史轨迹迁都,或选择留在原地并加强现有首都的选项。

完整事件代码

flavor_plc.18 = {
	type = country_event
	title = flavor_plc.18.title
	desc = flavor_plc.18.desc
	historical_info = flavor_plc.18.historical_info

	trigger = {
		owns = location:warsaw
		capital != location:warsaw
		at_war = no
		is_during_bankruptcy = no
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = PLC
		from = 1600.4.1
		to = 1821.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		location:warsaw = {
			save_scope_as = target_location
		}
		capital = {
			save_scope_as = current_capital
		}
		ruler_or_regent ?= { save_scope_as = target_character }
	}

	option = {
		name = flavor_plc.18.a

		historical_option = yes

		change_gold_effect = { scale = -8 }

		move_capital_event_effect = {
			from = scope:current_capital
			to = scope:target_location
		}

		add_country_modifier = {
			mode = add_and_extend
			modifier = plc_capital_change_modifier
			years = 25
		}		
	}

	option = {
		name = flavor_plc.18.b

		scope:current_capital.province = {
			every_location_in_province = {
				change_prosperity = prosperity_weak_bonus
			}
		}
		add_stability = stability_weak_bonus
	}
}