Pre-release
Adventure.js Docs Downloads
Score: 0 Moves: 0
// success_adverbs.js

(function () {
  /*global adventurejs A*/
  "use strict";

  var p = adventurejs.Dictionary.prototype;

  /**
   * A list of adverbs that can be used randomly in positive responses.
   * @var {Object} adventurejs.Dictionary#fail_adverbs
   */
  p.success_adverbs = [
    "dramatically",
    "astonishingly",
    "stunningly",
    "remarkably",
    "extravagantly",
    "magnificently",
    "breathtakingly",
    "impressively",
    "phenomenally",
    "astoundingly",
    "splendidly",
    "gloriously",
    "grandly",
    "majestically",
    "exquisitely",
    "unbelievably",
    "overwhelmingly",
    "awesomely",
    "incredibly",
    "sensationally",
    "epicly",
  ];
})();