//GlobalMountains.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_mountains
* @augments {adventurejs.Scenery}
* @class global_mountains
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_mountains", [...] });
* @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: "mountains",
synonyms: ["mountains", "mountains"],
descriptions: { look: "Ominous mountains loom in the distance. " },
// is: { distant: true, },
enabled: false,
});
})();