// prepositions.js
(function () {
/*global adventurejs A*/
"use strict";
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 = [
"above",
"across",
"against",
"at",
"attached",
"behind",
"beside",
"between",
"beyond",
"from",
"frombehind",
"fromin",
"fromon",
"fromunder",
"in",
"infront",
"off",
"on",
"out",
"outfrombehind",
"outfromunder",
"over",
"past",
"through",
"toward",
"towards",
"to",
"under",
"with",
"up",
"down",
];
})();