diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-03-15 09:56:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-03-15 09:56:18 -0300 |
commit | 08d684e32b24381943ac51e89795ec21cb1cede4 (patch) | |
tree | 8c2f4e50071478c300555d49f73a2637c2bef3da | |
parent | 40a8ab2da18654e10ca42ac6231ccb7008c5db5c (diff) | |
download | serverdata-08d684e32b24381943ac51e89795ec21cb1cede4.tar.gz serverdata-08d684e32b24381943ac51e89795ec21cb1cede4.tar.bz2 serverdata-08d684e32b24381943ac51e89795ec21cb1cede4.tar.xz serverdata-08d684e32b24381943ac51e89795ec21cb1cede4.zip |
Modify how lightsabers HP loss work. Modify how Lightbringer HP loss work.
-rw-r--r-- | db/re/item_db.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 8ba1b7814..22c071be2 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -14097,7 +14097,7 @@ item_db: ( bonus bMaxHP,-200; bonus bAtk,(BaseLevel-60)*3; bonus bCritical, min(5, BaseLevel/24); - bonus2 bHPLossRate,2,800; + bonus2 bHPDrainValue,4; bonus bHitRate, -10; bonus bMdefRate, -60; bonus bMdef2Rate, -60; @@ -14169,7 +14169,7 @@ item_db: ( bonus bDex, -(BaseLevel/10); bonus bDef, -(BaseLevel*8/10); bonus bCritical, min(20, BaseLevel/7); // Canon: /6 - bonus2 bHPLossRate,1,800; + bonus2 bHPDrainValue,2; bonus bFleeRate, -5; bonus bMdefRate, -60; bonus bMdef2Rate, -60; @@ -14404,8 +14404,8 @@ item_db: ( bonus2 bResEff, Eff_Burning, 40; bonus2 bResEff, Eff_Deepsleep, 40; - // Equipment use is free after level 255 or during tests - if (BaseLevel < 255 && !$@GM_OVERRIDE) { + // Equipment use is free after level 200 or during tests + if ((REBIRTH < 5 || BaseLevel < 200) && !$@GM_OVERRIDE) { bonus bNoRegen,1; bonus2 bSPLossRate,(255-BaseLevel)/30,(1000-(BaseLevel*2)); bonus2 bHPLossRate,(255-BaseLevel)/40,(1000-(BaseLevel*2)); |