diff options
author | Haru <haru@dotalux.com> | 2017-05-04 10:45:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 10:45:02 +0200 |
commit | 2e4a2c0578840e3e4010db75f244d5b045240b86 (patch) | |
tree | e9f9cbd7cc900815b340ecec00052a8c8e20a219 /db | |
parent | 052f5ae1c821dbf7e4ad7284d0e85722a54c6bbc (diff) | |
parent | 402479ef3c30d8e5a7c0371770682918a7378eb1 (diff) | |
download | hercules-2e4a2c0578840e3e4010db75f244d5b045240b86.tar.gz hercules-2e4a2c0578840e3e4010db75f244d5b045240b86.tar.bz2 hercules-2e4a2c0578840e3e4010db75f244d5b045240b86.tar.xz hercules-2e4a2c0578840e3e4010db75f244d5b045240b86.zip |
Merge pull request #1695 from Jedzkie/7-CashFoodFix
Cash Foods Update
Diffstat (limited to 'db')
-rw-r--r-- | db/pre-re/item_db.conf | 24 | ||||
-rw-r--r-- | db/re/item_db.conf | 24 |
2 files changed, 24 insertions, 24 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index 7309af4d3..b17e57252 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -69802,8 +69802,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_STR,1800000,10; - percentheal 20,10; + sc_start(SC_FOOD_STR_CASH, 1800000, 10); + percentheal(20, 10); "> }, { @@ -69823,8 +69823,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_AGI,1800000,10; - percentheal 15,5; + sc_start(SC_FOOD_AGI_CASH, 1800000, 10); + percentheal(15, 5); "> }, { @@ -69844,8 +69844,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_INT,1800000,10; - percentheal 10,20; + sc_start(SC_FOOD_INT_CASH, 1800000, 10); + percentheal(10, 20); "> }, { @@ -69865,8 +69865,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_DEX,1800000,10; - percentheal 10,10; + sc_start(SC_FOOD_DEX_CASH, 1800000, 10); + percentheal(10, 10); "> }, { @@ -69886,8 +69886,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_LUK,1800000,10; - percentheal 14,8; + sc_start(SC_FOOD_LUK_CASH, 1800000, 10); + percentheal(14, 8); "> }, { @@ -69907,8 +69907,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_VIT,1800000,10; - percentheal 25,0; + sc_start(SC_FOOD_VIT_CASH, 1800000, 10); + percentheal(25, 0); "> }, { diff --git a/db/re/item_db.conf b/db/re/item_db.conf index b47bd46d4..514337801 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -87604,8 +87604,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_STR,1800000,10; - percentheal 20,10; + sc_start(SC_FOOD_STR_CASH, 1800000, 10); + percentheal(20, 10); "> }, { @@ -87625,8 +87625,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_AGI,1800000,10; - percentheal 15,5; + sc_start(SC_FOOD_AGI_CASH, 1800000, 10); + percentheal(15, 5); "> }, { @@ -87646,8 +87646,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_INT,1800000,10; - percentheal 10,20; + sc_start(SC_FOOD_INT_CASH, 1800000, 10); + percentheal(10, 20); "> }, { @@ -87667,8 +87667,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_DEX,1800000,10; - percentheal 10,10; + sc_start(SC_FOOD_DEX_CASH, 1800000, 10); + percentheal(10, 10); "> }, { @@ -87688,8 +87688,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_LUK,1800000,10; - percentheal 14,8; + sc_start(SC_FOOD_LUK_CASH, 1800000, 10); + percentheal(14, 8); "> }, { @@ -87709,8 +87709,8 @@ item_db: ( nogstorage: true } Script: <" - sc_start SC_FOOD_VIT,1800000,10; - percentheal 25,0; + sc_start(SC_FOOD_VIT_CASH, 1800000, 10); + percentheal(25, 0); "> }, { |