ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/class/types.arc
Revision: 1.18
Committed: Sat Apr 3 03:09:26 2010 UTC (14 years, 3 months ago) by root
Branch: MAIN
Changes since 1.17: +9 -6 lines
Log Message:
my fault, but we have multiple inheritance now11111

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