//GlobalTrees.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_trees
* @augments {adventurejs.Scenery}
* @class global_trees
* @ajsconstruct MyGame.createGlobalScenery({ "name": "global_trees", [...] });
* @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: "trees",
synonyms: ["trees", "forest"],
descriptions: { look: "$(We) can't see the forest for the trees. " },
// is: { distant: true, },
enabled: false,
});
})();