The dungeon's name and background

48 hours starting now. 20 levels.

Re: The dungeon's name and background

Postby Bandigerbolls » Mon Jul 06, 2009 12:42 pm

Oh I wasn't suggesting a name change. It's just that Ye Olde English hæten don't work for everyone's campaign, so some translated versions of the name in the Appendix might make the megadungeon more portable.
Bandigerbolls
 
Posts: 316
Joined: Fri Apr 17, 2009 7:14 pm

Re: The dungeon's name and background

Postby Bandigerbolls » Mon Jul 06, 2009 1:51 pm

Here is a little javascript random name generator. Many of the prefixes mean "sleeping" or "asleep" in various languages, and many suffixes mean "god". Just copy and paste into a plain text file and save it as "something.html"

Add as many prefixes and suffixes as you like to the arrays.

Most of the names will be awful, but I thought Zaspalbozh had a nice ring to it.

Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

   <head>
      <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
      <meta name="generator" content="Adobe GoLive">
      <title>Sleeping God Names</title>
      <script type="text/javascript">
      var prefix = new Array("Durm", "Tead", "Wusteloo", "Spava", "Spaki", "Sovende", "Nukkumi", "Alszik", "Zaspal", "Sover", "Jume", "Stri", "Pa", "Belek", "Car", "Mur", "Merd", "Farn", "Shi", "Ka", "Ku", "Czarno", "Pi", "Od", "En", "Io", "Du", "Tam");
      var suffix = new Array("nezeu", " Jumal", "zott", "bog", "boha", "gud", "isten", "el", " Jov", "marbi", "attis", "bozh", " Daj", "nac", "ammon", "li", "vash", "arsis", "orin", "in", "ki", "uzu", "annes", "muz", "muzi", "lil", "bel", "baal");
      
      function randomize(limit) {
      var m = limit + 1;
      var i = Math.round(m*Math.random());
      while ((i == m) || (i == 0)) {
        i = Math.round(m*Math.random());
      }
      return i;
      }

      function makeName() {
      var p = randomize(prefix.length) - 1;
      var s = randomize(suffix.length) - 1;
      return document.sleeper.sleepingGod.value = prefix[p] + suffix[s];
      }
      
      </script>
   </head>

   <body bgcolor="#ffffff">
      <form id="sleeper" action="" method="get" name="sleeper">
         <input type="text" name="sleepingGod" readonly size="40" maxlength="40"><button name="newName" type="button" onClick="return makeName();">Generate Random Name</button>
      </form>
      <p></p>
   </body>

</html>
Bandigerbolls
 
Posts: 316
Joined: Fri Apr 17, 2009 7:14 pm

Previous

Return to MEGADUNGEON SLAM

Who is online

Users browsing this forum: No registered users and 0 guests

cron