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

ModsNewbie

Sergeant
14 Badges
Jun 13, 2019
64
2
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Way of Life
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Conclave
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Holy Fury
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Sons of Abraham
If you read the wiki, it says Great works that are considered as Burial Grounds will trigger an event on ruler's death for a burial ceremony.

However, I found out that the only burial ground option for Christians is the Grand Mausoleum, which is pretty useless if you ask me.

I was actually shocked when the Great Cathedral, the great works that literally contains Catacombs feature, is NOT considered as Burial Ground.

Can anyone help me create a mod to change this? If I want to categorize the Cathedral as burial ground, what do I have to do?

Please help!
 
If you read the wiki, it says Great works that are considered as Burial Grounds will trigger an event on ruler's death for a burial ceremony.

However, I found out that the only burial ground option for Christians is the Grand Mausoleum, which is pretty useless if you ask me.

I was actually shocked when the Great Cathedral, the great works that literally contains Catacombs feature, is NOT considered as Burial Ground.

Can anyone help me create a mod to change this? If I want to categorize the Cathedral as burial ground, what do I have to do?

Please help!
Easy, you need to add the burial_groud flag into the flag list for the wonder you want to.
ex. for cathedral in common/wonders/00_wonders.txt
Code:
# 1A. Cathedral
wonder_cathedral = {
    picture = GFX_wonder_strip_cathedral
    model = wonder_cathedral
    potential = {
        religion_group = christian
    }
    active = {
        ROOT = {
            religion_group = christian
        }
    }
    flags = {
        holy_building
        inspires_piety
        is_destructible
        cost_medium
        gives_artifact
        gives_artifact_bells
    }