RPG Generators

Welcome to my RPG generators, these are free to use for anyone.
The current generators are along the left side.

The goal is for every generator to be a deterministic generator, but also allowing "overridden" input for some of the values.
The second goal is to expose some of the internal values from the generator to allow more data driven apps, for example: The character/npc generator will expose data looking like


{
  "species": 'elf',
  "name": 'ralph',
  "gender": 'agender',
}

Random Generation Information/Definitions

pseudorandom:

A pseudo random number/generator is one that is "random" but uses some kind of generation that can make it deterministic.

deterministic:

A system/function that, given the same inputs, gives the same output, this is the opposite of stocastic systems.

seed:

A number or string, used as input to a pseudo random number generator that reproduces the same output.

All this together means that, these generators expose a "seed" which allows you to share the current output or get it again later if you want.

Contact Info