ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/shop/conv.arc
Revision: 1.13
Committed: Tue Jul 16 18:56:50 2019 UTC (4 years, 10 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.12: +1 -0 lines
Log Message:
*** empty log message ***

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