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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * Prepositions that are recognized as tangible aspects.
   * @var {Object} adventurejs.Dictionary#aspects
   */
  p.aspects = [
    "attached",
    "behind",
    "in",
    "on",
    "under",
    "worn",
    "hung",
    "tied",
  ];
  // out? off?
})();