vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function ReagentData_LoadMining()
2 ReagentData['crafted']['mining'] = {
3 ['Smelt Copper'] = {
4 skill = 1,
5 description = 'Copper Bar',
6 source = 'Trainer',
7 result = 1,
8 reagents = {
9 [ReagentData['ore']['copper']] = 1,
10 }
11 },
12 ['Smelt Bronze'] = {
13 skill = 65,
14 description = 'Bronze Bar',
15 source = 'Trainer',
16 result = 2,
17 reagents = {
18 [ReagentData['bar']['tin']] = 1,
19 [ReagentData['bar']['copper']] = 1,
20 }
21 },
22 ['Smelt Tin'] = {
23 skill = 65,
24 description = 'Tin Bar',
25 source = 'Trainer',
26 result = 1,
27 reagents = {
28 [ReagentData['ore']['tin']] = 1,
29 }
30 },
31 ['Smelt Silver'] = {
32 skill = 75,
33 description = 'Silver Bar',
34 source = 'Trainer',
35 result = 1,
36 resultrarity = 'Uncommon',
37 reagents = {
38 [ReagentData['ore']['silver']] = 1,
39 }
40 },
41 ['Smelt Iron'] = {
42 skill = 125,
43 description = 'Iron Bar',
44 source = 'Trainer',
45 result = 1,
46 reagents = {
47 [ReagentData['ore']['iron']] = 1,
48 }
49 },
50 ['Smelt Gold'] = {
51 skill = 155,
52 description = 'Gold Bar',
53 source = 'Trainer',
54 result = 1,
55 resultrarity = 'Uncommon',
56 reagents = {
57 [ReagentData['ore']['gold']] = 1,
58 }
59 },
60 ['Smelt Steel'] = {
61 skill = 165,
62 description = 'Steel Bar',
63 source = 'Trainer',
64 result = 1,
65 reagents = {
66 [ReagentData['bar']['iron']] = 1,
67 [ReagentData['vendorother']['coal']] = 1,
68 }
69 },
70 ['Smelt Mithril'] = {
71 skill = 175,
72 description = 'Mithril Bar',
73 source = 'Trainer',
74 result = 1,
75 reagents = {
76 [ReagentData['ore']['mithril']] = 1,
77 }
78 },
79 ['Smelt Dark Iron'] = {
80 skill = 230,
81 description = 'Dark Iron Bar',
82 source = 'Trainer',
83 result = 1,
84 reagents = {
85 [ReagentData['ore']['darkiron']] = 8,
86 }
87 },
88 ['Smelt Truesilver'] = {
89 skill = 230,
90 description = 'Truesilver Bar',
91 source = 'Trainer',
92 result = 1,
93 resultrarity = 'Uncommon',
94 reagents = {
95 [ReagentData['ore']['truesilver']] = 1,
96 }
97 },
98 ['Smelt Thorium'] = {
99 skill = 250,
100 description = 'Thorium Bar',
101 source = 'Trainer',
102 result = 1,
103 reagents = {
104 [ReagentData['ore']['thorium']] = 1,
105 }
106 },
107 ['Smelt Elementium'] = {
108 skill = 300,
109 description = 'Elementium Bar',
110 source = 'Quest',
111 result = 1,
112 reagents = {
113 [ReagentData['ore']['elementium']] = 1,
114 [ReagentData['bar']['arcanite']] = 10,
115 [ReagentData['monster']['fierycore']] = 1,
116 [ReagentData['flux']['elemental']] = 3,
117 }
118 },
119 }
120 end