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

Sanderoth

Corporal
52 Badges
May 6, 2016
34
0
  • Surviving Mars: Digital Deluxe Edition
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Surviving Mars
  • Age of Wonders III
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Crusader Kings II: Reapers Due
  • Stellaris: Distant Stars
  • Surviving Mars: First Colony Edition
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Surviving Mars: First Colony Edition
  • Stellaris: Nemesis
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Stellaris: Necroids
  • Europa Universalis IV
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Cities: Skylines
  • Stellaris
  • Crusader Kings II: Legacy of Rome
  • 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
  • Magicka
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Crusader Kings II: Jade Dragon
  • Stellaris: Synthetic Dawn
Hello,

So I was thinking about the split of Norse paganism and Germanic paganism in CK2+. I was curious as to the thoughts of people out there as to whether or not you would like to see a game rule option for unifying them back into one religion like in the normal CK2. If this even possible?

Apologies if this has been brought up before, I couldn't find anything game rule related to this when I searched.

Cheers,
S
 
Hmm never thought about it frankly, as I like diversity and was quite happy when it was first split.
It could potentially be reunited via a game rule quite easily, in a similar way to how the "Ancient Religion" ones work.
But if many people actually want it I don't know. I personally would not mind, but I don't need it.
 
It would be neat to see some cultural differences, i.e the Anglo-Saxons/Saxons/Germans refer to Odin as Woden/Wodan/Wotan etc.
That's... Already a thing. It's a small part of why they're split from the Norse. Unfortunately we can't localize deities by culture like you can titles.
 
It would be cool if when the Germanic/Nordic reform, rulers of the other faith would get the option to join the new faith. Since the two pantheons are similar it wouldn't be that hard to justify.
 
That can only sound like a good idea if you have no idea how much work that would need.

I mean it shouldn't be too hard should it? Just create a couple of events similar to the schism mending events (schism events, event id LoR.210 and LoR.211) for each of Norse or Germanic which make the other religion the parent religion, edit the event which occurs when a religion is reformed (on_action, event id = 670) to fire the new event which makes the other a heresy?

Shouldn't something like this work?
### German/Norse combine when reformed

# The Germanic/Norse reform
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 = { has_global_flag = german_reformation }
set_parent_religion = { religion = norse_pagan parent = german_pagan_reformed }
# set_parent_religion = { religion = norse_pagan_reformed parent = german_pagan_reformed }
}
if = {
limit = { has_global_flag = norse_reformation }
set_parent_religion = { religion = german_pagan parent = norse_pagan_reformed }
# set_parent_religion = { religion = german_pagan_reformed parent = norse_pagan_reformed }
}

hidden_tooltip = {
if = {
limit = { has_global_flag = german_reformation }
any_playable_ruler = {
limit = {
religion = norse_pagan
controls_religion = no
}
narrative_event = { id = LoR.211 }
}
}
if = {
limit = { has_global_flag = norse_reformation }
any_playable_ruler = {
limit = {
religion = german_pagan
controls_religion = no
}
narrative_event = { id = LoR.211 }
}
}
}
}
}

# Convert or Not?
narrative_event = {
id = LoR.211
title = EVTNAMELoR.210
desc = EVTDESCLoR.210

picture = GFX_evt_icon


is_triggered_only = yes

option = { # Yes
name = EVTOPTALoR.211
ai_chance = { factor = 75 }
religion = FROM
any_courtier = {
limit = {
OR = {
AND = {
has_global_flag = german_reformation
religion = norse_pagan
}
AND = {
has_global_flag = norse_reformation
religion = german_pagan
}
}
liege = { character = ROOT }
}
religion = FROM
}
capital_scope = {
religion = FROM
}
}
option = { # No
name = EVTOPTBLoR.211
ai_chance = { factor = 25 }
}
}
(stuff in red is event id or localisation stuff which needs changing, the event id in green needs to to be the same in both cases)

