Religion Generator Expanded (#955)

* Religion Generator Expanded

Adds some cool new options in Religion's Generator

* feat: small corrections

* chore: update version

---------

Co-authored-by: Azgaar <maxganiev@yandex.com>
This commit is contained in:
ZZWILLIAMXX 2023-07-06 13:42:07 -05:00 committed by GitHub
parent 3f25484367
commit 69e630b886
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 90 additions and 7 deletions

View file

@ -7851,7 +7851,7 @@
<script src="modules/cultures-generator.js?v=1.89.10"></script>
<script src="modules/burgs-and-states.js?v=1.89.07"></script>
<script src="modules/routes-generator.js"></script>
<script src="modules/religions-generator.js?v=1.89.15"></script>
<script src="modules/religions-generator.js?v=1.89.28"></script>
<script src="modules/military-generator.js"></script>
<script src="modules/markers-generator.js?v=1.89.23"></script>
<script src="modules/coa-generator.js"></script>

View file

@ -32,12 +32,16 @@ window.Religions = (function () {
being: [
"Ancestor",
"Ancient",
"Avatar",
"Brother",
"Champion",
"Chief",
"Council",
"Creator",
"Deity",
"Divine One",
"Elder",
"Enlightened Being",
"Father",
"Forebear",
"Forefather",
@ -45,17 +49,25 @@ window.Religions = (function () {
"God",
"Goddess",
"Guardian",
"Guide",
"Hierach",
"Lady",
"Lord",
"Maker",
"Master",
"Mother",
"Numen",
"Oracle",
"Overlord",
"Protector",
"Reaper",
"Ruler",
"Sage",
"Seer",
"Sister",
"Spirit",
"Supreme Being",
"Transcendent",
"Virgin"
],
animal: [
@ -71,36 +83,47 @@ window.Religions = (function () {
"Camel",
"Cat",
"Centaur",
"Cerberus",
"Chimera",
"Cobra",
"Cockatrice",
"Crane",
"Crocodile",
"Crow",
"Cyclope",
"Deer",
"Dog",
"Direwolf",
"Drake",
"Dragon",
"Eagle",
"Elephant",
"Elk",
"Falcon",
"Fox",
"Goat",
"Goose",
"Gorgon",
"Gryphon",
"Hare",
"Hawk",
"Heron",
"Hippogriff",
"Horse",
"Hound",
"Hyena",
"Ibis",
"Jackal",
"Jaguar",
"Kitsune",
"Kraken",
"Lark",
"Leopard",
"Lion",
"Manticore",
"Mantis",
"Marten",
"Minotaur",
"Moose",
"Mule",
"Narwhal",
@ -109,8 +132,10 @@ window.Religions = (function () {
"Panther",
"Pegasus",
"Phoenix",
"Python",
"Rat",
"Raven",
"Roc",
"Rook",
"Scorpion",
"Serpent",
@ -129,7 +154,8 @@ window.Religions = (function () {
"Wolf",
"Wolverine",
"Worm",
"Wyvern"
"Wyvern",
"Yeti"
],
adjective: [
"Aggressive",
@ -146,6 +172,7 @@ window.Religions = (function () {
"Brutal",
"Burning",
"Calm",
"Celestial",
"Cheerful",
"Crazy",
"Cruel",
@ -157,6 +184,10 @@ window.Religions = (function () {
"Divine",
"Dying",
"Eternal",
"Ethernal",
"Empyreal",
"Enigmatic",
"Enlightened",
"Evil",
"Explicit",
"Fair",
@ -177,7 +208,9 @@ window.Religions = (function () {
"Honest",
"Huge",
"Hungry",
"Illustrious",
"Immutable",
"Ineffable",
"Infallible",
"Inherent",
"Last",
@ -190,31 +223,46 @@ window.Religions = (function () {
"Main",
"Major",
"Marine",
"Mythical",
"Mystical",
"Naval",
"New",
"Noble",
"Old",
"Otherworldly",
"Patient",
"Peaceful",
"Pregnant",
"Prime",
"Proud",
"Pure",
"Radiant",
"Resplendent",
"Sacred",
"Sacrosanct",
"Sad",
"Scary",
"Secret",
"Selected",
"Serene",
"Severe",
"Silent",
"Sleeping",
"Slumbering",
"Sovereign",
"Strong",
"Sunny",
"Superior",
"Supernatural",
"Sustainable",
"Transcendent",
"Transcendental",
"Troubled",
"Unearthly",
"Unfathomable",
"Unhappy",
"Unknown",
"Unseen",
"Waking",
"Wild",
"Wise",
@ -282,26 +330,61 @@ window.Religions = (function () {
"Black",
"Blue",
"Bright",
"Bronze",
"Brown",
"Coral",
"Crimson",
"Dark",
"Emerald",
"Golden",
"Green",
"Grey",
"Indigo",
"Lavender",
"Light",
"Magenta",
"Maroon",
"Orange",
"Pink",
"Plum",
"Purple",
"Red",
"Ruby",
"Sapphire",
"Teal",
"Turquoise",
"White",
"Yellow"
]
};
const forms = {
Folk: {Shamanism: 2, Animism: 2, "Ancestor worship": 1, Polytheism: 2},
Organized: {Polytheism: 5, Dualism: 1, Monotheism: 4, "Non-theism": 1},
Cult: {Cult: 1, "Dark Cult": 1},
Heresy: {Heresy: 1}
Folk: {
Shamanism: 4,
Animism: 4,
Polytheism: 4,
Totemism: 2,
Druidism: 1,
"Ancestor Worship": 1,
"Nature Worship": 1
},
Organized: {
Polytheism: 14,
Monotheism: 12,
Dualism: 6,
Pantheism: 6,
"Non-theism": 4,
Henotheism: 1,
Panentheism: 1
},
Cult: {
Cult: 2,
"Dark Cult": 2,
Sect: 1
},
Heresy: {
Heresy: 1
}
};
const namingMethods = {

View file

@ -1,7 +1,7 @@
"use strict";
// version and caching control
const version = "1.89.27"; // generator version, update each time
const version = "1.89.28"; // generator version, update each time
{
document.title += " v" + version;