diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-18 01:00:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-18 01:00:40 -0300 |
commit | 9682c3cb93e31ed276f3d790812acb91d2850106 (patch) | |
tree | 379cb3976354c8f22572f241fe054eae6f19b511 /npc/003-1 | |
parent | 68ca62ec5e0dd3baa5c18f83ceae3086043134e7 (diff) | |
download | serverdata-9682c3cb93e31ed276f3d790812acb91d2850106.tar.gz serverdata-9682c3cb93e31ed276f3d790812acb91d2850106.tar.bz2 serverdata-9682c3cb93e31ed276f3d790812acb91d2850106.tar.xz serverdata-9682c3cb93e31ed276f3d790812acb91d2850106.zip |
Several weapons and armors are now sold in shops! \o/
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/neko.txt | 4 | ||||
-rw-r--r-- | npc/003-1/shop.txt | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/npc/003-1/neko.txt b/npc/003-1/neko.txt index c80fdaf79..fd461a47d 100644 --- a/npc/003-1/neko.txt +++ b/npc/003-1/neko.txt @@ -78,6 +78,8 @@ OnInit: sellitem EarthPowder, 12000, 1; sellitem ShortTankTop, 8000, 1; sellitem TrainingBow, 990, 2; + sellitem SilkGloves, -1, 1; + sellitem LeatherTrousers, -1, 1; sellitem CottonCloth, -1, 3; sellitem RoastedMaggot, -1, 2; sellitem ArrowAmmoBox,-1,rand(5,10); @@ -91,6 +93,8 @@ OnInit: end; OnClock1149: + restoreshopitem SilkGloves, -1, 1; + restoreshopitem LeatherTrousers, -1, 1; OnClock2359: restoreshopitem EarthPowder, 12000, 1; restoreshopitem ShortTankTop, 8000, 1; diff --git a/npc/003-1/shop.txt b/npc/003-1/shop.txt index f06af1f46..86ca29bc8 100644 --- a/npc/003-1/shop.txt +++ b/npc/003-1/shop.txt @@ -15,6 +15,9 @@ OnInit: sellitem ArrowAmmoBox, -1, rand(2,4); sellitem Arrow, -1, 30000; sellitem TreasureMap, 600, 1; + sellitem DesertHelmet, -1, 1; + sellitem InfantryHelmet, -1, 1; + sellitem LeatherGloves, -1, 1; sellitem DesertHat, -1, 8; sellitem SilkRobe, -1, 1; sellitem CottonCloth, -1, 2; @@ -28,6 +31,9 @@ OnInit: end; OnClock0621: + restoreshopitem DesertHelmet, 1; + restoreshopitem InfantryHelmet, 1; + restoreshopitem LeatherGloves, 1; OnClock1210: OnClock1757: OnClock0001: |