D&D-Loot

A NodeJS module for generating
encounter loot in Dungeons and Dragons.

import { Hoard } from "dnd-loot";

const level = 15;
const loot = new Hoard(level);

About

Can generate loot for both Indivual and Hoard encounters. This includes money, items and magic items.

Why?

Every now and then, when your party is rolling for loot in D&D, you think to yourself: Man this is taking forever...
To solve that problem, I decided to automate the process. This module is the result of that.