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

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

  /**
   * @augments {adventurejs.Exit}
   * @class global_southwest
   * @ajsconstruct MyGame.createGlobalExits({ "name": "global_southwest", [...] });
   * @ajsconstructedby adventurejs.Game#createGlobalExits
   * @hideconstructor
   * @ajsinstanceof Exit
   * @ajsmodifiedby adventurejs.Game#setGlobalDescriptions
   * @ajsnavheading GlobalExits
   * @ajsnode game.world.global_southwest
   * @tutorial NextSteps_GlobalScenery
   * @summary A global exit.
   * @ajsglobal GlobalExit
   */
  A.GlobalAssets.Exits.push({
    class: "Exit",
    direction: "southwest",
    descriptions: {
      look: "$(We) $(don't) see any passage southwest. ",
      travel: "$(We) can't go southwest from here. ",
    },
  });
})();