ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/shop/conv.arc
Revision: 1.7
Committed: Mon Apr 14 21:43:42 2008 UTC (16 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_6, rel-2_5, rel-2_54, rel-2_55, rel-2_56, rel-2_53, rel-2_61
Changes since 1.6: +0 -1 lines
Log Message:
quickfix set sp to 0 as with any other converter

File Contents

# User Rev Content
1 root 1.5 object diamond_converter
2 root 1.1 name drop gold to buy diamonds
3 root 1.6 slaying goldcoin
4 root 1.4 other_arch gem
5 root 1.6 face conv.x11
6 root 1.1 food 40
7     type 103
8 root 1.6 move_on walk
9 root 1.1 no_pick 1
10     editable 64
11 root 1.6 magicmap light_blue
12 root 1.4 visibility 100
13     end
14 root 1.6
15     object gold_converter
16     name convert gold into platinum
17 root 1.4 slaying goldcoin
18 root 1.6 other_arch platinacoin
19     face conv.x11
20     food 5
21 root 1.4 type 103
22 root 1.6 move_on walk
23 root 1.4 no_pick 1
24     editable 64
25 root 1.1 visibility 100
26     end
27 root 1.6
28     # DON'T USE THIS OBJECT YET
29     # it needs some server code which is under discussion
30     # a character having amberium or jade coins without the server code in
31     # place would be able to simply walk out of shops with stuff, without
32     # actually paying anything.
33     object jade_converter
34     name convert jade into amberium
35     slaying jadecoin
36     other_arch ambercoin
37 root 1.4 face conv.x11
38 root 1.6 food 100
39 root 1.1 type 103
40 root 1.6 move_on walk
41 root 1.1 no_pick 1
42     editable 64
43     visibility 100
44     end
45 root 1.6
46     object pearl_converter
47     name drop gold to buy pearls
48 root 1.1 slaying goldcoin
49 root 1.6 other_arch pearl
50     face conv.x11
51 root 1.1 food 5
52     type 103
53 root 1.6 move_on walk
54 root 1.1 no_pick 1
55     editable 64
56     visibility 100
57     end
58 root 1.6
59 root 1.5 object platinum_converter
60 root 1.1 name convert platinum into gold
61 root 1.6 slaying platinacoin
62 root 1.4 other_arch goldcoin
63 root 1.6 face conv.x11
64 root 1.4 food 1
65 root 1.1 type 103
66 root 1.6 move_on walk
67 root 1.1 no_pick 1
68 pippijn 1.2 editable 64
69     visibility 100
70     end
71 root 1.6
72 pippijn 1.2 # DON'T USE THIS OBJECT YET
73     # it needs some server code which is under discussion
74     # a character having amberium or jade coins without the server code in
75     # place would be able to simply walk out of shops with stuff, without
76     # actually paying anything.
77 root 1.5 object platinum_converter2
78 pippijn 1.2 name convert platinum into jade
79 root 1.6 slaying platinacoin
80 root 1.4 other_arch jadecoin
81 root 1.6 face conv.x11
82 pippijn 1.2 food 100
83     type 103
84 root 1.6 move_on walk
85 pippijn 1.2 no_pick 1
86 root 1.6 editable 64
87     visibility 100
88     end
89    
90     object ruby_converter
91     name drop gold to buy rubies
92     slaying goldcoin
93     other_arch ruby
94 root 1.4 face conv.x11
95 root 1.6 food 20
96     type 103
97     move_on walk
98     no_pick 1
99 root 1.3 editable 64
100     visibility 100
101     end
102 root 1.6
103     object silver_converter
104     name convert silver into gold
105     slaying silvercoin
106     other_arch goldcoin
107     face conv.x11
108     food 10
109 root 1.3 type 103
110 root 1.6 move_on walk
111 root 1.3 no_pick 1
112 root 1.1 editable 64
113     visibility 100
114     end
115 root 1.6