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

26 lines
667 B
JavaScript
Raw Normal View History

2019-10-08 14:57:10 +00:00
import { armor as baseArmor } from './sets/base';
2015-09-27 14:59:29 +00:00
2019-10-08 14:57:10 +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
2019-10-08 14:57:10 +00:00
import { armor as specialArmor } from './sets/special';
import { armor as mysteryArmor } from './sets/mystery';
import { armor as armoireArmor } from './sets/armoire';
2015-09-21 17:52:15 +00:00
2019-10-08 14:57:10 +00:00
const armor = {
2015-09-21 17:52:15 +00:00
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,
};
2019-10-01 15:53:48 +00:00
export default armor;