ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/class/types.arc
Revision: 1.4
Committed: Sat May 12 16:08:40 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.3: +10 -5 lines
Log Message:
move body_skill into superclass

File Contents

# Content
1 object type_player
2 type 1
3 body_combat 1
4 body_shield 1
5 body_range 1
6 end
7
8 object type_shield
9 type 33
10 body_shield -1
11 end
12
13 object type_weapon
14 type 15
15 body_combat -1
16 end
17
18 object class_ranged
19 end
20
21 object class_ranged_item
22 inherit class_ranged
23 body_range -1
24 end
25
26 object type_bow
27 type 14
28 inherit class_ranged_item
29 end
30
31 object type_horn
32 type 35
33 inherit class_ranged_item
34 end
35
36 object type_rod
37 type 3
38 inherit class_ranged_item
39 end
40
41 object type_wand
42 type 109
43 inherit class_ranged_item
44 end
45
46 object type_skill
47 type 43
48 body_skill -1
49 inherit class_ranged
50 end
51
52 object type_skill_tool
53 type 74
54 inherit class_ranged_item
55 end
56