//GlobalMoon.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_moon
* @augments {adventurejs.Scenery}
* @class global_moon
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_moon", [...] });
* @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: "moon",
synonyms: ["moon"],
descriptions: { look: "Just a cool blue sliver. " },
is: { distant: true },
enabled: false,
});
})();