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_fra.308 七宝楼台(Heptaméron)

时间范围

1543.1.1 - 1573.1.1,每月有 20% 的概率触发。

触发条件

  • 国家必须拥有君主。
  • 当前君主的父亲必须满足以下条件:
    • 他至少有一个孩子(非当前君主本人)同时满足:
      • 是当前君主的兄弟姐妹。
      • 已去世。
      • 是女性。
      • 是成年人。
      • 年龄大于等于30岁。
      • 不是统治者。

关键效果

  • 选项 A(历史选项)<sibling> is an exquisite writer

    • 获得少量威望加成。
    • 本国文化获得少量文化影响力加成。
  • 选项 BPromote <sibling>'s work!

    • 花费 250 金币。
    • 获得大量威望加成。
    • 本国文化获得大量文化影响力加成。

背景介绍

此事件模拟了法国文艺复兴时期,由玛格丽特·德·纳瓦拉(Marguerite de Navarre)创作的故事集《七宝楼台》(Heptaméron)的出版与传播。玛格丽特是法国国王弗朗索瓦一世的姐姐,她的作品在宫廷和知识界产生了重要影响。事件中,出版商皮埃尔·博埃斯图(Pierre Boaistuau)被创建,并在巴黎创作了这部艺术作品,反映了当时法国贵族文化生活的繁荣以及文学艺术对国家和文化声望的推动作用。

完整事件代码

flavor_fra.308 = { # Heptaméron
	type = country_event
	title = flavor_fra.308.title
	desc = flavor_fra.308.desc


	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1543.1.1
		to = 1573.1.1
		monthly_chance = 20
	}


	trigger = {
		has_ruler = yes
		ruler.father ?= { 
			any_child = {
				not = { this = root.ruler } 
				is_sibling_of = root.ruler
				is_alive = no
				is_female = yes
				is_adult = yes
				age_in_years >= 30
				is_ruler = no
			}
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:burghers_estate }
		ruler.father = { 
			random_child = {
				limit = {
					not = { this = root.ruler } 
					is_sibling_of = root.ruler
					is_alive = no
					is_female = yes
					is_adult = yes
					age_in_years >= 30
					is_ruler = no
				}
				save_scope_as = target_sibling
			}
		}
		create_character = {
			first_name = name_peter
			last_name = boaistuau
			adm = 54
			dip = 46
			mil = 8
			culture = culture:french
			birth_location = location:nantes
			religion = religion:catholic
			birth_date = 1517.1.1
			estate = estate_type:burghers_estate
			script = pierre_boaistuau
			save_scope_as = target_character
			artist = writer
			artist_skill = 0.50
		}
		ruler ?= {
            save_scope_as = fra_ruler
        }
		location:paris = {
			create_art = {
				artist = scope:target_character
				quality = 50
				type = work_of_art_type:novel
				key = heptameron
			}
		}
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}


	option = { # <sibling> is an exquisite writer
		name = flavor_fra.308.a
		historical_option = yes
		add_prestige = prestige_mild_bonus
		culture = {
			add_cultural_influence = cultural_influence_mild_bonus
		}
	}
	option = { # Promote <sibling>'s work!
		name = flavor_fra.308.b
		add_gold = {
			value = -250
		}
		add_prestige = prestige_severe_bonus
		culture = {
			add_cultural_influence = cultural_influence_severe_bonus
		}
	}
}