Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// dismount.js

(function () {
  /*global adventurejs A*/

  /**
   * @augments {adventurejs.Verb}
   * @class dismount
   * @ajsnode game.dictionary.verbs.dismount
   * @ajsconstruct MyGame.createVerb({ "name": "dismount", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading LocomotionVerbs
   * @summary Verb meaning dismount or get off, as in "dismount dragon".
   * @tutorial Scripting_VerbSubscriptions
   * @tutorial Verbs_VerbAnatomy
   * @tutorial Verbs_VerbProcess
   * @tutorial Verbs_ModifyVerbs
   * @tutorial Verbs_WriteVerbs
   * @classdesc
   * <pre class="display border outline">
   * <span class="input">&gt; dismount dragon</span>
   * You slide down off the dragon's back. The dragon
   * bends its neck to face you with a piteous expression,
   * as if saddened that the game has come to an end.
   * </pre>
   * <p>
   * <strong>Dismount</strong> a
   * {@link adventurejs.Tangible|Tangible}
   * {@link adventurejs.Asset|Asset}.
   * Dismount extends core verb <a href="go.html">go</a>
   * by inferring "go off".
   * </p>
   * @ajsverbreactions doRemoveThisFromThat, doRemoveThatFromThis, doMoveThisToThat, doMoveThatToThis
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.dismount = {
    name: "dismount",
    prettyname: "dismount",
    past_tense: "dismounted",
    synonyms: ["dismount"],
    gerund: "dismounting",

    subject_must_be: {
      not_constrained: true,
    },

    /**
     * @ajsverbstructures
     * @memberof dismount
     */
    accepts_structures: ["verb", "verb noun", "verb preposition noun"],

    /**
     * @memberof dismount
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun:true,
     *   noun_must_be:
     *   {
     *     tangible: true,
     *     known: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *   },
     *   accepts_preposition: true,
     *   preposition_must_be: ["from", "off"],
     * },
     */
    phrase1: {
      accepts_noun: true,
      noun_must_be: {
        tangible: true,
        known: true,
        present: true,
        visible: true,
        reachable: true,
      },
      accepts_preposition: true,
      preposition_must_be: ["from", "off"],
    },

    /**
     * @memberof dismount
     * @ajsverbparams
     * with_params: {},
     */
    with_params: {},

    doTry: function () {
      var input = this.game.getInput();
      var verb_phrase = input.verb_phrase;

      input.setPreposition(1, "off");
      input.updateStructure();
      return this.game.dictionary.doVerb("go");
    },

    doSuccess: function () {
      return this.handleSuccess();
    },
  };
})(); // release