Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
//GlobalStars.js
(function () {
  /*global adventurejs A*/

  /**
   * @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({
    class: "Scenery",
    name: "stars",
    synonyms: ["star", "stars"],
    description: "All the stars like grains of sand. ",
    is: { distant: true },
    enabled: false,
    default_aspect: "in",
  });
})();