Hey y'all.
I'm using DreamX's extension to the Yanfly battle status window and I have everything *mostly* tuned how I want, but I'm having a little trouble with a specific edit.
Currently I have my TP bar set up like this:

Essentially all I want to do is manipulate the font for the TP value, by changing the face.
In the plugin, the method used to draw the TP value is as follows:
JavaScript:
if (!eval(paramTpHideValues)) {
this.contents.fontSize = eval(paramCurrentValueFontSize);
this.changeTextColor(this.tpColor(actor));
this.drawText(actor.tp+"%", eval(paramTpValuesX), eval(paramTpValuesY), eval(paramTpValuesWidth), paramTpValuesAlignment);
this.contents.fontSize = Yanfly.Param.BSWParamFontSize;
}All I want to do is change the font face before drawText() executes, and then revert it back after drawText() executes (if necessary), but I'm having a little trouble getting that to work. This is built on the Yanfly Core and Yanfly Battle Core plugins, so if there's a function or property within Yanfly MV that can perform this, that'd also work fine.
Any help is appreciated.