Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// onUnnestThatFromThis.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Tangible.prototype;
  /**
   * Called when player is unnested from this asset.
   * Provides an opportunity to override default behavior
   * through the use of
   * <a href="/doc/Scripting_VerbReactions.html">verb reactions</a>
   * doUnnestThatFromThis.
   * @memberOf adventurejs.Tangible
   * @method adventurejs.Tangible#onUnnestThatFromThis
   * @param {Object} player
   * @returns {Boolean}
   */
  p.onUnnestThatFromThis = function Tangible_onUnnestThatFromThis(player) {
    if ("string" === typeof player) player = this.game.getAsset(player);
    if (!player) return;
    this.game.log(
      "L1481",
      "log",
      "high",
      `onUnnestThatFromThis.js | unnest ${player.id} from ${this.id} `,
      "VerbActions"
    );
    var results;

    if (this.isDOV("ride") && this.isWithin(player)) {
      results = player.onRemoveThatFromThis(this);
      if ("undefined" !== typeof results) return results;
    }

    results = this.callAction("doUnnestThatFromThis", player.name);
    if ("undefined" !== typeof results) return results;

    return;
  };
})();