From a16368357d60cf19b97167eac2a56329e4f0870f Mon Sep 17 00:00:00 2001 From: Reid Date: Mon, 25 Jan 2016 00:56:54 +0100 Subject: Add light armor shop. --- npc/001-2-0/_import.txt | 1 + npc/001-2-0/shop.txt | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 npc/001-2-0/shop.txt (limited to 'npc') diff --git a/npc/001-2-0/_import.txt b/npc/001-2-0/_import.txt index cee41b13..ec81ea0b 100644 --- a/npc/001-2-0/_import.txt +++ b/npc/001-2-0/_import.txt @@ -1,3 +1,4 @@ npc: npc/001-2-0/mapflags.txt npc: npc/001-2-0/_warps.txt npc: npc/001-2-0/resa.txt +npc: npc/001-2-0/shop.txt diff --git a/npc/001-2-0/shop.txt b/npc/001-2-0/shop.txt new file mode 100644 index 00000000..33ee8865 --- /dev/null +++ b/npc/001-2-0/shop.txt @@ -0,0 +1,32 @@ +// Evol scripts. +// Author: +// Reid +// 4144 +// Description: +// Light armor shop. + +001-2-0,37,29,0 trader Store#001-2-0 NPC_NO_SPRITE,{ + +OnInit: + tradertype(NST_MARKET); + + sellitem ArtisTankTop, -1, 50; + sellitem VneckJumper, -1, 30; + sellitem BrownTrousers, -1, 30; + sellitem BrimmedHat, -1, 35; + + .sex = G_OTHER; + .distance = 2; + end; + +OnClock0000: + restoreshopitem ArtisTankTop, 30; + restoreshopitem VneckJumper, 12; + restoreshopitem BrownTrousers, 15; + restoreshopitem BrimmedHat, 10; +OnClock1200: + restoreshopitem ArtisTankTop, 25; + restoreshopitem VneckJumper, 10; + restoreshopitem BrownTrousers, 10; + restoreshopitem BrimmedHat, 20; +} -- cgit v1.2.3-70-g09d2