The Lower Standards mod lowers the bar of your chosen class by reducing the stat requirements of all of your starting equipment down to something you can handle. Thanks to your grandmother's amazing crafting skills, this is accomplished without losing any protective or offensive power of the equipment modified.
This mod only affects starting equipment. Even if you find another leather armor like yours on the ground, you'll need to meet the stat requirements for it as normal.
Alchemists, pay special note: this will likely affect your golem's starting equipment as well as your own. Even if your golem starts with a voratun weapon, it will probably not start with 48 strength as well. Yes, I know you're sad about losing your game-breaking golem. On the bright side, you will have an amazingly lightweight voratun weapon at your disposal. Have fun with that. EDIT: This is no longer true; golems with awesome weapons are back to getting awesome strength as well.
-----------------
If you don't feel like downloading, the mod is small enough that you can use a diff just as well.
From tome/resolvers.lua:
Code: Select all
44c44
<
---
>
50a51,62
> -- change the stat requirements to your stats
> if e.player and filter.autoreq and rawget(o, "require") and rawget(o, "require").stat then
> local fixed
> if rawget(o, "require").stat.str and rawget(o, "require").stat.str > e:getStat("str") then o.require.stat.str = e:getStat("str") fixed = true end
> if rawget(o, "require").stat.dex and rawget(o, "require").stat.dex > e:getStat("dex") then o.require.stat.dex = e:getStat("dex") fixed = true end
> if rawget(o, "require").stat.con and rawget(o, "require").stat.con > e:getStat("con") then o.require.stat.con = e:getStat("con") fixed = true end
> if rawget(o, "require").stat.mag and rawget(o, "require").stat.mag > e:getStat("mag") then o.require.stat.mag = e:getStat("mag") fixed = true end
> if rawget(o, "require").stat.cun and rawget(o, "require").stat.cun > e:getStat("cun") then o.require.stat.cun = e:getStat("cun") fixed = true end
> if rawget(o, "require").stat.wil and rawget(o, "require").stat.wil > e:getStat("wil") then o.require.stat.wil = e:getStat("wil") fixed = true end
> if fixed then o.desc = o.desc.." This item has been modified so that you can use it." end
> end
>