Random Character Names (Advanced)

randomNames

Name pools the engine draws from when generating character names. Used by the randomize button in character creation and by AI-generated NPC names.

In the editor

"Names used for the randomize button in character creation"

Editor location
Other → Advanced → Random Character Names
Editor type
JSON only
Size limits

No character-length caps for this section. See the validation reference for the complete table.

Last updated

Schema

json
{
  "randomNames": {
    "male": [
      "string"
    ],
    "female": [
      "string"
    ]
  }
}

Example

json
{
  "male": ["Arden", "Bram", "Corvin", "Dalen", "Ewin", "Faros", "Greld", "Holt", "Idric", "Jarren"],
  "female": ["Aela", "Bryn", "Cara", "Deva", "Erin", "Fael", "Gwen", "Hale", "Isra", "Jora"]
}

Define separate lists for male and female. No gameplay effect. Use names that match your world’s phonetic register. Keep at least 10 per gender to avoid repetition. If you want surnames, include them within the male / female entries (e.g. "Arden Voss"); there is no separate last array — it appeared in earlier wiki examples but is not in the schema.