From a017777e2d3870c09f5dc218d6b3b692e050aba6 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 8 Dec 2022 21:47:33 -0300 Subject: Maggot Slime tweaks (specially Liana) --- db/re/item_db.conf | 2 +- npc/003-1/swezanne.txt | 4 +++- npc/005-1/liana.txt | 8 ++++++-- 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 ""; -- cgit v1.2.3-60-g2f50