//GlobalThunder.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_thunder
* @augments {adventurejs.Scenery}
* @class global_thunder
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_thunder", [...] });
* @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: "thunder",
synonyms: ["thunder"],
descriptions: { look: "Thunder rumbles in the distance. " },
is_intangible: true,
enabled: false,
});
})();