// save.js
(function () {
/*global adventurejs A*/
/**
* @augments {adventurejs.Verb}
* @class save
* @ajsnode game.dictionary.verbs.save
* @ajsconstruct MyGame.createVerb({ "name": "save", [...] });
* @ajsconstructedby adventurejs.Dictionary#createVerb
* @hideconstructor
* @ajsinstanceof Verb
* @ajsnavheading UtilityVerbs
* @summary Verb used to initiate saving a saved game.
* @tutorial Scripting_VerbSubscriptions
* @tutorial Verbs_VerbAnatomy
* @tutorial Verbs_VerbProcess
* @tutorial Verbs_ModifyVerbs
* @tutorial Verbs_WriteVerbs
* @classdesc
* <pre class="display border outline">
* <span class="input">> save</span>
* </pre>
* <p>
* <strong>Save</strong> brings up the 'save game' panel,
* </p>
*/
A.Preverbs.save = {
name: "save",
synonyms: ["save", "save game"],
verb_prep_noun: ["save game"],
/**
* @ajsverbstructures
* @memberof save
*/
accepts_structures: ["verb"],
do: function () {
this.game.log("L1336", "log", "high", "Opening save manager.", "verbs");
this.game.saveManager.openDialog();
return true;
},
};
})();