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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * Genders recognized by the parser.
   * @var {Object} adventurejs.Dictionary#genders
   */
  p.genders = ["male", "female", "transgender", "nonbinary", "nonhuman"];
  p.added_genders = [];
})();