// GlobalExitExit.js
(function () {
/*global adventurejs A*/
/**
* @augments {adventurejs.Exit}
* @class global_exit
* @ajsconstruct MyGame.createGlobalExits({ "name": "global_exit", [...] });
* @ajsconstructedby adventurejs.Game#createGlobalExits
* @hideconstructor
* @ajsinstanceof Exit
* @ajsmodifiedby adventurejs.Game#setGlobalDescriptions
* @ajsnavheading GlobalExits
* @ajsnode game.world.global_exit
* @tutorial NextSteps_GlobalScenery
* @summary A global exit.
* @ajsglobal GlobalExit
*/
A.GlobalAssets.Exits.push({
class: "Exit",
direction: "exit",
descriptions: {
look: "$(We) $(don't) see any way to exit. ",
travel: "$(We) can't exit from here. ",
},
});
})();