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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * A list of adverbs that can be used randomly in negative responses.
   * @var {Object} adventurejs.Dictionary#fail_adverbs
   */
  p.fail_adverbs = [
    "dramatically",
    "astonishingly",
    "stunningly",
    "remarkably",
    "extravagantly",
    "magnificently",
    "breathtakingly",
    "impressively",
    "phenomenally",
    "astoundingly",
    "gloriously",
    "grandly",
    "majestically",
    "unbelievably",
    "overwhelmingly",
    "incredibly",
    "sensationally",
    "epicly",
    "catastrophically",
    "disastrously",
    "horrifically",
    "terribly",
    "miserably",
    "abysmally",
    "dreadfully",
    "appallingly",
    "disgracefully",
    "atrociously",
    "cringeworthily",
    "ingloriously",
    "infamously",
    "shamefully",
    "embarrassingly",
    "pathetically",
    "abominably",
    "monumentally",
    "colossally",
    "epicly",
  ];
})();