itemslot.js 393 B

123456789101112131415161718
  1. class ItemSlot {
  2. };
  3. ItemSlot.Head = "head";
  4. ItemSlot.Face = "face";
  5. ItemSlot.Neck = "neck";
  6. ItemSlot.Shoulders = "shoulders";
  7. ItemSlot.Back = "Back";
  8. ItemSlot.Chest = "chest";
  9. ItemSlot.MainHand = "mainhand";
  10. ItemSlot.OffHand = "offhand";
  11. ItemSlot.Ring1 = "ring1";
  12. ItemSlot.Ring2 = "ring2";
  13. ItemSlot.Waist = "waist";
  14. ItemSlot.Legs = "legs";
  15. ItemSlot.Feet = "feet";
  16. module.exports = ItemSlot;