// getPostureVerb.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Assets.Character.prototype;
/**
* Get the gerund version of the player's posture.
* @memberOf AdventureJS.Assets.Character
* @method AdventureJS.Assets.Character#getPostureVerb
* @returns {Object|Boolean}
*/
p.getPostureVerb = function Character_getPostureVerb() {
return this.game.dictionary.getStringLookup("movement_verbs", this.posture);
};
})();