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
|
|
|
|
2024-05-15 14:51:09 +00:00
|
|
|
import armoire from './sets/armoire';
|
2019-10-08 14:57:10 +00:00
|
|
|
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
|
|
|
|
2015-10-01 00:04:09 +00:00
|
|
|
special: specialHead,
|
2015-09-29 22:53:32 +00:00
|
|
|
mystery: mysteryHead,
|
2024-05-15 14:51:09 +00:00
|
|
|
get armoire () {
|
|
|
|
|
return armoire.head;
|
|
|
|
|
},
|
2015-09-21 17:52:15 +00:00
|
|
|
};
|
|
|
|
|
|
2019-10-01 15:53:48 +00:00
|
|
|
export default head;
|