summaryrefslogtreecommitdiff
path: root/npc/tulimshar/barber.txt
blob: 35104b2dc44399033c6b2ce5d961e0c81e0e5c63 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
new_3-1.gat,102,31,0	script	Barber	100,{
	mes "[Barber]";
	mes "I'm the greatest barber in the whole mana world! Would you like a change of style or color?";
	next;

	menu
	"Change my style",style,
	"Change my color",color,
	"Nah I'm fine",fine;

style:
	menu
	"Classic",style1,
	"Curly",style2,
	"Scruffy",style3,
	"Slick",style4,
	"Mohawk",style5,
	"Uncombed",style6;

style1:
	setlook 1,1;
	close;
style2:
	setlook 1,2;
	close;
style3:
	setlook 1,3;
	close;
style4:
	setlook 1,4;
	close;
style5:
	setlook 1,5;
	close;
style6:
        setlook 1,6;
	close;

color:
	menu
	"Orange",orange,
	"Green",green,
	"Red",red,
	"Purple",purple,
	"White",white,
	"Blonde",blonde,
	"Light blue",lightblue,
	"Brown",brown,
	"Blue",blue,
	"Violet",violet,
	"No hair",nohair;

fine:
	close;

orange:
	setlook 6,1;
	close;
green:
	setlook 6,2;
	close;
red:
	setlook 6,3;
	close;
purple:
	setlook 6,4;
	close;
white:
	setlook 6,5;
	close;
blonde:
	setlook 6,6;
	close;
lightblue:
	setlook 6,7;
	close;
brown:
	setlook 6,8;
	close;
blue:
	setlook 6,9;
	close;
violet:
	setlook 6,10;
	close;
nohair:
	setlook 6,11;
	close;
}