summaryrefslogtreecommitdiff
path: root/db/re/item_db.conf
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-08-26 21:43:51 -0300
committerJesusaves <cpntb1@ymail.com>2019-08-26 21:43:51 -0300
commit0ef56764dc2796cb43e90f10c5eb380c9f94406a (patch)
tree154fde292c224859f9782fd1daae40bb37d544e9 /db/re/item_db.conf
parent6f622b30127710caf6b4dfcfb9aed5e17643013f (diff)
downloadserverdata-0ef56764dc2796cb43e90f10c5eb380c9f94406a.tar.gz
serverdata-0ef56764dc2796cb43e90f10c5eb380c9f94406a.tar.bz2
serverdata-0ef56764dc2796cb43e90f10c5eb380c9f94406a.tar.xz
serverdata-0ef56764dc2796cb43e90f10c5eb380c9f94406a.zip
Implement Status Fruits
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r--db/re/item_db.conf85
1 files changed, 85 insertions, 0 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index b99dd358e..953e2c0b5 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -14699,6 +14699,91 @@ item_db: (
getitem MercBoxA, 1;
">
},
+// Additional usable items
+{
+ Id: 8000
+ AegisName: "StrengthFruit"
+ Name: "Strength Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bStr, 1);
+ STATUSUP_STR+=1;
+ ">
+},
+{
+ Id: 8001
+ AegisName: "AgilityFruit"
+ Name: "Agility Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bAgi, 1);
+ STATUSUP_AGI+=1;
+ ">
+},
+{
+ Id: 8002
+ AegisName: "VitalityFruit"
+ Name: "Vitality Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bVit, 1);
+ STATUSUP_VIT+=1;
+ ">
+},
+{
+ Id: 8003
+ AegisName: "IntelligenceFruit"
+ Name: "Intelligence Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bInt, 1);
+ STATUSUP_INT+=1;
+ ">
+},
+{
+ Id: 8004
+ AegisName: "DexterityFruit"
+ Name: "Dexterity Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bDex, 1);
+ STATUSUP_DEX+=1;
+ ">
+},
+{
+ Id: 8005
+ AegisName: "LuckFruit"
+ Name: "Luck Fruit"
+ Type: "IT_USABLE"
+ Buy: 500000
+ Sell: 1500
+ Weight: 10
+ Delay: 500
+ Script: <"
+ statusup2(bLuk, 1);
+ STATUSUP_LUK+=1;
+ ">
+},
)