ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/light/torch.arc
Revision: 1.12
Committed: Tue Jan 13 12:08:12 2009 UTC (15 years, 5 months ago) by elmex
Branch: MAIN
Changes since 1.11: +24 -9 lines
Log Message:
fixed dim_torch and torch_1 archetype to be on and made torch_pyro and torch arch
for non lighted torches.

File Contents

# User Rev Content
1 elmex 1.9 object torch_type
2     other_arch torch_type_on
3 elmex 1.12 face torch_pyro_unlit.x11
4 elmex 1.9 anim
5 elmex 1.12 torch_pyro_unlit.x11
6 elmex 1.9 mina
7     food 144
8     speed 0.15
9 root 1.8 materialname ironwood
10 elmex 1.9 value 5
11 root 1.8 weight 500
12 elmex 1.9 range 2
13 root 1.8 client_type 1102
14     editable 128
15 elmex 1.9 type 81
16     magicmap brown
17 root 1.8 end
18    
19 elmex 1.12 object torch_pyro
20 elmex 1.9 inherit torch_type
21     name pyrophor torch
22     name_pl pyrophor torches
23 root 1.10 msg
24     This unique product will be revolutionising the torch business! Due to
25     remarkable technologies used to produce it, it doesn't need any special
26     means of lighting it, instead, you can start the fire simply by rubbing it
27     at a rough surface: It even lights up when you club it into the face of a
28     monster! No flint & steel is required!
29    
30     Unfortunately, the light it gives off is not yet very strong, and once
31     burning, they can not be extinguished anymore. But at least it is cheap,
32     and it burns for over I<three hours>!
33    
34     H<Dim torches are easy to use, but they are the least effective of all
35     available lights. They are good enough for about 10 minutes of playing
36     time.>
37     endmsg
38 elmex 1.9 end
39    
40 elmex 1.12 object torch
41 elmex 1.9 inherit torch_type
42 root 1.6 name torch
43 root 1.8 name_pl torches
44 elmex 1.12 face torch_unlit.x11
45     anim
46     torch_unlit.x11
47     mina
48 elmex 1.9 food 480
49     value 20
50     range 3
51 root 1.6 is_lightable 1
52 root 1.10 msg
53     This is your standard torch: Due to being used so widely, standard torches
54 root 1.11 are cheap and reliable. They give as much light as lanterns, but are far
55     cheaper. This torch requires flint & steel to light it, and is good for
56     over three hours of adventuring. You can even extinguish them when you
57     don't need them, saving them up for later.
58 root 1.10
59 root 1.11 H<These torches give more light than dim torches. If you have flint &
60     steel, you can light and extinguish them as often as you want. They are good enough
61     for about 10 minutes of playing time.>
62 root 1.10 endmsg
63 root 1.3 end
64 root 1.8
65 elmex 1.12 object dim_torch
66     inherit torch_pyro
67     name pyrophor torch
68     name_pl pyrophor torches
69     glow_radius 2
70     end
71    
72     object torch_1
73     inherit torch
74     name torch
75     name_pl torches
76     glow_radius 3
77     end
78    
79 elmex 1.9 object torch_unlit
80 elmex 1.12 inherit torch
81 elmex 1.9 name torch
82     name_pl torches
83     end
84    
85     object torch_type_on
86 root 1.5 anim
87     torch_lit1.x11
88     torch_lit2.x11
89     mina
90     end
91 root 1.8
92 elmex 1.9 object burnt_torch
93 elmex 1.12 inherit torch
94 elmex 1.9 name burnt out torch
95     name_pl burnt out torches
96 root 1.3 nrof 1
97 elmex 1.9 food 0
98 root 1.10 msg
99     This is your standard torch, unfortunately, it is burned down. Except for
100     poking into other people's eyes with them, they are next to useless.
101     endmsg
102 root 1.1 end
103 root 1.10