Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// postures.js

(function () {
  /*global adventurejs A*/

  var p = adventurejs.Dictionary.prototype;

  /**
   * Postures that can be applied to Characters.
   * @var {Object} adventurejs.Dictionary#postures
   */
  p.postures = {
    cling: {
      gerund: "clinging",
    },
    hang: {
      gerund: "hanging",
    },
    grip: {
      gerund: "gripping",
    },
    kneel: {
      gerund: "kneel",
    },
    lie: {
      gerund: "lying",
    },
    sit: {
      gerund: "sitting",
    },
    stand: {
      gerund: "standing",
    },
  };
})();