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

26 lines
623 B
JavaScript
Raw Normal View History

2015-10-03 03:26:51 +00:00
import {head as baseHead} from './sets/base';
2015-09-27 14:59:29 +00:00
2015-09-27 14:47:59 +00:00
import {head as healerHead} from './sets/healer';
2015-09-27 14:53:43 +00:00
import {head as rogueHead} from './sets/rogue';
2015-09-23 00:58:18 +00:00
import {head as warriorHead} from './sets/warrior';
2015-09-27 14:38:02 +00:00
import {head as wizardHead} from './sets/wizard';
2015-09-23 00:58:18 +00:00
2015-09-30 02:38:45 +00:00
import {head as armoireHead} from './sets/armoire';
2015-09-29 22:53:32 +00:00
import {head as mysteryHead} from './sets/mystery';
import {head as specialHead} from './sets/special';
2015-09-29 22:53:32 +00:00
2015-09-21 17:52:15 +00:00
let 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;