habitica/website/common/script/content/gear/head.js

26 lines
641 B
JavaScript
Raw Normal View History

2019-10-08 14:57:10 +00:00
import { head as baseHead } from './sets/base';
2015-09-27 14:59:29 +00:00
2019-10-08 14:57:10 +00:00
import { head as healerHead } from './sets/healer';
import { head as rogueHead } from './sets/rogue';
import { head as warriorHead } from './sets/warrior';
import { head as wizardHead } from './sets/wizard';
2015-09-23 00:58:18 +00:00
2019-10-08 14:57:10 +00:00
import { head as armoireHead } from './sets/armoire';
import { head as mysteryHead } from './sets/mystery';
import { head as specialHead } from './sets/special';
2015-09-29 22:53:32 +00:00
2019-10-08 14:57:10 +00:00
const head = {
2015-09-27 14:59:29 +00:00
base: baseHead,
2015-09-23 00:58:18 +00:00
warrior: warriorHead,
2015-09-27 14:53:43 +00:00
rogue: rogueHead,
2015-09-27 14:38:02 +00:00
wizard: wizardHead,
2015-09-27 14:47:59 +00:00
healer: healerHead,
2015-09-27 14:59:29 +00:00
special: specialHead,
2015-09-29 22:53:32 +00:00
mystery: mysteryHead,
2015-09-30 02:38:45 +00:00
armoire: armoireHead,
2015-09-21 17:52:15 +00:00
};
2019-10-01 15:53:48 +00:00
export default head;