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

26 lines
651 B
JavaScript
Raw Normal View History

2015-09-21 17:52:15 +00:00
import {armor as baseArmor} from './sets/base';
2015-09-27 14:59:29 +00:00
2015-09-21 17:52:15 +00:00
import {armor as warriorArmor} from './sets/warrior';
import {armor as rogueArmor} from './sets/rogue';
import {armor as healerArmor} from './sets/healer';
import {armor as wizardArmor} from './sets/wizard';
2015-09-27 14:59:29 +00:00
2015-09-21 17:52:15 +00:00
import {armor as specialArmor} from './sets/special';
import {armor as mysteryArmor} from './sets/mystery';
import {armor as armoireArmor} from './sets/armoire';
let armor = {
base: baseArmor,
2015-09-27 14:59:29 +00:00
2015-09-21 17:52:15 +00:00
warrior: warriorArmor,
rogue: rogueArmor,
wizard: wizardArmor,
healer: healerArmor,
2015-09-27 14:59:29 +00:00
2015-09-21 17:52:15 +00:00
special: specialArmor,
mystery: mysteryArmor,
armoire: armoireArmor,
};
2016-03-03 03:36:27 +00:00
module.exports = armor;