summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-03-01 19:22:39 -0300
committerjesusalva <cpntb1@ymail.com>2018-03-01 19:22:39 -0300
commit075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b (patch)
tree1a9f245d6ab108f0d5871c2533d28567517d48fe
parent2027acd1ebcb08c26f46738470f263aac68c8a0a (diff)
downloadserverdata-075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b.tar.gz
serverdata-075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b.tar.bz2
serverdata-075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b.tar.xz
serverdata-075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b.zip
Knife and their shops rebalance. Training bow available at Rosen&Tolchi for 550 GP.
-rw-r--r--db/re/item_db.conf8
-rw-r--r--npc/003-1/shop.txt4
-rw-r--r--npc/005-4/shop.txt6
-rw-r--r--npc/functions/sailortalk.txt3
4 files changed, 13 insertions, 8 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index fd159c130..c5bcebe61 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -10120,8 +10120,8 @@ item_db: (
AegisName: "Knife"
Name: "Knife"
Type: "IT_WEAPON"
- Buy: 90
- Sell: 25
+ Buy: 200
+ Sell: 90
Weight: 6
Atk: 50
Matk: 0
@@ -11208,10 +11208,10 @@ item_db: (
AegisName: "Arrow"
Name: "Arrow"
Type: "IT_AMMO"
- Buy: 100
+ Buy: 10
Sell: 1
Weight: 1
- Atk: 30
+ Atk: 20
Loc: "EQP_AMMO"
Subtype: "W_DAGGER"
},
diff --git a/npc/003-1/shop.txt b/npc/003-1/shop.txt
index ce74730eb..1abed4e68 100644
--- a/npc/003-1/shop.txt
+++ b/npc/003-1/shop.txt
@@ -8,7 +8,7 @@ OnInit:
tradertype(NST_MARKET);
sellitem YellowCottonDye, -1, 3;
- sellitem SmallKnife, -1, 5;
+ sellitem Knife, -1, 5;
sellitem Arrow, -1, 30000;
sellitem DesertHat, -1, 10;
sellitem Bread, -1, 15;
@@ -19,7 +19,7 @@ OnInit:
OnClock0000:
restoreshopitem YellowCottonDye, 3;
- restoreshopitem SmallKnife, 5;
+ restoreshopitem Knife, 5;
restoreshopitem Arrow, 30000;
restoreshopitem DesertHat, 10;
restoreshopitem Bread, 15;
diff --git a/npc/005-4/shop.txt b/npc/005-4/shop.txt
index bb5dd0e25..171e3839a 100644
--- a/npc/005-4/shop.txt
+++ b/npc/005-4/shop.txt
@@ -20,9 +20,10 @@ OnInit:
tradertype(NST_MARKET);
sellitem RoundLeatherShield, -1, 3;
- sellitem Knife, -1, 5;
+ sellitem SmallKnife, -1, 5;
sellitem TolchiArrow, -1, 30000;
sellitem LousyMoccasins, -1, 20;
+ sellitem TrainingBow, -1, 3;
.sex = G_OTHER;
.distance = 3;
@@ -30,8 +31,9 @@ OnInit:
OnClock0000:
restoreshopitem RoundLeatherShield, 3;
- restoreshopitem Knife, 5;
+ restoreshopitem SmallKnife, 5;
restoreshopitem TolchiArrow, 30000;
restoreshopitem LousyMoccasins, 20;
+ restoreshopitem TrainingBow, 1;
}
diff --git a/npc/functions/sailortalk.txt b/npc/functions/sailortalk.txt
index 8a131cf19..87baf0386 100644
--- a/npc/functions/sailortalk.txt
+++ b/npc/functions/sailortalk.txt
@@ -26,5 +26,8 @@ function script sailortalk {
if (.@rand == 6) npctalkonce(l("Arr!"));
if (.@rand == 7) npctalkonce(l("Howdy?"));
+ // just to be sure
+ closedialog;
+ close;
end;
}