//GlobalWind.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_wind
* @augments {adventurejs.Scenery}
* @class global_wind
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_wind", [...] });
* @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: "wind",
synonyms: ["wind", "breeze"],
descriptions: { look: "Just a slight breeze. " },
is_intangible: true,
enabled: false,
});
})();