Acho que é aqui mas n sei o que esta indicando a posiçao da "face" do actor
Window_MenuStatus.prototype.drawFace = function(faceName, faceIndex, x, y, width, height) {
var width = this.bustWidth();
var bustName = faceName + "_" + (faceIndex + 1)
var bitmap = ImageManager.loadPicture(bustName);
var ox = 0;
var oy = 0;
if (Galv.BM.offsets[bustName]) {
ox = Galv.BM.offsets[bustName][0] || 0;
oy = Galv.BM.offsets[bustName][1] || 0;
};
var sw = width;
var sh = Galv.BM.bustHeight;
var dx = x - 1;
var dy = y + Galv.BM.bust;
var sx = bitmap.width / 2 - width / 2 - ox;
var sy = oy;
this.contents.unlimitedBlt(bitmap, sx, sy, sw, sh, dx, dy);
};