Pre-release
Adventure.js Docs Downloads
Score: 0 Moves: 0
//GlobalStarboardWall.js
(function () {
  /*global adventurejs A*/
  "use strict";

  /**
   * @ajsnode game.world.global_starboard_wall
   * @augments {adventurejs.Wall}
   * @class global_starboard_wall
   * @ajsconstruct MyGame.createGlobalWalls({ "name": "global_starboard_wall", [...] });
   * @ajsconstructedby adventurejs.Game#createGlobalWalls
   * @hideconstructor
   * @ajsinstanceof Wall
   * @ajsnavheading GlobalWalls
   * @summary A global wall.
   * @tutorial NextSteps_GlobalScenery
   */
  A.GlobalAssets.Walls.push({
    direction: "starboard",
    descriptions: {
      look: "$(We) see nothing special about the starboard wall. ",
    },
    enabled: false,
  });
})();