From e21bd50b9482c17b5207f691c574111e68b762ba Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 12 May 2020 21:56:54 -0300 Subject: Just to be sure... Cap critical from items to 20%. --- db/re/item_db.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/re/item_db.conf b/db/re/item_db.conf index c4bf3e475..2eea625e6 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -11961,7 +11961,7 @@ item_db: ( bonus bAgi, -10; bonus bDex, -5; bonus bDef, -77; - bonus bCritical, 20; + bonus bCritical, 20; // MAX bonus bHPDrainValue,-15; bonus2 bAddEff,Eff_Curse,1; bonus bAtk, getrefine()*2; @@ -12224,7 +12224,7 @@ item_db: ( bonus bAgi, -(BaseLevel/10); bonus bDex, -(BaseLevel/10); bonus bDef, -(BaseLevel*8/10); - bonus bCritical, BaseLevel/6; + bonus bCritical, min(20, BaseLevel/6); bonus2 bHPLossRate,1,1000; bonus bMdefRate, -60; bonus bMdef2Rate, -60; @@ -14552,7 +14552,7 @@ item_db: ( bonus bAgi, -(BaseLevel/10); bonus bHit, (BaseLevel/20); bonus bDef, -(BaseLevel*8/10); - bonus bCritical, BaseLevel/5; + bonus bCritical, min(20, BaseLevel/5); "> }, { -- cgit v1.2.3-60-g2f50