diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-16 02:50:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-16 02:50:52 -0300 |
commit | d4164015cfd2ed367aac33b8653215eb61a2a938 (patch) | |
tree | b3f2fd7d27044139aa33be61484c68a1d9d2051f /npc | |
parent | 9100060b83e0958fc6c82b7b057318d863a46c1f (diff) | |
download | serverdata-d4164015cfd2ed367aac33b8653215eb61a2a938.tar.gz serverdata-d4164015cfd2ed367aac33b8653215eb61a2a938.tar.bz2 serverdata-d4164015cfd2ed367aac33b8653215eb61a2a938.tar.xz serverdata-d4164015cfd2ed367aac33b8653215eb61a2a938.zip |
Crafting Malus: There's always, **always** 10% malus chance.
Total min. 1% chance of two maluses, ALWAYS
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index f8e00b128..947a5c8ca 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -514,7 +514,7 @@ function script csys_Apply { .@base+=40000; // This _lowers_ base based on how many options you're using (max -30%) // 5% per option enabled. One is always enabled so... - .@base-=limit(0, 30000, bitmask_count(CRAFTSYS_CURRENT)*5000); + .@base-=limit(1000, 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 |