flavor_swe_nov.3 瑞典神学家辩论
时间范围:无明确 from 和 to 日期限制,事件为动态触发。触发概率未在代码中指定 monthly_chance。
触发条件:
- 事件类型为国家事件,由游戏引擎根据其他条件或前置事件触发。
关键效果:
- 选项 A:派遣他们与拜占庭人辩论
- 历史选项:是
- 触发条件:国家
BYZ(拜占庭)存在。 - 效果:
- 增加
clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_mild_bonus)。 - 增加宗教影响力(
religious_influence_extreme_bonus)。 - 7天后,为
scope:sweden_country静默触发事件flavor_swe_nov.4。 - 将
scope:swedish_theologian(瑞典神学家)人物移动至scope:sweden_country。
- 增加
- 选项 B:嘲笑这位神学家
- 历史选项:是
- 触发条件:国家
BYZ(拜占庭)不存在。 - 效果:
- 增加
clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_mild_bonus)。 - 增加宗教影响力(
religious_influence_extreme_bonus)。 - 7天后,为
scope:sweden_country静默触发事件flavor_swe_nov.4。 - 将
scope:swedish_theologian(瑞典神学家)人物移动至scope:sweden_country。
- 增加
- 选项 C:接受神学辩论!
- 效果:
- 增加大量威望(
prestige_severe_bonus)。 - 7天后,为
scope:sweden_country静默触发事件flavor_swe_nov.7。 - 将
scope:swedish_theologian(瑞典神学家)人物移动至scope:sweden_country。 - 设置变量
can_choose_theologian_for_duel = yes,允许选择神学家进行决斗。
- 增加大量威望(
- AI 选择权重:因子为 1。
- 效果:
背景介绍: 此事件模拟了瑞典国内一位神学家提出神学辩论的场景。玩家面临的选择涉及如何处理这位神学家及其观点:是派遣他去与拜占庭(如果存在)进行正式辩论,还是在国内对其进行嘲笑,亦或是直接接受并主导这场神学辩论。不同的选择会影响神职人员阶层的态度、国家的宗教影响力以及后续的事件链。
完整事件代码:
flavor_swe_nov.3 = {
type = country_event
title = flavor_swe_nov.3.title
desc = flavor_swe_nov.3.desc
illustration_tags = {
10 = angry
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
if = {
limit = {
country_exists = c:BYZ
}
c:BYZ = {
save_scope_as = byzantium_country
}
}
}
#Forward them to debate with the Byzantines
option = {
name = flavor_swe_nov.3.a
trigger = {
country_exists = c:BYZ
}
historical_option = yes
add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
add_religious_influence = religious_influence_extreme_bonus
custom_tooltip = {
text = flavor_swe_nov.3.tt
scope:sweden_country = {
trigger_event_silently = {
id = flavor_swe_nov.4
days = 7
}
}
scope:swedish_theologian = {
move_country = scope:sweden_country
}
}
}
#Ridicule the theologian
option = {
name = flavor_swe_nov.3.b
trigger = {
NOT = { country_exists = c:BYZ }
}
historical_option = yes
add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
add_religious_influence = religious_influence_extreme_bonus
custom_tooltip = {
text = flavor_swe_nov.3.tt
scope:sweden_country = {
trigger_event_silently = {
id = flavor_swe_nov.4
days = 7
}
}
scope:swedish_theologian = {
move_country = scope:sweden_country
}
}
}
#Accept theological debate!
option = {
name = flavor_swe_nov.3.c
add_prestige = prestige_severe_bonus
custom_tooltip = {
text = flavor_swe_nov.3.c.tt
scope:sweden_country = {
trigger_event_silently = {
id = flavor_swe_nov.7
days = 7
}
}
scope:swedish_theologian = {
move_country = scope:sweden_country
}
}
custom_tooltip = {
text = can_choose_theologian_for_duel_tt
set_variable = { name = can_choose_theologian_for_duel value = yes }
}
ai_chance = {
factor = 1
}
}
}