flavor_hab.38 第一任皇帝之墓
时间范围:1337.1.1 - 1836.1.1,每月 1% 概率触发
触发条件:
- 国家拥有统治者。
- 国家拥有变量
austria_first_emperor_variable。 - 变量
austria_first_emperor_variable所指向的人物已死亡。 - 国家拥有维也纳地区。
- 维也纳地区内存在名为
st_stephens_cathedral的艺术品。
关键效果:
-
选项 A (flavor_hab.38.a):
- 花费 8 金币。
- 在维也纳地区创建一个艺术品:
- 类型:纪念碑
- 键值:
tomb_of_the_first_emperor - 品质:85
-
选项 B (flavor_hab.38.b):
- 获得少量威望惩罚。
背景介绍: 此事件模拟了奥地利(哈布斯堡王朝)为纪念其首位皇帝而修建陵墓的历史可能性。当满足特定条件时,统治者可以选择在维也纳的圣斯蒂芬大教堂附近,斥资为已故的开国皇帝建造一座宏伟的陵墓纪念碑,以彰显王朝的传承与荣耀;或者选择放弃这一工程,但可能面临声望上的损失。
完整事件代码:
flavor_hab.38 = { #The Tomb of the First Emperor
type = country_event
title = flavor_hab.38.title
desc = flavor_hab.38.desc
fire_only_once = yes
historical_info = flavor_hab.38.historical_info
dynamic_historical_event = {
tag = HAB
from = 1337.1.1
to = 1836.1.1
monthly_chance = 1
}
immediate = {
ruler = {
save_scope_as = target_ruler
}
var:austria_first_emperor_variable ?= {
save_scope_as = first_emperor
}
}
trigger = {
has_ruler = yes
has_variable = austria_first_emperor_variable
var:austria_first_emperor_variable ?= {
is_alive = no
}
owns = location:vienna
location:vienna = {
any_work_of_art_in_location = {
this = work_of_art:st_stephens_cathedral
}
}
}
option = {
name = flavor_hab.38.a
change_gold_effect = { scale = -8 }
location:vienna = {
create_art = {
quality = 85
type = work_of_art_type:monument
key = tomb_of_the_first_emperor
}
}
}
option = {
name = flavor_hab.38.b
add_prestige = prestige_mild_penalty
}
after = {
remove_variable = austria_first_emperor_variable
}
}