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, 2 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

# Content
1 object class_monster
2 randomitems standard
3 monster 1
4 end
5
6 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 object class_item
15 nrof 1
16 weight 1000000000
17 end
18
19 object class_vein_extractor
20 inherit type_ranged_item
21 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 object type_bow
35 inherit type_ranged_item
36 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 end
59
60 object type_horn
61 inherit type_ranged_item
62 skill use magic item
63 type 35
64 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 end
79
80 object type_ranged
81 type 11
82 body_range -1
83 end
84
85 object type_ranged_item
86 inherit type_ranged,class_item
87 end
88
89 object type_rod
90 inherit type_ranged_item
91 skill use magic item
92 type 3
93 end
94
95 object type_shield
96 type 33
97 body_shield -1
98 end
99
100 object type_skill
101 type 43
102 body_skill -1
103 end
104
105 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 object type_skill_tool
114 type 74
115 end
116
117 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 object type_wand
131 inherit type_ranged_item
132 skill use magic item
133 type 109
134 end
135
136 object type_weapon
137 type 15
138 body_combat -1
139 end
140