Pre-release
Adventure.js Docs Downloads
Score: 0 Moves: 0
// pretty_exit_prepositions.js

(function () {
  /*global adventurejs A*/
  "use strict";

  var p = adventurejs.Dictionary.prototype;

  /**
   * Pretty exit prepositions are used to describe leaving a nested position.
   * @var {Object} adventurejs.Dictionary#pretty_exit_prepositions
   */
  p.pretty_exit_prepositions = {
    behind: "out from behind",
    in: "out of",
    on: "off of",
    under: "out from under",
    over: "down from over",
    between: "out from between",
    beside: "from beside",
    across: "from across",
    attached: "from where it's attached to",
    through: "from",
  };
})();