mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
30 lines
781 B
JavaScript
30 lines
781 B
JavaScript
import cloneDeep from 'lodash/cloneDeep';
|
|
|
|
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';
|
|
|
|
const rogueShield = cloneDeep(rogueWeapon);
|
|
|
|
const shield = {
|
|
base: baseShield,
|
|
|
|
warrior: warriorShield,
|
|
rogue: rogueShield,
|
|
wizard: wizardShield,
|
|
healer: healerShield,
|
|
|
|
special: specialShield,
|
|
mystery: mysteryShield,
|
|
armoire: armoireShield,
|
|
};
|
|
|
|
export default shield;
|