Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// canDoVerbAutomatically.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Asset.prototype;
  /**
   * <strong>canDoVerbAutomatically</strong> is a method to check whether
   * the specified verb can be performed automatically. Assumes that
   * asset.dov[verb].enabled is true.
   * @memberOf adventurejs.Asset
   * @method adventurejs.Asset#canDoVerbAutomatically
   * @param {String} verb
   * @returns {Boolean}
   */

  p.canDoVerbAutomatically = function Asset_canDoVerbAutomatically(verb) {
    if (!this.game.dictionary.verbs[verb]) return false;
    if (!this.dov[verb]?.enabled) return false;
    verb = this.game.dictionary.verbs[verb];
    if (!this.dov[verb.name].automatically) return false;
    if (this.dov[verb.name].automatically_after_use) {
      // has it been used?
      if (!this.did[verb.name]) return false;
    }

    return true;
  };
})();