mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 21:27:23 +01:00
18 lines
425 B
JavaScript
18 lines
425 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';
|
|
|
|
export default {
|
|
handleTwoHanded,
|
|
predictableRandom,
|
|
crit,
|
|
randomDrop,
|
|
autoAllocate,
|
|
updateStats,
|
|
ultimateGear,
|
|
};
|