9 lines
307 B
JavaScript
9 lines
307 B
JavaScript
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`];
|