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_maj.1 王书

时间范围:1500.1.1 - 1600.6.1,每月 1% 概率触发

触发条件

  • 国家处于和平状态(at_war = no)。
  • 国家未处于破产状态(is_during_bankruptcy = no)。
  • 国家内至少存在一位空闲的作家类型人物(artist_type = writerhas_art_in_progress = no)。

关键效果

  • 选项 A (历史选项)
    • 在首都创建一部编年史类型的艺术品(type = work_of_art_type:chronicle),关键标识为 maj_pararaton_woa,由一位空闲的作家创作,品质为 77。
    • 消耗一定数量的金钱(change_gold_effect = { scale = -5 })。
    • 使社会价值观向“创新”方向大幅移动(change_societal_value = { type = traditionalist_vs_innovative value = societal_value_large_move_to_right })。
  • 选项 B
    • 使社会价值观向“创新”方向大幅移动(change_societal_value = { type = traditionalist_vs_innovative value = societal_value_large_move_to_right })。
    • 为国家的主流文化添加一个轻微惩罚的文化传统(add_cultural_tradition = cultural_tradition_mild_penalty)。

背景介绍: 该事件模拟了16世纪满者伯夷帝国(或其后继者)可能赞助编撰重要历史文献(如《巴拉拉敦》或类似“王书”)的情景。这类编年史旨在记录王朝历史、巩固统治合法性并塑造国家文化认同。事件反映了统治者面临的选择:是投入资源支持文化创作以提升国家声望和历史传承,还是将重心转向其他方面,但可能面临文化传统固化的风险。

完整事件代码

flavor_maj.1 = {  #The Book of Kings
	type = country_event
	title = flavor_maj.1.title
	desc = flavor_maj.1.desc
	historical_info = flavor_maj.1.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = MAJ
		from = 1500.1.1
		to = 1600.6.1
		monthly_chance = 1
	}
	trigger = {
		at_war = no
		is_during_bankruptcy = no
		any_character = {
			artist_type = writer
			has_art_in_progress = no
		}
	}

	immediate = {
		ruler_or_regent = { save_scope_as = target_character }
		random_character = {
			limit = {
				artist_type = writer
			    has_art_in_progress = no
			}
			save_scope_as = target_artist
		}
	}

	option = {
		name = flavor_maj.1.a
		historical_option = yes

		capital = {
			create_art = {
				artist = scope:target_artist
				quality = 77
				type = work_of_art_type:chronicle
				key = maj_pararaton_woa
			}
		}
		change_gold_effect = { scale = -5 }
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_large_move_to_right }

	}
	option = {
		name = flavor_maj.1.b

		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_large_move_to_right }
		culture = {
			add_cultural_tradition = cultural_tradition_mild_penalty
		}
	}
}