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_eng.62] 诺里奇的朱利安女士

时间范围:1370.1.1 - 1416.1.1(每月 1% 概率)

触发条件

  • 国家拥有诺里奇(owns = location:norwich)。

关键效果

  • 选项 A (flavor_eng.62.a):

    • 花费 3 金币(change_gold_effect = { scale = -3 })。
    • 随机结果:
      • 25% 概率:人物 eng_lady_julian 因热病死亡(kill_character)。
      • 75% 概率:在诺里奇创建艺术品《神圣之爱的启示》(revelations_of_divine_love),类型为小说(work_of_art_type:novel),质量为 90,艺术家为 lady_julian
    • 显示自定义提示 flavor_eng.62.tt1
  • 选项 B (flavor_eng.62.b):

    • 随机结果:
      • 75% 概率:人物 eng_lady_julian 因热病死亡(kill_character),并增加教士阶层少量满意度(add_estate_satisfaction)。
      • 25% 概率:在诺里奇创建艺术品《神圣之爱的启示》(revelations_of_divine_love),类型为小说(work_of_art_type:novel),质量为 100,艺术家为 lady_julian
    • 显示自定义提示 flavor_eng.62.tt2

背景介绍: 该事件模拟了14世纪英国诺里奇的神秘主义者朱利安女士(Julian of Norwich)的出现及其影响。朱利安女士是一位重要的基督教神秘主义者和作家,以其作品《神圣之爱的启示》而闻名,该书是英语世界最早由女性撰写的著作之一。事件反映了中世纪英格兰宗教生活的一个侧面,以及地方圣徒或宗教人物对国家文化与宗教阶层可能产生的影响。

完整事件代码

flavor_eng.62 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.62.title
	desc = flavor_eng.62.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1370.1.1
		to = 1416.1.1
		monthly_chance = 1
	}

	trigger = {
		owns = location:norwich
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		create_character = {
			first_name = name_julian
			estate = estate_type:clergy_estate
			adm = 17
			dip = 34
			mil = 2
			birth_date = 1343
			artist_skill = 0.9
			artist = writer
			female = yes
			birth_location = location:norwich
			script = eng_lady_julian
			save_scope_as = lady_julian
		}

		location:norwich = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.62.a

		change_gold_effect = { scale = -3 }

		random_list =  {
			25 = {
				character:eng_lady_julian ?= {
					kill_character = {
						target = this
						reason = fever
					}
				}
			}
			75 = {
				scope:target_location = {
					create_art = {
						artist = scope:lady_julian
						quality = 90
						location = scope:target_location
						type = work_of_art_type:novel
						key = revelations_of_divine_love
					}
				}
			}
		}

		custom_tooltip = flavor_eng.62.tt1

	}

	option = {
		name = flavor_eng.62.b

		random_list =  {
			75 = {
				character:eng_lady_julian ?= {
					kill_character = {
						target = this
						reason = fever
					}
				}
				add_estate_satisfaction = { type = estate_type:clergy_estate
					value = estate_satisfaction_weak_bonus
				}
			}
			25 = {
				scope:target_location = {
					create_art = {
						artist = scope:lady_julian
						quality = 100
						location = scope:target_location
						type = work_of_art_type:novel
						key = revelations_of_divine_love
					}
				}
			}
		}

		custom_tooltip = flavor_eng.62.tt2

	}

	historical_info = flavor_eng.62.historical_info

}