summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-09-04 11:04:12 -0300
committerJesusaves <cpntb1@ymail.com>2018-09-04 11:04:12 -0300
commit49dac61eb3fa2090a9e21c2ed304fffdf6719351 (patch)
treeed3a135cd346acac3c9fb53f7aa4566bc47d26be
parent67694a84eede5bd9e66521e0249443c174738768 (diff)
downloadserverdata-49dac61eb3fa2090a9e21c2ed304fffdf6719351.tar.gz
serverdata-49dac61eb3fa2090a9e21c2ed304fffdf6719351.tar.bz2
serverdata-49dac61eb3fa2090a9e21c2ed304fffdf6719351.tar.xz
serverdata-49dac61eb3fa2090a9e21c2ed304fffdf6719351.zip
Sell wands (not really caring for price. Beware, weekly restock!)
-rw-r--r--npc/001-1/rewards.txt3
-rw-r--r--npc/017-1/shops.txt32
2 files changed, 34 insertions, 1 deletions
diff --git a/npc/001-1/rewards.txt b/npc/001-1/rewards.txt
index 92e387098..5a1e8971b 100644
--- a/npc/001-1/rewards.txt
+++ b/npc/001-1/rewards.txt
@@ -45,6 +45,7 @@ OnInit:
// Temporary, Seasonal, for events, rare drops, next release
sellitem BlacksmithAxe, 36000;
sellitem DesertBow, 9000;
+ sellitem LeaderWand, 6000;
sellitem MiereCleaver, 3000;
sellitem Chainmail, 3000;
sellitem LeatherShirt, 350;
@@ -56,7 +57,7 @@ OnInit:
// Temporary, but later may sell rare dyes (eg. purple and... golden?)
sellitem RedDye, 50;
sellitem GreenDye, 50;
- sellitem BlueDye, 50;
+ sellitem BlueDye, 40;
// Consumables
sellitem ElixirOfLife,35;
diff --git a/npc/017-1/shops.txt b/npc/017-1/shops.txt
index acf8ce7e2..8d8e5c017 100644
--- a/npc/017-1/shops.txt
+++ b/npc/017-1/shops.txt
@@ -32,3 +32,35 @@ OnClock0112:
end;
}
+
+// Anagram for 'Demure'.
+// Sells wands (therefore, not demure, who plays speed-melee, unless she have a secret shop quest)
+017-1,135,185,0 script Drueme NPC_F_SHOPKEEPER,{
+ shop .name$;
+ close;
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, any(ShortTankTop, CandorShirt, Chainmail));
+ setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
+ setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 10);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 9);
+
+ .sex = G_FEMALE;
+ .distance = 4;
+ tradertype(NST_MARKET);
+
+ sellitem TrainingWand, -1, 3;
+ sellitem NoviceWand, -1, 2;
+ sellitem ApprenticeWand, -1, 1;
+ end;
+
+OnSun0346:
+ restoreshopitem TrainingWand, -1, 3;
+ restoreshopitem NoviceWand, -1, 2;
+ restoreshopitem ApprenticeWand, -1, 1;
+ end;
+
+}