summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-12-08 21:47:33 -0300
committerJesusaves <cpntb1@ymail.com>2022-12-08 21:47:33 -0300
commita017777e2d3870c09f5dc218d6b3b692e050aba6 (patch)
treed8e5cf21f21e4d340bf4e864bbd4c3ca05ccb51f
parent5f85d60a39fdf9cc28ede96104b896c1c2da516f (diff)
downloadserverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.gz
serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.bz2
serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.xz
serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.zip
Maggot Slime tweaks (specially Liana)
-rw-r--r--db/re/item_db.conf2
-rw-r--r--npc/003-1/swezanne.txt4
-rw-r--r--npc/005-1/liana.txt8
3 files changed, 10 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index 7ff2d35c3..9e0c22914 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -4061,7 +4061,7 @@ item_db: (
Name: "Maggot Slime"
Type: "IT_ETC"
Buy: 50
- Sell: 4
+ Sell: 5
Weight: 2
Refine: false
},
diff --git a/npc/003-1/swezanne.txt b/npc/003-1/swezanne.txt
index ea3257b63..83a45c23a 100644
--- a/npc/003-1/swezanne.txt
+++ b/npc/003-1/swezanne.txt
@@ -83,7 +83,9 @@ L_Finish2:
L_Finish:
delitem CactusDrink, 5;
getexp 63, 4; // 4 Job points! A "great" reward.
- Zeny = (Zeny + 250); // 5*25 = 125 base (+100%)
+ // Bonus: +300%
+ .@price = getiteminfo(CactusDrink, ITEMINFO_SELLPRICE) * 5 * 3;
+ Zeny += .@price;
setq TulimsharQuest_Swezanne, 3;
setq2 TulimsharQuest_Swezanne, gettimetick(2)+60*60*24;
close;
diff --git a/npc/005-1/liana.txt b/npc/005-1/liana.txt
index 2916013ac..4dab5165c 100644
--- a/npc/005-1/liana.txt
+++ b/npc/005-1/liana.txt
@@ -61,7 +61,9 @@ L_Repeat:
L_Finish2:
delitem MaggotSlime, 10;
getexp 21, 0;
- Zeny = (Zeny + 80); // 10*4 = 40 base
+ // Bonus: +300%
+ .@price = getiteminfo(MaggotSlime, ITEMINFO_SELLPRICE) * 10 * 3;
+ Zeny += .@price;
setq CandorQuest_Liana, 1;
set LIANA_TIMER, gettimetick(2);
mes "";
@@ -72,7 +74,9 @@ L_Finish2:
L_Finish:
delitem MaggotSlime, 5;
getexp 58, 7;
- Zeny = (Zeny + 30); // 5*4 = 20 base
+ // Bonus: +400%
+ .@price = getiteminfo(MaggotSlime, ITEMINFO_SELLPRICE) * 5 * 4;
+ Zeny += .@price;
setq CandorQuest_Liana, 1;
set LIANA_TIMER, gettimetick(2);
mes "";