• 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.

grigorii

Captain
43 Badges
Jul 9, 2014
346
140
  • Crusader Kings II: Charlemagne
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Mare Nostrum
  • 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
  • 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
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Legacy of Rome
  • Stellaris: Megacorp
  • Crusader Kings II: Monks and Mystics
  • Age of Wonders III
  • Crusader Kings II: Jade Dragon
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Stellaris: Distant Stars
  • Shadowrun Returns
  • Hearts of Iron IV: Colonel
  • Crusader Kings II: Holy Fury
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Cadet
  • Stellaris Sign-up
  • Stellaris
  • 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
  • Stellaris - Path to Destruction bundle
Mending the Schism was written when Nestorian was considered Orthodox heresy. Now it is not, but instead we have Paulician heresy that should be able to mend the Schism. Yet in this case the Catholic faith would not become heresy of Paulician!!!

Check schism_events.txt out:

Code:
# The Schism Mended
narrative_event = {
    id = LoR.210
    title = EVTNAMELoR.210
    desc = EVTDESCLoR.210
   
    picture = GFX_evt_icon
   
    is_triggered_only = yes
   
    option = {
        name = EVTOPTALoR.200

        if = {
            limit = { religion = orthodox }
            set_parent_religion = { religion = catholic parent = orthodox }
        }
        if = {
            limit = { religion = nestorian }
            set_parent_religion = { religion = catholic parent = nestorian }
        }
        if = {
            limit = { religion = monothelite }
            set_parent_religion = { religion = catholic parent = monothelite }
        }
        if = {
            limit = { religion = iconoclast }
            set_parent_religion = { religion = catholic parent = iconoclast }
        }

        set_global_flag = schism_mended
        give_nickname = nick_the_saint
        hidden_tooltip = {
            any_playable_ruler = {
                limit = {
                    religion = catholic
                    controls_religion = no
                }
                narrative_event = { id = LoR.211 }
            }
        }
    }
}
 
Upvote 0