From df6b5fdb6b555f91dbd37d883480b7e86de5505c Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 21 Jun 2019 19:25:13 -0300 Subject: Make Croconut Box weight half and require half croconuts. --- db/re/item_db.conf | 6 +++--- npc/003-1/sailors.txt | 32 ++++++++++++++++---------------- npc/items/emptybox.txt | 6 +++--- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 2f6477764..dd6c529e0 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -3496,9 +3496,9 @@ item_db: ( AegisName: "CroconutBox" Name: "Croconut Box" Type: "IT_ETC" - Buy: 1700 - Sell: 600 - Weight: 1400 + Buy: 800 + Sell: 300 + Weight: 680 Refine: false ViewSprite: 715 }, diff --git a/npc/003-1/sailors.txt b/npc/003-1/sailors.txt index e6ca095ea..2b3eec50e 100644 --- a/npc/003-1/sailors.txt +++ b/npc/003-1/sailors.txt @@ -60,11 +60,11 @@ L_Quest1: L_Report1: mesn; mes l("@@/1 @@", countitem(FishBox), getitemlink(FishBox)); - mes l("@@/1 @@", countitem(CroconutBox), getitemlink(CroconutBox)); - mes l("@@/2 @@", countitem(CottonCloth), getitemlink(CottonCloth)); + mes l("@@/2 @@", countitem(CroconutBox), getitemlink(CroconutBox)); + mes l("@@/3 @@", countitem(CottonCloth), getitemlink(CottonCloth)); if (countitem(FishBox) < 1 || - countitem(CroconutBox) < 1 || - countitem(CottonCloth) < 2) + countitem(CroconutBox) < 2 || + countitem(CottonCloth) < 3) close; next; select @@ -74,8 +74,8 @@ L_Report1: if (@menu == 2) close; if (countitem(FishBox) < 1 || - countitem(CroconutBox) < 1 || - countitem(CottonCloth) < 2) { + countitem(CroconutBox) < 2 || + countitem(CottonCloth) < 3) { mesn; mesq l("Liar. Where are the goods? Are you trying to cheat me?!"); next; @@ -91,8 +91,8 @@ L_Report1: } inventoryplace Dagger, 1, CottonShirt, 1; delitem FishBox, 1; // 7.500 GP → 3.750 GP - delitem CroconutBox, 1; // 12.000 GP → 10.600~11.800 GP - delitem CottonCloth, 2; // 2.000 GP + delitem CroconutBox, 2; // 12.000 GP → 10.600~11.800 GP + delitem CottonCloth, 3; // 2.000 GP getexp 1508, 15; Zeny=Zeny+3750; // Profit: 1800 GP → 2.400~1.200 GP getitem Dagger, 1; @@ -129,11 +129,11 @@ L_Quest2: L_Report2: mesn; mes l("@@/2 @@", countitem(FishBox), getitemlink(FishBox)); - mes l("@@/3 @@", countitem(CroconutBox), getitemlink(CroconutBox)); - mes l("@@/8 @@", countitem(CottonCloth), getitemlink(CottonCloth)); + mes l("@@/5 @@", countitem(CroconutBox), getitemlink(CroconutBox)); + mes l("@@/7 @@", countitem(CottonCloth), getitemlink(CottonCloth)); if (countitem(FishBox) < 2 || - countitem(CroconutBox) < 3 || - countitem(CottonCloth) < 8) + countitem(CroconutBox) < 5 || + countitem(CottonCloth) < 7) close; next; select @@ -143,8 +143,8 @@ L_Report2: if (@menu == 2) close; if (countitem(FishBox) < 2 || - countitem(CroconutBox) < 3 || - countitem(CottonCloth) < 8) { + countitem(CroconutBox) < 5 || + countitem(CottonCloth) < 7) { mesn; mesq l("Liar. Where are the goods? Are you trying to cheat me?!"); next; @@ -159,8 +159,8 @@ L_Report2: close; } delitem FishBox, 2; // 7.500 GP → 3.750 GP - delitem CroconutBox, 3; // 12.000 GP → 10.600~11.800 GP - delitem CottonCloth, 8; // 2.000 GP + delitem CroconutBox, 5; // 12.000 GP → 10.600~11.800 GP + delitem CottonCloth, 7; // 2.000 GP getexp 1508, 15; Zeny=Zeny+15750; // Profit: 1800 GP → 2.400~1.200 GP setq TulimsharQuest_Sailors, 4; diff --git a/npc/items/emptybox.txt b/npc/items/emptybox.txt index aceb9b094..dec30a2d4 100644 --- a/npc/items/emptybox.txt +++ b/npc/items/emptybox.txt @@ -11,7 +11,7 @@ OnUse: mesn; mesc l("You can fill this box with the following:"); mesc l("- @@ @@", 7, getitemlink(GrassCarp)); - mesc l("- @@ @@", 17, getitemlink(Croconut)); + mesc l("- @@ @@", 8, getitemlink(Croconut)); mesc l("- @@ @@", 20, getitemlink(CommonCarp)); mesc l("- @@ @@", 87, getitemlink(Plushroom)); mes ""; @@ -19,7 +19,7 @@ OnUse: select l("Don't fill"), rif(countitem(GrassCarp) >= 7, l("7 Grass Carp")), - rif(countitem(Croconut) >= 17, l("17 Croconut")), + rif(countitem(Croconut) >= 8, l("8 Croconut")), rif(countitem(CommonCarp) >= 20, l("20 Common Carp")), rif(countitem(Plushroom) >= 87, l("87 Plushroom")); mes ""; @@ -29,7 +29,7 @@ OnUse: getitem FishBox, 1; break; case 3: - delitem Croconut, 17; + delitem Croconut, 8; getitem CroconutBox, 1; break; case 4: -- cgit v1.2.3-60-g2f50