habitica-self-host/website/common/script/content/gear/shield.js

30 lines
781 B
JavaScript
Raw Normal View History

import cloneDeep from 'lodash/cloneDeep';
2015-09-21 17:52:15 +00:00
2019-10-08 14:57:10 +00:00
import { shield as baseShield } from './sets/base';
2015-09-27 14:59:29 +00:00
2019-10-08 14:57:10 +00:00
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';
2015-09-23 00:58:18 +00:00
2019-10-08 14:57:10 +00:00
import { shield as armoireShield } from './sets/armoire';
import { shield as mysteryShield } from './sets/mystery';
import { shield as specialShield } from './sets/special';
2015-09-29 22:53:32 +00:00
2019-10-08 14:57:10 +00:00
const rogueShield = cloneDeep(rogueWeapon);
2015-09-29 17:20:57 +00:00
2019-10-08 14:57:10 +00:00
const shield = {
2015-09-27 14:59:29 +00:00
base: baseShield,
2015-09-23 00:58:18 +00:00
warrior: warriorShield,
2015-09-27 14:53:43 +00:00
rogue: rogueShield,
2015-09-27 14:38:02 +00:00
wizard: wizardShield,
2015-09-27 14:47:59 +00:00
healer: healerShield,
2015-09-27 14:59:29 +00:00
special: specialShield,
2015-09-29 22:53:32 +00:00
mystery: mysteryShield,
2015-09-30 02:38:45 +00:00
armoire: armoireShield,
2015-09-21 17:52:15 +00:00
};
2019-10-01 15:53:48 +00:00
export default shield;