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

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

  var p = adventurejs.Dictionary.prototype;

  /**
   * We use the pronouns for first person plural as
   * a lookup key to get pronouns for other cases.
   * Pronoun groups include language for first person,
   * first person plural (plural), second person,
   * third person plural (nonbinary), third person male,
   * third person female, and nonhuman. We also lump in some
   * contractions and modal verbs. These can be applied
   * to all of the default response strings built-in
   * to AdventureJS, by setting the person property.
   * @var {Object} adventurejs.Dictionary#pronouns
   */
  p.pronouns = {
    first: {
      we: "I",
      us: "me",
      "we'd": "I'd",
      "we've": "I've",
      "we'll": "I'll",
      "we're": "I'm",
      our: "my",
      ours: "mine",
      ourself: "myself",
      ourselves: "myself",
      "don't": "don't",
      "haven't": "haven't",
      "weren't": "weren't",
      have: "have",
      were: "was",
      are: "am",
    },
    plural: {
      we: "we",
      us: "us",
      "we'd": "we'd",
      "we've": "we've",
      "we'll": "we'll",
      "we're": "we're",
      our: "our",
      ours: "ours",
      ourself: "ourselves",
      ourselves: "ourselves",
      "don't": "don't",
      "haven't": "haven't",
      "weren't": "weren't",
      have: "have",
      were: "were",
      are: "are",
    },
    second: {
      we: "you",
      us: "you",
      "we'd": "you'd",
      "we've": "you've",
      "we'll": "you'll",
      "we're": "you're",
      our: "your",
      ours: "yours",
      ourself: "yourself",
      ourselves: "yourself",
      "don't": "don't",
      "haven't": "haven't",
      "weren't": "weren't",
      have: "have",
      were: "were",
      are: "are",
    },
    nonbinary: {
      we: "they",
      us: "them",
      "we'd": "they'd",
      "we've": "they've",
      "we'll": "they'll",
      "we're": "they're",
      our: "their",
      ours: "theirs",
      ourself: "themself",
      ourselves: "themself",
      "don't": "don't",
      "haven't": "haven't",
      "weren't": "weren't",
      have: "have",
      were: "were",
      are: "are",
    },
    male: {
      we: "he",
      us: "him",
      "we'd": "he'd",
      "we've": "he's",
      "we'll": "he'll",
      "we're": "he's",
      our: "his",
      ours: "his",
      ourself: "himself",
      ourselves: "himself",
      "don't": "doesn't",
      "haven't": "hasn't",
      "weren't": "wasn't",
      have: "has",
      were: "was",
      are: "is",
    },
    female: {
      we: "she",
      us: "her",
      "we'd": "she'd",
      "we've": "she's",
      "we'll": "she'll",
      "we're": "she's",
      our: "her",
      ours: "hers",
      ourself: "herself",
      ourselves: "herself",
      "don't": "doesn't",
      "haven't": "hasn't",
      "weren't": "wasn't",
      have: "has",
      were: "was",
      are: "is",
    },
    nonhuman: {
      we: "it",
      us: "it",
      "we'd": "it'd",
      "we've": "it's",
      "we'll": "it'll",
      "we're": "it's",
      our: "its",
      ours: "its",
      ourself: "itself",
      ourselves: "itself",
      "don't": "doesn't",
      "haven't": "hasn't",
      "weren't": "wasn't",
      have: "has",
      were: "was",
      are: "is",
    },
  };
})();