flavor_sco.109 布鲁斯史诗
时间范围:1371年1月1日 - 1381年1月1日(每月 20% 概率)
触发条件:
- 国家拥有统治者。
- 国家未处于战争状态。
- 国家拥有珀斯(perth)地区。
关键效果:
-
选项 A(历史选项):此叙事诗将进一步巩固我们的统治
- 将诗人约翰·巴伯(John Barbour)移入本国。
- 花费少量金钱(
change_gold_effect = { scale = -3 })。 - 为文化添加温和的文化影响力加成。
- 为统治者添加显著的合法性加成。
- 在珀斯地区创建名为“The Brus”的诗歌艺术品(品质55)。
- AI选择此选项的概率为90%。
-
选项 B:我们不需要创作这首诗
- 获得微弱的稳定性加成。
- 获得少量金钱(
change_gold_effect = { scale = 3 })。 - AI选择此选项的概率为10%。
- (隐藏效果)销毁艺术品“The Brus”,并将诗人约翰·巴伯流放。
背景介绍: 该事件模拟了苏格兰诗人约翰·巴伯创作史诗《布鲁斯》(The Brus)的历史时刻。这首诗颂扬了苏格兰国王罗伯特·布鲁斯(Robert the Bruce)的生平与功绩,旨在巩固斯图亚特王朝(当时由罗伯特二世统治)的合法性,并提升苏格兰的民族文化与认同。事件发生在14世纪后期,正值苏格兰王国巩固独立地位、塑造国家叙事的关键时期。
完整事件代码:
flavor_sco.109 = { # The Brus Work of Art
type = country_event
fire_only_once = yes
title = flavor_sco.109.title
desc = flavor_sco.109.desc
dynamic_historical_event = {
tag = SCO
from = 1371.1.1
to = 1381.1.1
monthly_chance = 20
}
trigger = {
has_ruler = yes
at_war = no
owns = location:perth
}
illustration_tags = {
10 = happy
10 = exterior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
ruler ?= {
save_scope_as = sco_ruler
}
create_character = {
first_name = name_john
last_name = barbour
adm = {20 50}
dip = {20 50}
mil = {20 50}
artist_skill = 0.60
artist = writer
culture = culture:scottish
birth_location = location:aberdeen
religion = religion:catholic
birth_date = 1320.1.1
save_scope_as = target_character
script = john_barbour
estate = estate_type:burghers_estate
create_in_limbo = yes
}
location:perth = {
create_art = {
quality = 55
artist = scope:target_character
type = work_of_art_type:poem
key = the_brus
}
}
}
option = { # This narrative poem will further legitimize our rule
name = flavor_sco.109.a
historical_option = yes
scope:target_character = { move_country = root }
change_gold_effect = { scale = -3 }
culture = {
add_cultural_influence = cultural_influence_mild_bonus
}
add_legitimacy = legitimacy_severe_bonus
show_as_tooltip = {
location:perth = {
create_art = {
quality = 55
artist = scope:target_character
type = work_of_art_type:poem
key = the_brus
}
}
}
ai_chance = {
factor = 0.90
}
}
option = { # We have no need for writing the poem
name = flavor_sco.109.b
add_stability = stability_weak_bonus
change_gold_effect = { scale = 3 }
ai_chance = {
factor = 0.10
}
hidden_effect = {
destroy_art = work_of_art:the_brus
}
scope:target_character = { banish_character = yes }
}
}