// prepositions.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Dictionary.prototype;
/**
* These prepositions are recognized by the parser.
* Some are the result of compound operations such as outfromunder.
* @var {Object} adventurejs.Dictionary#prepositions
*/
p.prepositions = [
// this batch of words are commonly used as adverbs
// but currently being handled as prepositions
"around",
"backward",
"backwards",
"down",
"foreward",
"forewards",
"left",
"right",
"up",
//
"about",
"for",
"above",
"across",
"against",
"at",
"attached",
"behind",
"beside",
"between",
"beyond",
"from",
"frombehind",
"fromin",
"fromon",
"fromunder",
"in",
"infront",
"off",
"on",
"open",
"out",
"outfrombehind",
"outfromunder",
"over",
"past",
"through",
"to",
"toward",
"towards",
"under",
"with",
];
})();