ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/shop/conv.arc
Revision: 1.8
Committed: Fri Sep 5 03:46:00 2008 UTC (15 years, 10 months ago) by pippijn
Branch: MAIN
CVS Tags: rel-2_82, rel-2_81, rel-2_80, rel-2_7, rel-2_72, rel-2_73, rel-2_71, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_79, rel-2_78
Changes since 1.7: +15 -2 lines
Log Message:
fixed(?) converters

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 pippijn 1.8 food 100
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 pippijn 1.8 object platinum_converter3
91     name convert platinum into royalties
92     slaying platinacoin
93     other_arch royalty
94     face conv.x11
95     food 100
96     type 103
97     move_on walk
98     no_pick 1
99     editable 64
100     visibility 100
101     end
102    
103 root 1.6 object ruby_converter
104     name drop gold to buy rubies
105     slaying goldcoin
106     other_arch ruby
107 root 1.4 face conv.x11
108 root 1.6 food 20
109     type 103
110     move_on walk
111     no_pick 1
112 root 1.3 editable 64
113     visibility 100
114     end
115 root 1.6
116     object silver_converter
117     name convert silver into gold
118     slaying silvercoin
119     other_arch goldcoin
120     face conv.x11
121 pippijn 1.8 food 100
122 root 1.3 type 103
123 root 1.6 move_on walk
124 root 1.3 no_pick 1
125 root 1.1 editable 64
126     visibility 100
127     end
128 root 1.6