mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 04:59:40 +00:00
18 lines
427 B
JavaScript
18 lines
427 B
JavaScript
|
|
import handleTwoHanded from './handleTwoHanded';
|
||
|
|
import predictableRandom from './predictableRandom';
|
||
|
|
import crit from './crit';
|
||
|
|
import randomDrop from './randomDrop';
|
||
|
|
import autoAllocate from './autoAllocate';
|
||
|
|
import updateStats from './updateStats';
|
||
|
|
import ultimateGear from './ultimateGear';
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
handleTwoHanded,
|
||
|
|
predictableRandom,
|
||
|
|
crit,
|
||
|
|
randomDrop,
|
||
|
|
autoAllocate,
|
||
|
|
updateStats,
|
||
|
|
ultimateGear,
|
||
|
|
};
|