diff options
author | Asheraf <Asheraf@users.noreply.github.com> | 2019-05-31 10:22:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 10:22:20 +0000 |
commit | f829c2872d258725a85156809212fb489b658719 (patch) | |
tree | cbfc960a7fc83c29693bef21aa7164599834b5d1 | |
parent | 2fb175dcee88aa8d1e37380899992147fcd36604 (diff) | |
parent | f2a600b4e7897319828e0bcdbdc79c4039a104ee (diff) | |
download | hercules-f829c2872d258725a85156809212fb489b658719.tar.gz hercules-f829c2872d258725a85156809212fb489b658719.tar.bz2 hercules-f829c2872d258725a85156809212fb489b658719.tar.xz hercules-f829c2872d258725a85156809212fb489b658719.zip |
Merge pull request #2483 from Emistry/db_reduction_potion
Update item_db - Stat Reduction Potions
-rw-r--r-- | db/re/item_db.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 961fa102e..6c0bea7f0 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -148002,6 +148002,54 @@ item_db: ( Script: <" percentheal 5,5; "> }, { + Id: 22702 + AegisName: "STR_Soul_Potion" + Name: "STR Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bStr, -1, STR_Soul_Potion); "> +}, +{ + Id: 22703 + AegisName: "AGI_Soul_Potion" + Name: "AGI Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bAgi, -1, AGI_Soul_Potion); "> +}, +{ + Id: 22704 + AegisName: "VIT_Soul_Potion" + Name: "VIT Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bVit, -1, VIT_Soul_Potion); "> +}, +{ + Id: 22705 + AegisName: "INT_Soul_Potion" + Name: "INT Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bInt, -1, INT_Soul_Potion); "> +}, +{ + Id: 22706 + AegisName: "DEX_Soul_Potion" + Name: "DEX Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bDex, -1, DEX_Soul_Potion); "> +}, +{ + Id: 22707 + AegisName: "LUK_Soul_Potion" + Name: "LUK Reduction Potion" + Type: "IT_DELAYCONSUME" + Buy: 10 + Script: <" callfunc("F_CashReduceStat", bLuk, -1, LUK_Soul_Potion); "> +}, +{ Id: 22737 AegisName: "Bullet_Case_Blood_" Name: "Bloody Bullet Case" |