Pull out gear into separate modules

This commit is contained in:
Blade Barringer
2015-11-16 17:29:13 -06:00
parent 2b8cf178b0
commit 639dfb31d7
29 changed files with 3022 additions and 5567 deletions

View File

@@ -0,0 +1,29 @@
import {cloneDeep} from 'lodash';
import {shield as baseShield} from './sets/base';
import {shield as healerShield} from './sets/healer';
import {weapon as rogueWeapon} from './sets/rogue';
import {shield as warriorShield} from './sets/warrior';
import {shield as wizardShield} from './sets/wizard';
import {shield as armoireShield} from './sets/armoire';
import {shield as mysteryShield} from './sets/mystery';
import {shield as specialShield} from './sets/special';
let rogueShield = cloneDeep(rogueWeapon);
let shield = {
base: baseShield,
warrior: warriorShield,
rogue: rogueShield,
wizard: wizardShield,
healer: healerShield,
special: specialShield,
mystery: mysteryShield,
armoire: armoireShield,
};
export default shield;