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_sco.302 国王的著作

时间范围:1597.1.1 - 1612.1.1(每月 10% 概率触发)

触发条件

  • 国家拥有统治者。
  • 国家控制珀斯(Perth)地区。

关键效果

  • 选项 A:出版国王的著作!(历史选项)
    • 文化获得少量文化传统加成。
    • AI 选择此选项的概率权重为 75%。
  • 选项 B:将著作作为家族传家宝保存
    • 获得大量威望加成。
    • 获得巨额正统性加成。
    • AI 选择此选项的概率权重为 25%。

背景介绍: 在16世纪末至17世纪初,苏格兰国王詹姆斯六世(后成为英格兰国王詹姆斯一世)撰写了多部重要的政治理论著作,其中最著名的是《国王的真正法律》(The True Law of Free Monarchies)和《国王的礼物》(Basilikon Doron)。这些作品阐述了君权神授和国王绝对权力的理论,旨在巩固斯图亚特王朝的统治,并为未来统一英格兰和苏格兰的王冠提供理论基础。事件模拟了国王完成这些著作后,王室面临的选择:是将其公开出版以扩大政治影响力,还是作为私密遗产珍藏以增强家族威望。

完整事件代码

flavor_sco.302 = { # True Law and Basilikon
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.302.title
 	desc = flavor_sco.302.desc

	dynamic_historical_event = {
		tag = SCO
		tag = GBR
		from = 1597.1.1
		to = 1612.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		owns = location:perth
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = sco_ruler
        }
		location:perth = {
			create_art = {
				quality = 50
				artist = scope:sco_ruler
				type = work_of_art_type:treatise
				key = sco_true_law
			}
			create_art = {
				quality = 50
				artist = scope:sco_ruler
				type = work_of_art_type:treatise
				key = sco_basilikon
			}
		}
	}

 	option = { # Publish the King's Work!
		name = flavor_sco.302.a
		historical_option = yes
		culture = { add_cultural_tradition = cultural_tradition_mild_bonus }
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # Have the works be kept as a family heirloom
		name = flavor_sco.302.b
		add_prestige = prestige_severe_bonus
		add_legitimacy = legitimacy_extreme_bonus
		ai_chance = {
			factor = 0.25
		}
 	}
}