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

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

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

    descriptions: { look: "$(We) don't see any exit to the northwest." },
  });
})();