// pretty_exit_prepositions.js
(function () {
/* global adventurejs A */
var p = adventurejs.Dictionary.prototype;
/**
* Pretty exit prepositions are used to describe the action of leaving a nested position.
* @var {Object} adventurejs.Dictionary#pretty_exit_prepositions
* @default { behind: "out from behind", in: "out of", on: "off of", under: "out from under", over: "down from over", between: "out from between", beside: "from beside", across: "from across", attached: "from where it's attached to", through: "from" }
*/
p.pretty_exit_prepositions = {
behind: "out from behind",
in: "out of",
on: "off of",
under: "out from under",
over: "down from over",
between: "out from between",
beside: "from beside",
across: "from across",
attached: "from where it's attached to",
through: "from",
};
})();