I'm needing some help to make Imbuing and Runic crafting that much more. For some reason when you craft with Runic Hammers, it doesn't give nearly as much bonuses as the game should. Also, with imbuing, I'd like to make it so then stats can be bumped up. Is there a way to do this?
 
For more properties when items are crafted with a runic tool you should look into your Resourceinfo.cs. Scroll down about half way or so and you'll see something like this
Code:
 valorite.ArmorPhysicalResist = Uber ? 4 : Utility.Random(3);
            valorite.ArmorFireResist = Uber ? 4 : Utility.Random(3);
            valorite.ArmorColdResist = Uber ? 4 : Utility.Random(3);
            valorite.ArmorPoisonResist = Uber ? 5 : Utility.Random(3);
            valorite.ArmorEnergyResist = Uber ? 4 : Utility.Random(3);
            valorite.ArmorDurability = 100;
            valorite.WeaponDurability = 100;
            valorite.ArmorLowerRequirements = 50;
            valorite.WeaponLowerRequirements = 50;
            valorite.WeaponFireDamage = 10;
            valorite.WeaponColdDamage = 20;
            valorite.WeaponPoisonDamage = 10;
            valorite.WeaponEnergyDamage = 20;
            valorite.RunicMinAttributes = 4;
            valorite.RunicMaxAttributes = Uber ? 6 : 4;
            valorite.RunicMinIntensity = Uber ? 70 : 45;
            valorite.RunicMaxIntensity = Uber ? 100 : 70;

You'll want to change the Runic Min.Max Attributes to whatever you're wanting it adjusted to.

As for more properties when Imbuing an item I'd go the easy route and adjust the max Weight an item can have to allow more properties to be added.
 
Last edited:
Back