A command-line 5e NPC stats generator in python, when you need to bang out base stats for a few NPCs in a hurry.
I made this tool to quickly whip up a NPC stats block as a quick fix in case your players tend to latch on to throwaway NPCs... :)
TODO: add stats limiter (weak, medium, strong, epic) option
This is the secret sauce of the generator:
stats = sorted(([sum(sorted([random.randint(1,6) for _ in range (4)])[1:]) for _ in range(6)]),reverse=True)
10000 iterations:
and a pretty bell-curve (Standard Deviation)