Is there any way I can add historical saints to the saint list in-game?
Here's an example from my modding:
This will give the dead character a saintly portrait, the saint title, a bloodline and of course, the trait.
But he won't show up in the Saint-list - only characters who are canonized during a play-through do that thus far.
So is there any directory to where I can find said list and modify it? Or any kind of modifier I am missing?
Here's an example from my modding:
Code:
102527 = {
name = "Ólafr" # AKA: Saint Olaf 'the Holy' Haraldsson
dynasty = 499 # Yngling
dna = 0bcde0i0e00
properties = ue0aca000000000000
father = 102526 # Harald 'Grenske'
mother = 102501 # Asta Gudbrandsdatter
religion = norse_pagan
culture = norse
martial = 8
diplomacy = 4
intrigue = 6
stewardship = 7
trait = zealous
trait = tough_soldier
trait = brave
trait = diligent
trait = sturdy
trait = pirate
trait = ambitious
trait = holy_warrior
994.12.2 = {
birth = yes
}
998.1.1 = {
religion = catholic # Olaf Tryggvasson converts Ringerike
}
1015.1.1 = {
trait = baptized_by_bishop # baptized by Robert 'the Dane'
}
1019.1.1 = {
add_spouse = 100512 # Astrid Olofsdottir
}
1030.7.29 = { # battle of Stiklestad
death = {
death_reason = death_battle
}
}
1031.8.3 = { # locally canonized by bishop Grimkell
give_nickname = nick_the_holy
trait = beatified
effect_even_if_dead = {
set_special_character_title = BLESSED_TITLE
}
}
1164.7.29 = { # recognized by Pope Alexander III as a saint
remove_trait = beatified
trait = saint
effect_even_if_dead = {
remove_special_character_title = BLESSED_TITLE
set_special_character_title = SAINT_TITLE
}
create_bloodline = {
type = saint_olaf_the_holy
has_dlc = "Holy Fury"
}
}
}
This will give the dead character a saintly portrait, the saint title, a bloodline and of course, the trait.
But he won't show up in the Saint-list - only characters who are canonized during a play-through do that thus far.
So is there any directory to where I can find said list and modify it? Or any kind of modifier I am missing?
Last edited: