ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/class/types.arc
Revision: 1.23
Committed: Thu Apr 28 11:59:35 2011 UTC (13 years, 1 month ago) by elmex
Branch: MAIN
Changes since 1.22: +12 -0 lines
Log Message:
added quad archetypes.

File Contents

# User Rev Content
1 root 1.12 object class_monster
2     randomitems standard
3     monster 1
4 root 1.1 end
5    
6 root 1.12 object class_undead_monster
7     inherit class_monster
8     race undead
9     sound_destroy wn/wail
10     undead 1
11     end
12    
13 root 1.17 object class_item
14     nrof 1
15     weight 1000000000
16     end
17    
18     object class_vein_extractor
19 root 1.18 inherit type_ranged_item
20 root 1.17 race mining
21     dam 1
22     client_type 451
23     body_arm -2
24 root 1.20 speed 1
25 root 1.17 end
26    
27 root 1.19 object type_player
28     type 1
29     body_range 1
30     body_skill 1
31     body_combat 1
32     body_shield 1
33     end
34    
35     object type_rod
36     inherit type_ranged_item
37     skill use magic item
38     type 3
39     end
40    
41 root 1.17 object type_book
42     skill literacy
43     sound elmex/paper_crumble
44     type 8
45     materialname paper
46     end
47    
48 root 1.19 object type_vein
49 root 1.21 face vein.x11
50 root 1.19 race mining
51     food 1
52     ac 50
53     type 10
54     invisible 1
55     end
56    
57     object type_ranged
58     type 11
59     body_range -1
60     end
61    
62     object type_ranged_item
63     inherit type_ranged,class_item
64     end
65    
66 root 1.1 object type_bow
67 root 1.18 inherit type_ranged_item
68 root 1.19 type 14
69     end
70    
71     object type_weapon
72     type 15
73     body_combat -1
74     end
75    
76     object type_locked_door
77     inherit type_door
78     sound_destroy misc/doorkickopen
79     type 20
80 root 1.12 end
81    
82     object type_door
83     name door
84     sound_destroy open_door
85     hp 400
86     exp 1
87     ac 10
88     level 1
89     type 23
90     randomitems door
91     move_block all
92     alive 1
93     no_pick 1
94     end
95    
96 root 1.19 object type_shield
97     type 33
98     body_shield -1
99 root 1.1 end
100    
101     object type_horn
102 root 1.18 inherit type_ranged_item
103 root 1.12 skill use magic item
104 root 1.1 type 35
105 root 1.12 end
106    
107 root 1.1 object type_skill
108     type 43
109 root 1.4 body_skill -1
110 root 1.1 end
111    
112 root 1.17 object type_skill_hth
113     inherit type_skill
114     dam 1
115     body_combat -1
116     end
117    
118 root 1.1 object type_skill_tool
119     type 74
120     end
121    
122 root 1.17 object type_spell
123     inherit type_ranged
124     type 101
125     end
126    
127 root 1.12 object type_wand
128 root 1.18 inherit type_ranged_item
129 root 1.12 skill use magic item
130     type 109
131 root 1.7 end
132    
133 root 1.19 object type_force
134     face blank.x11
135     type 114
136     invisible 1
137     no_drop 1
138 root 1.11 end
139    
140 elmex 1.23 object type_quad_floor
141     no_pick 1
142     is_floor 1
143     is_quad 1
144     end
145    
146     object type_quad_wall
147     move_block all
148     no_pick 1
149     blocksview 1
150     is_quad 1
151     end