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

  /**
   * @ajsnode game.world.global_stars
   * @augments {adventurejs.Scenery}
   * @class global_stars
   * @ajsconstruct MyGame.createGlobalScenery({ "name": "global_stars", [...] });
   * @ajsconstructedby adventurejs.Game#createGlobalScenery
   * @hideconstructor
   * @ajsinstanceof Scenery
   * @ajsmodifiedby adventurejs.Game#setGlobalDescriptions
   * @ajsnavheading GlobalScenery
   * @tutorial NextSteps_GlobalScenery
   * @summary A global scenery object.
   * @ajsglobal GlobalScenery
   */
  A.GlobalAssets.Scenery.push({
    name: "stars",
    synonyms: ["star", "stars"],
    //singlePluralPairs: [["star","stars"]],
    descriptions: { look: "All the stars like grains of sand. " },
    is: { distant: true },
    enabled: false,
  });
})();