I see perks, but stats I can change are limited to what can be done with "Buggy", as well as health and such. I don't seem options like spell efficiency, resist, or crit power. Not that their needed though spell efficiency certainly be nice, just checking if its more extensive than I'm seeing?
Not all the stats are listed in a character's entry in the save file, since many of them use default, usually calculated, values when not present in the file. Simply find the correct attribute name, and you can then add it to any character's attributes in the save file. Looking through the source code can help find things (Attributes.java).
RESTING_LUST, CRITICAL_DAMAGE, ENERGY_SHIELDING, RESISTANCE_PHYSICAL, RESISTANCE_LUST, RESISTANCE_FIRE, etc. are in the Attributes.java file, and you can add them like you see below.
Code:
<attributes>
<attribute type="HEALTH_MAXIMUM" value="101.0"/>
<attribute type="MANA_MAXIMUM" value="101.0"/>
<attribute type="AROUSAL" value="46.0"/>
<attribute type="LUST" value="49.5"/>
<attribute type="MAJOR_PHYSIQUE" value="100.0"/>
<attribute type="MAJOR_ARCANE" value="100.0"/>
<attribute type="SPELL_COST_MODIFIER" value="1.0"/>
<attribute type="VIRILITY" value="1.0"/>
<attribute type="FERTILITY" value="0.0"/>
</attributes>