diff options
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r-- | npc/craft/options.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index a7f97decf..902b23849 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -450,6 +450,7 @@ function script csys_Apply { // 5% per option enabled. One is always enabled so... .@base-=limit(0, 30000, bitmask_count(CRAFTSYS_CURRENT)*5000); // Lower based on min. tier (max -10%) + // Note higher tier inheirts all of previous penalties .@base-=(CRAFTSYS_CURRENT >= CRGROUP_ATK ? 2500 : 0); // 1st tier .@base-=(CRAFTSYS_CURRENT >= CRGROUP_REGEN ? 2500 : 0); // 2nd tier .@base-=(CRAFTSYS_CURRENT >= CRGROUP_SCRESIST ? 2500 : 0); // 3rd tier |