diff options
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r-- | db/re/item_db.conf | 85 |
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; + "> +}, ) |