Good morning all,

I'd like to overwrite (increase) the base wrestling damage when a certain piece of equipment is worn. However the base damage calculation doesnt seem to be in baseweapon/playermobile/skills.cs ...
anyone know where this is located?
 
use the onequip/onremove methods in the item that you want to change the players wrestling damage, I would think by raising the skill would do that or you could do a check in the playermobile damage methods, if wearing x item do x additional damage or raise skill!
 
It looks like you might need to add a check in baseweapon to see if your item is equipped. It's where they handle extra wrestling damage for Horrific Beast form.

Code:
            if (this is Fists && TransformationSpellHelper.UnderTransformation(attacker, typeof(HorrificBeastSpell)))
            {
                min = 5;
                max = 15;
            }
 
Back