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

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

  /**
   * @augments {adventurejs.Exit}
   * @class global_down
   * @ajsconstruct MyGame.createGlobalExits({ "name": "global_down", [...] });
   * @ajsconstructedby adventurejs.Game#createGlobalExits
   * @hideconstructor
   * @ajsinstanceof Exit
   * @ajsmodifiedby adventurejs.Game#setGlobalDescriptions
   * @ajsnavheading GlobalExits
   * @ajsnode game.world.global_down
   * @tutorial NextSteps_GlobalScenery
   * @summary A global exit.
   * @ajsglobal GlobalExit
   */
  A.GlobalAssets.Exits.push({
    direction: "down",

    descriptions: { look: "$(We) don't see any way to go down from here." },
  });
})();