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_eth.161 学者统治者事件 - 《诞生之书》

时间范围

  • 起始日期:不适用(无 from 字段)
  • 结束日期:不适用(无 to 字段)
  • 触发概率:不适用(无 monthly_chance 字段)

触发条件

  • 目标人物状态scope:target_character 必须存活(is_alive = yes

关键效果

  • 选项名称flavor_eth.161.a
  • 效果
    1. 在首都创建艺术品:
      • 艺术家:scope:target_character
      • 艺术品键值:book_of_nativity
      • 品质:70
      • 类型:专著(work_of_art_type:treatise
    2. 在1至2年后,静默触发事件 flavor_eth.162

背景介绍

该事件描述了当国家统治者是一位学者时,委托创作一部名为《诞生之书》的专著。这部作品由指定的学者(目标人物)执笔,完成后将作为重要的文化或宗教典籍收藏于首都,并可能在后续引发相关事件。

完整事件代码

flavor_eth.161 = { #Event 2 if ruler is Scholar - The Book of Nativity
	type = country_event
	title = flavor_eth.161.title
	desc = flavor_eth.161.desc
	illustration_tags = {
		10 = happy
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}
	trigger = {
		scope:target_character = {
			is_alive = yes
		}
	}

	option = {
		name = flavor_eth.161.a

		capital = {
			create_art = {
				artist = scope:target_character
				key = book_of_nativity
				quality = 70
				type = work_of_art_type:treatise
			}
		}
		
		trigger_event_silently = {
			id = flavor_eth.162
			years = {
				1
				2
			}
		}
	}
}