// reflexive_pronouns.js
(function () {
/* global adventurejs A */
var p = adventurejs.Dictionary.prototype;
/**
* These reflexive pronouns are recognized by the parser.
* @var {Object} adventurejs.Dictionary#reflexive_pronouns
*/
p.reflexive_pronouns = [
"myself",
"himself",
"herself",
"itself",
"themself",
"themselves",
"yourself",
"yourselves",
];
p.added_reflexive_pronouns = {};
})();