Begin working on a custom DOTDUNGEON config block

This commit is contained in:
Oliver-Akins 2024-01-07 00:55:13 -07:00
parent 07bebdba4d
commit c273111004
3 changed files with 16 additions and 4 deletions

9
module/config.mjs Normal file
View file

@ -0,0 +1,9 @@
export const DOTDUNGEON = {};
DOTDUNGEON.statDice = [ `d4`, `d6`, `d8`, `d10`, `d12`, `d20` ];
DOTDUNGEON.trainingLevels = [``, `locked`, `+2`, `+4`];
DOTDUNGEON.damageTypes = [ `slashing`, `piercing`, `smashing`, `gun`, `neon`, `shadow`, `solar` ];
DOTDUNGEON.ammoTypes = [`quivers`, `mags`, `cells`];