Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// onMoistenThisWithThat.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Tangible.prototype;
  /**
   * Called when an asset is moistened with a liquid substance,
   * providing an opportunity to override default behavior
   * through the use of
   * <a href="/doc/Scripting_VerbReactions.html">verb effect hook</a>
   * doMoistenThisWithThat.
   * @memberOf adventurejs.Tangible
   * @method adventurejs.Tangible#onMoistenThisWithThat
   * @param {Object} asset
   */
  p.onMoistenThisWithThat = function Tangible_onMoistenThisWithThat(asset) {
    if ("string" === typeof asset) asset = this.game.getAsset(asset);
    if (!asset) return;
    this.game.log(
      "L1462",
      "log",
      "medium",
      this.name + " onMoistenThisWithThat " + ".",
      "VerbActions"
    );
    var results = this.callAction("doMoistenThisWithThat", asset.name);
    if ("undefined" !== typeof results) return results;
    return;
  };
})();