• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

0yvind

First Lieutenant
30 Badges
Mar 18, 2017
259
371
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Imperator: Rome
  • Crusader Kings II: Holy Fury
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Crusader Kings III
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
Is there any way I can add historical saints to the saint list in-game?

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: