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

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

  /**
   * @augments {adventurejs.Verb}
   * @class peddle
   * @ajsnode game.dictionary.verbs.peddle
   * @ajsconstruct MyGame.createVerb({ "name": "peddle", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading LocomotionVerbs
   * @summary Verb meaning peddle, as on a bicycle.
   * @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; peddle boat around pond</span>
   * You peddle the boat around the pond, further enraging the swan.
   * </pre>
   * Peddle extends core verb <a href="ride.html">ride</a>.
   * It checks whether "peddle" is contextually available
   * before forwarding to "ride" for further handling.
   * @ajsverbreactions doRemoveThisFromThat, doRemoveThatFromThis, doMoveThisToThat, doMoveThatToThis
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.peddle = {
    name: "peddle",
    prettyname: "peddle",
    past_tense: "peddled",
    synonyms: ["peddle"],
    type: { locomotion: true, travel: true },
    extends: { go: true }, // @TODO this should NOT extend go
    gerund: "peddling",

    subject_must_be: {
      not_constrained: true,
    },

    /**
     * @ajsadverbs
     * @memberof peddle
     */
    accepts_adverbs: ["left", "right", "around", "back", "towards", "over"],

    /**
     * @ajsverbstructures
     * @memberof peddle
     */
    accepts_structures: [
      "verb", // peddle
      "verb noun", // peddle bike, peddle sewing machine
      // "verb preposition",
      // "verb preposition noun", //
      "verb noun noun", // peddle bike east
      "verb noun preposition noun", // peddle east on bike
    ],

    /**
     * @memberof peddle
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun:true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *   },
     *   accepts_preposition: true,
     * },
     */
    phrase1: {
      accepts_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        reachable: true,
      },
      accepts_preposition: true,
    },

    /**
     * @memberof peddle
     * @ajsverbphrase
     * phrase2:
     * {
     *   accepts_noun:true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *   },
     *   accepts_preposition: true,
     * },
     */
    phrase2: {
      accepts_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        reachable: true,
      },
      accepts_preposition: true,
    },

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

    doTry: function () {
      return this.game.dictionary.doVerb("ride");
    },

    doSuccess: function () {
      var input = this.game.getInput();
      var verb_phrase = input.verb_phrase;
      if (input.did_doSuccess) return this.handleSuccess();
    },
  }; // END peddle
})();