Help:Orasian Names: Difference between revisions
Created page with "== Orathic Name Generator == To create an Orasian name: # Select or roll 1d12 on each table below. # Combine a '''Core Element''' with a '''Modifier''' to form a symbolic name. # Optionally, add a ceremonial suffix (e.g., ''of Zarkesh Hollow'', ''of the Deep Vault'') for formal titles. === Table A: Core Elements === {| class="wikitable" ! d12 !! Core Element !! Meaning |- | 1 || '''Thar''' || Stone / Foundation |- | 2 || '''Jek''' || Echo / Voice of the Past |- | 3 ||..." |
No edit summary |
||
Line 1: | Line 1: | ||
<div id="orathic-name"></div> | |||
<button onclick="generateOrathicName()">Generate Orasian Name</button> | |||
<script> | |||
const coreElements = ["Thar", "Jek", "Morak", "Orak", "Surn", "Tahrûn", "Zhen", "Voll", "Tahr", "Kel", "Valh", "Oskaet"]; | |||
const modifiers = ["Lak", "Thak", "Hael", "Karun", "Neh", "Vak", "Zal", "Un", "Uth", "Kesh", "Drohn", "Mhal"]; | |||
function generateOrathicName() { | |||
const core = coreElements[Math.floor(Math.random() * coreElements.length)]; | |||
const mod = modifiers[Math.floor(Math.random() * modifiers.length)]; | |||
document.getElementById("orathic-name").innerText = core + "-" + mod; | |||
} | |||
</script> | |||
== Orathic Name Generator == | == Orathic Name Generator == | ||