ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/class/types.arc
Revision: 1.12
Committed: Tue Nov 3 09:58:20 2009 UTC (14 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-2_90, rel-2_92, rel-2_93
Changes since 1.11: +63 -63 lines
Log Message:
big cfarch-normalize run

File Contents

# Content
1 object class_monster
2 randomitems standard
3 monster 1
4 end
5
6 object class_ranged
7 end
8
9 object class_ranged_item
10 inherit class_ranged
11 body_range -1
12 end
13
14 object class_undead_monster
15 inherit class_monster
16 race undead
17 sound_destroy wn/wail
18 magicmap black
19 undead 1
20 end
21
22 object type_bow
23 inherit class_ranged_item
24 type 14
25 end
26
27 object type_door
28 name door
29 sound_destroy open_door
30 magicmap brown
31 hp 400
32 exp 1
33 ac 10
34 level 1
35 type 23
36 randomitems door
37 move_block all
38 alive 1
39 no_pick 1
40 end
41
42 object type_force
43 face blank.x11
44 type 114
45 invisible 1
46 no_drop 1
47 end
48
49 object type_horn
50 inherit class_ranged_item
51 skill use magic item
52 type 35
53 end
54
55 object type_locked_door
56 inherit type_door
57 sound_destroy misc/doorkickopen
58 type 20
59 end
60
61 object type_player
62 type 1
63 body_range 1
64 body_skill 1
65 body_combat 1
66 body_shield 1
67 end
68
69 object type_rod
70 inherit class_ranged_item
71 skill use magic item
72 type 3
73 end
74
75 object type_shield
76 type 33
77 body_shield -1
78 end
79
80 object type_skill
81 inherit class_ranged
82 type 43
83 body_skill -1
84 end
85
86 object type_skill_tool
87 type 74
88 end
89
90 object type_wand
91 inherit class_ranged_item
92 skill use magic item
93 type 109
94 end
95
96 object type_weapon
97 type 15
98 body_combat -1
99 end
100