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

unmerged(289986)

Private
1 Badges
Mar 22, 2011
12
0
www.ilgrandeiverno.net
  • Rome Gold
Hello. Is it possible to create "subcategories" under main religion types? I explain better with an example. The following is the "normal" hellenistic pantheon. Note that it has roman, greek and egyptian pantheon under itself:

Code:
hellenistic_pantheon = {
	roman_pantheon = {
		color = { 0.7 0.0 0.0 }
	}
	greek_pantheon = {
		color = { 0.6 0.2 0.2 }
	}
	egyptian_pantheon = {
		color = { 1.0 0.0 0.0 }
	}
}


Is it possibile to split, for example, a generic "italic pantheon" into other sub-divided pantheons?
I mean to get something like:

Code:
hellenistic_pantheon = {
	italic_pantheon = {
	        roman_pantheon = {
		    color = { 0.7 0.0 0.0 }		
		}
		latin_pantheon = {
		    color = { 0.7 0.1 0.1 }			
		}
		etruscan_pantheon = {
		    color = { 0.7 0.2 0.2 }			
		}
	}
	greek_pantheon = {
		color = { 0.6 0.2 0.2 }
	}
	egyptian_pantheon = {
		color = { 1.0 0.0 0.0 }
	}
}

Many thanks!!