Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// isDOV.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Asset.prototype;
  /**
   * <strong>isDOV</strong> is a method to check whether
   * this asset is subscribed to allow the specified verb to act on it
   * as a direct object.
   * @memberOf adventurejs.Asset
   * @method adventurejs.Asset#isDOV
   * @param {String} verb
   * @returns {Boolean}
   */
  p.isDOV = function Asset_isDOV(verb) {
    // did we get a verb object rather than a name?
    if ("object" === typeof verb && verb.name) verb = verb.name;
    // did we get an invalid verb name?
    if (!verb || !this.game.dictionary.verbs[verb]) return false;
    // is verb enabled for asset?
    if (!this.dov[verb]?.enabled) return false;
    // looks good
    return true;
  };
})();