summaryrefslogtreecommitdiff
path: root/npc/cave1/miners.txt
blob: 0e6ed68dceeef717dab47156388703acda3b326d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
new_2-1.gat,35,35,6	script	Miner	109,{
	mes "[Miner]";
	mes "It's very dangerous in here";
	mes "Be careful";
	close;
}

new_1-1.gat,19,99,0	shop	CaveShop	109,525:800,531:3000,530:8000,1199:2

new_5-1.gat,32,94,6	script	Lift	109,{
	mes "[Miner]";
	mes "Do you want me to lift you to the upper level?";
	next;
	menu
	"Sure",sure,
	"Not yet!",notyet;

sure:
	warp "new_2-1.gat",87,99;
	close;

notyet:
	close;
}

new_2-1.gat,85,97,6	script	LiftDown	109,{
	mes "[Miner]";
	mes "We discovered an underground palace";
	mes "Do you want me to let you in?";
	next;
	menu
	"Sure",sure,
	"Not yet!",notyet;

sure:
	warp "new_5-1.gat",34,92;
	close;

notyet:
	close;
}