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_nav.60 女王遗愿

时间范围:无明确起止日期(fire_only_once = yes,为一次性事件)

触发概率:满足条件后立即触发

触发条件

  • 角色 nav_jeanne_ii_capet 已死亡
  • 国家当前没有摄政
  • 国家宗教为天主教
  • 国家拥有 olite 地区

关键效果

  • 选项 A (历史选项)
    • 国库减少一定资金(scale = -1.00
    • olite 地区免费建造一座大教堂(building_type:cathedral,成本倍数为0,原因为“皇家赞助”)
  • 选项 B
    • 国家威望轻微下降(prestige_mild_penalty
    • 统治合法性轻微下降(legitimacy_mild_penalty

背景介绍: 此事件模拟了纳瓦拉王国(或相关天主教国家)在女王胡安娜二世去世后,面临其遗嘱执行的问题。女王生前可能留下了资助宗教建设的遗愿,国家需要决定是否动用王室资源来履行这一承诺,以纪念逝去的君主并巩固与教会的关系,或是选择保留财力但承担一定的声誉损失。

完整事件代码

flavor_nav.60 = { #The Will of a Queen
	type = country_event
	title = flavor_nav.60.title
	desc = flavor_nav.60.desc

	fire_only_once = yes

	trigger = {
		character:nav_jeanne_ii_capet = {
			is_alive = no
		}
		has_regent = no
		religion = religion:catholic
		owns = location:olite
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		character:nav_jeanne_ii_capet = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_nav.60.a
		historical_option = yes #We will fulfill her Last Will 
		change_gold_effect = { scale = -1.00  }
		location:olite = {
			construct_building = { 
				building_type = building_type:cathedral
				cost_multiplier = 0
				cost_multiplier_reason = "royal_sponsorship"
			}
		}
	}
	option = {
		name = flavor_nav.60.b
		add_prestige = prestige_mild_penalty
		add_legitimacy = legitimacy_mild_penalty
	}
	historical_info = flavor_nav.60.historical_info
}