//GlobalSun.js
(function () {
/* global AdventureJS A */
/**
* @ajsnode game.world.global_sun
* @augments {AdventureJS.Assets.Scenery}
* @class global_sun
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_sun", [...] });
* @ajsconstructedby AdventureJS.Game#createGlobalScenery
* @hideconstructor
* @ajsinstanceof Scenery
* @ajsmodifiedby AdventureJS.Game#setAreaScenery
* @ajsnavheading GlobalScenery
* @tutorial AreaEffects_AreaScenery
* @summary An area scenery object.
* @ajsglobal AreaScenery
*/
A.AssetDefinitions.Scenery.push({
class: "Scenery",
name: "sun",
synonyms: ["sun"],
description: "The sun is too bright to look at directly. ",
is: { distant: true },
enabled: false,
});
})();