Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// onTieThisToThat.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Tangible.prototype;
  /**
   * Called when this asset is tied to another asset.
   * Provides opportunities to override default behavior
   * through the use of
   * <a href="/doc/Scripting_VerbReactions.html">verb reactions</a>
   * doTieThisToThat and doTieThatToThis.
   * @memberOf adventurejs.Tangible
   * @method adventurejs.Tangible#onTieThisToThat
   * @param {Object} asset
   * @returns {Boolean}
   */
  p.onTieThisToThat = function Tangible_onTieThisToThat(asset) {
    if ("string" === typeof asset) asset = this.game.getAsset(asset);
    if (!asset) return;
    this.game.log(
      "L1482",
      "log",
      "high",
      this.name + " onTieThisToThat " + asset.name + ".",
      "VerbActions"
    );
    var results;

    // check rope for custom response
    results = this.callAction("doTieThisToThat", asset.name);
    if ("undefined" !== typeof results) return results;

    // check asset to be tied to for custom response
    results = asset.callAction("doTieThatToThis", this.name);
    if ("undefined" !== typeof results) return results;

    // add asset to rope's list of things its tied to
    // add rope to asset's list of things tied to it
    let tie = this.game.dictionary.verbs.tie;
    tie.setVerbConnection(this, asset);

    return;
  };
})();