Browse Source

Crouching message

Reddo 5 năm trước cách đây
mục cha
commit
f25698c2f7
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      app/Elements/Modules/AppearanceHandler.ts

+ 6 - 0
app/Elements/Modules/AppearanceHandler.ts

@@ -102,6 +102,12 @@ module Elements.AppearanceHandler {
         // TODO: Check if has a specific look to it. Optional. Hard to do.
         // Examples: "You are dressed casually like a woman.", "You are wearing formal women's clothing." etc.
 
+
+        // Current Stance
+        if (player.stance == PersonStance.ALLFOURS) {
+            presentation.add(Say.PARAGRAPH_BREAK, "You are currently crouching.");
+        }
+
         await print(presentation);
     }
 }