ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/class/types.arc
Revision: 1.17
Committed: Fri Apr 2 21:26:11 2010 UTC (14 years, 3 months ago) by root
Branch: MAIN
Changes since 1.16: +51 -37 lines
Log Message:
clean app classes/types, add spell type and use it

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
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
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
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 inherit class_item
82 type 11
83 body_range -1
84 end
85
86 object type_rod
87 inherit type_ranged
88 skill use magic item
89 type 3
90 end
91
92 object type_shield
93 type 33
94 body_shield -1
95 end
96
97 object type_skill
98 type 43
99 body_skill -1
100 end
101
102 object type_skill_hth
103 inherit type_skill
104 dam 1
105 type 43
106 body_skill -1
107 body_combat -1
108 end
109
110 object type_skill_tool
111 type 74
112 end
113
114 object type_spell
115 inherit type_ranged
116 type 101
117 end
118
119 object type_vein
120 race mining
121 food 1
122 ac 50
123 type 10
124 invisible 1
125 end
126
127 object type_wand
128 inherit type_ranged
129 skill use magic item
130 type 109
131 end
132
133 object type_weapon
134 type 15
135 body_combat -1
136 end
137