Random Character Names

randomNames

Name pools the randomize button draws from in character creation.

In the editor

"Names used for the randomize button in character creation"

Editor location
Files → Other → Advanced → Random Character Names
Editor type
Edit in Studio + View JSON
Size limits

No character-length caps for this section.

Schema

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

Example

json
{
  "randomNames": {
    "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.

Fields

male

male — the pool of names the engine draws from for male characters. An array of strings; include a surname within an entry (e.g. "Arden Voss") if you want one.

female

female — the pool of names the engine draws from for female characters. An array of strings; include a surname within an entry if you want one.