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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * These possessives determiners are recognized by the parser.
   * @var {Object} adventurejs.Dictionary#possessive_determiners
   */
  p.possessive_determiners = [
    "my",
    "your",
    "his",
    "her",
    "its",
    "our",
    "their",
  ];
  p.added_possessive_determiners = {};
})();