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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * Adjectives recognized by the parser.
   * @var {Object} adventurejs.Dictionary#adjectives
   */
  p.adjectives = [
    "south",
    "s",
    "north",
    "n",
    "east",
    "e",
    "west",
    "w",
    "northeast",
    "ne",
    "northwest",
    "nw",
    "southeast",
    "se",
    "southwest",
    "sw",
    "port",
    "starboard",
    "aft",
    "fore",
    "old",
    "new",
    "dirty",
    "clean",
    "loud",
    "quiet",
    "good",
    "bad",
    "best",
    "worst",
    "big",
    "little",
    "small",
    "large",
    "tiny",
    "huge",
    "tall",
    "short",
    "long",
    "wide",
    "narrow",
    "heavy",
    "light",
    "strong",
    "weak",
    "fast",
    "slow",
    "hot",
    "cold",
    "red",
    "orange",
    "yellow",
    "green",
    "blue",
    "indigo",
    "violet",
    "purple",
    "pink",
    "white",
    "black",
    "grey",
    "brown",
    "tan",
    "beige",
    "clear",
    "transparent",
    "opaque",
  ];
})();