mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
Pull out gear into separate modules
This commit is contained in:
25
common/script/content/gear/weapon.js
Normal file
25
common/script/content/gear/weapon.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import {weapon as baseWeapon} from './sets/base';
|
||||
|
||||
import {weapon as healerWeapon} from './sets/healer';
|
||||
import {weapon as rogueWeapon} from './sets/rogue';
|
||||
import {weapon as warriorWeapon} from './sets/warrior';
|
||||
import {weapon as wizardWeapon} from './sets/wizard';
|
||||
|
||||
import {weapon as armoireWeapon} from './sets/armoire';
|
||||
import {weapon as mysteryWeapon} from './sets/mystery';
|
||||
import {weapon as specialWeapon} from './sets/special';
|
||||
|
||||
let weapon = {
|
||||
base: baseWeapon,
|
||||
|
||||
warrior: warriorWeapon,
|
||||
rogue: rogueWeapon,
|
||||
wizard: wizardWeapon,
|
||||
healer: healerWeapon,
|
||||
|
||||
special: specialWeapon,
|
||||
mystery: mysteryWeapon,
|
||||
armoire: armoireWeapon,
|
||||
};
|
||||
|
||||
export default weapon;
|
||||
Reference in New Issue
Block a user