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:
Is it possibile to split, for example, a generic "italic pantheon" into other sub-divided pantheons?
I mean to get something like:
Many thanks!!
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!!