Dunno what not having the flag for reformation would do though. It might be that it'd make, e.g. Norse a Germanic heresy, but Norse could still be reformed? The idea of making the reformed versions of the non-reforming religion a heresy (yellow, hashed out lines) might sort this out, though it could lead to some weirdness where a minority unreformed pagan reforms religion and becomes the parent of the original, only to become a heresy again due to being a minority?
 
I mean it shouldn't be too hard should it? Just create a couple of events similar to the schism mending events (schism events, event id LoR.210 and LoR.211) for each of Norse or Germanic which make the other religion the parent religion, edit the event which occurs when a religion is reformed (on_action, event id = 670) to fire the new event which makes the other a heresy?

Shouldn't something like this work?
### German/Norse combine when reformed

# The Germanic/Norse reform
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 = { has_global_flag = german_reformation }
set_parent_religion = { religion = norse_pagan parent = german_pagan_reformed }
# set_parent_religion = { religion = norse_pagan_reformed parent = german_pagan_reformed }
}
if = {
limit = { has_global_flag = norse_reformation }
set_parent_religion = { religion = german_pagan parent = norse_pagan_reformed }
# set_parent_religion = { religion = german_pagan_reformed parent = norse_pagan_reformed }
}

hidden_tooltip = {
if = {
limit = { has_global_flag = german_reformation }
any_playable_ruler = {
limit = {
religion = norse_pagan
controls_religion = no
}
narrative_event = { id = LoR.211 }
}
}
if = {
limit = { has_global_flag = norse_reformation }
any_playable_ruler = {
limit = {
religion = german_pagan
controls_religion = no
}
narrative_event = { id = LoR.211 }
}
}
}
}
}

# Convert or Not?
narrative_event = {
id = LoR.211
title = EVTNAMELoR.210
desc = EVTDESCLoR.210

picture = GFX_evt_icon


is_triggered_only = yes

option = { # Yes
name = EVTOPTALoR.211
ai_chance = { factor = 75 }
religion = FROM
any_courtier = {
limit = {
OR = {
AND = {
has_global_flag = german_reformation
religion = norse_pagan
}
AND = {
has_global_flag = norse_reformation
religion = german_pagan
}
}
liege = { character = ROOT }
}
religion = FROM
}
capital_scope = {
religion = FROM
}
}
option = { # No
name = EVTOPTBLoR.211
ai_chance = { factor = 25 }
}
}
(stuff in red is event id or localisation stuff which needs changing, the event id in green needs to to be the same in both cases)

Dunno what not having the flag for reformation would do though. It might be that it'd make, e.g. Norse a Germanic heresy, but Norse could still be reformed? The idea of making the reformed versions of the non-reforming religion a heresy (yellow, hashed out lines) might sort this out, though it could lead to some weirdness where a minority unreformed pagan reforms religion and becomes the parent of the original, only to become a heresy again due to being a minority?

"just".
 
It takes time, and like any code, writing the code and happy testing is about 25% of the total work.
I take that the remaining 75% is un-happy testing, the banging of ones head on a hard surface, and lots of screaming "WHY WON'T YOU WORK" at the screen followed by some light weeping?
 
In fact, pagan religious groups can be removed. The pagan religions, which are close to each other like Norse and Germanic, can be placed in separate groups.

For example,

Germanic Group

Nordic
West Germanic
Frankish
When reforms are made, other sects may become heretic.
Of course I did not have much information about pagan religions. I do not know if it is possible for every religion. There is not much information about old religions. So it's not easy to get it right.
 
them being split is one of my main reasons I don't like ck2+
 
In fact, pagan religious groups can be removed. The pagan religions, which are close to each other like Norse and Germanic, can be placed in separate groups.

For example,

Germanic Group

Nordic
West Germanic
Frankish
When reforms are made, other sects may become heretic.
Of course I did not have much information about pagan religions. I do not know if it is possible for every religion. There is not much information about old religions. So it's not easy to get it right.
Not going to happen, sorry
 
them being split is one of my main reasons I don't like ck2+
Different strokes for different folks. Though... You do know what subforum you're in right?
 
Different strokes for different folks. Though... You do know what subforum you're in right?
Indeed. But if they made it an option I might give it a chance again. Also it appeared as the most recently updated post on the main page.