vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function ReagentData_LoadEngineering()
2 ReagentData['crafted']['engineering'] = {
3 ['Crafted Light Shot'] = {
4 skill = 1,
5 description = 'MinLvl: 5, Projectile, Bullet, Adds 2 damage per second',
6 type = 'Bullet',
7 source = 'Trainer',
8 result = 200,
9 reagents = {
10 [ReagentData['powder']['rough']] = 1,
11 [ReagentData['bar']['copper']] = 1,
12 }
13 },
14 ['Rough Blasting Powder'] = {
15 skill = 1,
16 description = 'Rough Blasting Powder',
17 type = 'Parts',
18 source = 'Trainer',
19 result = 1,
20 reagents = {
21 [ReagentData['stone']['rough']] = 1,
22 }
23 },
24 ['Rough Dynamite'] = {
25 skill = 1,
26 description = 'Requires Engineering (1), Use: Inflicts 26 to 34 Fire damage in a 5 yard radius.',
27 type = 'Explosives',
28 source = 'Trainer',
29 result = 2,
30 reagents = {
31 [ReagentData['powder']['rough']] = 2,
32 [ReagentData['cloth']['linen']] = 1,
33 }
34 },
35 ['Handful of Copper Bolts'] = {
36 skill = 30,
37 description = 'Handful of Copper Bolts',
38 type = 'Parts',
39 source = 'Trainer',
40 result = 1,
41 reagents = {
42 [ReagentData['bar']['copper']] = 1,
43 }
44 },
45 ['Rough Copper Bomb'] = {
46 skill = 30,
47 description = 'Requires Engineering (30), Use: Inflicts 22 to 28 Fire damage and disorients targets in a 3 yard radius for 1 sec.',
48 type = 'Explosives',
49 source = 'Trainer',
50 result = 2,
51 reagents = {
52 [ReagentData['part']['handfulofcopperbolts']] = 1,
53 [ReagentData['powder']['rough']] = 2,
54 [ReagentData['cloth']['linen']] = 1,
55 [ReagentData['bar']['copper']] = 1,
56 }
57 },
58 ['Arclight Spanner'] = {
59 skill = 50,
60 description = 'Dmg: 5-8, Spd: 2.40, DPS: 2.7, Main Hand, Requires Engineering (50)',
61 type = 'Miscellaneous',
62 source = 'Trainer',
63 result = 1,
64 reagents = {
65 [ReagentData['bar']['copper']] = 6,
66 }
67 },
68 ['Copper Tube'] = {
69 skill = 50,
70 description = 'Copper Tube',
71 type = 'Parts',
72 source = 'Trainer',
73 result = 1,
74 reagents = {
75 [ReagentData['flux']['weak']] = 1,
76 [ReagentData['bar']['copper']] = 2,
77 }
78 },
79 ['Rough Boomstick'] = {
80 skill = 50,
81 description = '[BoE] (Gun) Dmg: 6-13, Spd: 2.30, DPS: 4.1, MinLvl: 5',
82 type = 'Gun',
83 source = 'Trainer',
84 result = 1,
85 resultrarity = 'Uncommon',
86 reagents = {
87 [ReagentData['part']['handfulofcopperbolts']] = 1,
88 [ReagentData['part']['coppertube']] = 1,
89 [ReagentData['part']['woodenstock']] = 1,
90 }
91 },
92 ['Crude Scope'] = {
93 skill = 60,
94 description = 'MinLvl: 5, Use: Attaches a permanent scope to a bow or gun that increases its damage by 1.',
95 type = 'Devices',
96 source = 'Trainer',
97 result = 1,
98 reagents = {
99 [ReagentData['gem']['malachite']] = 1,
100 [ReagentData['part']['handfulofcopperbolts']] = 1,
101 [ReagentData['part']['coppertube']] = 1,
102 }
103 },
104 ['Copper Modulator'] = {
105 skill = 65,
106 description = 'Copper Modulator',
107 type = 'Parts',
108 source = 'Trainer',
109 result = 1,
110 reagents = {
111 [ReagentData['part']['handfulofcopperbolts']] = 2,
112 [ReagentData['cloth']['linen']] = 2,
113 [ReagentData['bar']['copper']] = 1,
114 }
115 },
116 ['Coarse Blasting Powder'] = {
117 skill = 75,
118 description = 'Coarse Blasting Powder',
119 type = 'Parts',
120 source = 'Trainer',
121 result = 1,
122 reagents = {
123 [ReagentData['stone']['coarse']] = 1,
124 }
125 },
126 ['Coarse Dynamite'] = {
127 skill = 75,
128 description = 'Requires Engineering (75), Use: Inflicts 51 to 69 Fire damage in a 5 yard radius.',
129 type = 'Explosives',
130 source = 'Trainer',
131 result = 1,
132 reagents = {
133 [ReagentData['powder']['coarse']] = 3,
134 [ReagentData['cloth']['linen']] = 1,
135 }
136 },
137 ['Crafted Heavy Shot'] = {
138 skill = 75,
139 description = 'MinLvl: 15, Projectile, Bullet, Adds 4.5 damage per second',
140 type = 'Bullet',
141 source = 'Trainer',
142 result = 200,
143 reagents = {
144 [ReagentData['powder']['coarse']] = 1,
145 [ReagentData['bar']['copper']] = 1,
146 }
147 },
148 ['Mechanical Squirrel'] = {
149 skill = 75,
150 description = 'Binds when used, Use: Creates a Mechanical Squirrel that follows you around. Right Click to summon and dismiss your Squirrel.',
151 type = 'Devices',
152 source = 'Drop:Schematic: Mechanical Squirrel',
153 sourcerarity = 'Uncommon',
154 result = 1,
155 resultname = 'Mechanical Squirrel Box',
156 reagents = {
157 [ReagentData['part']['handfulofcopperbolts']] = 1,
158 [ReagentData['gem']['malachite']] = 2,
159 [ReagentData['part']['coppermodulator']] = 1,
160 [ReagentData['bar']['copper']] = 1,
161 }
162 },
163 ['Target Dummy'] = {
164 skill = 85,
165 description = 'Requires Engineering (85), Use: Drops a target dummy on the ground that attracts nearby monsters to attack it. Lasts for 3 min.',
166 type = 'Devices',
167 source = 'Trainer',
168 result = 1,
169 reagents = {
170 [ReagentData['part']['handfulofcopperbolts']] = 2,
171 [ReagentData['cloth']['wool']] = 1,
172 [ReagentData['bar']['bronze']] = 1,
173 [ReagentData['part']['coppermodulator']] = 1,
174 }
175 },
176 ['Silver Contact'] = {
177 skill = 90,
178 description = 'Silver Contact',
179 type = 'Parts',
180 source = 'Trainer',
181 result = 5,
182 reagents = {
183 [ReagentData['bar']['silver']] = 1,
184 }
185 },
186 ['EZ-Thro Dynamite'] = {
187 skill = 100,
188 description = 'MinLvl: 10, Use: The dynamite for Non-Engineers that nearly always gets to the target! Inflicts 51 to 69 Fire damage in a 5 yard radius.',
189 type = 'Explosives',
190 source = 'Drop:Schematic: EZ-Thro Dynamite',
191 sourcerarity = 'Uncommon',
192 result = 1,
193 resultname = 'Ez-Thro Dynamite',
194 reagents = {
195 [ReagentData['cloth']['wool']] = 1,
196 [ReagentData['powder']['coarse']] = 4,
197 }
198 },
199 ['Flying Tiger Goggles'] = {
200 skill = 100,
201 description = '[BoE] (Cloth Head) AC: 27, Sta: 4, Spi: 4, Requires Engineering (100)',
202 type = 'Cloth',
203 source = 'Trainer',
204 result = 1,
205 resultrarity = 'Uncommon',
206 reagents = {
207 [ReagentData['leather']['light']] = 6,
208 [ReagentData['gem']['tigerseye']] = 2,
209 }
210 },
211 ['Practice Lock'] = {
212 skill = 100,
213 description = 'Practice Lock',
214 type = 'Misc',
215 source = 'Trainer',
216 result = 1,
217 reagents = {
218 [ReagentData['part']['handfulofcopperbolts']] = 2,
219 [ReagentData['bar']['bronze']] = 1,
220 [ReagentData['flux']['weak']] = 1,
221 }
222 },
223 ['Small Seaforium Charge'] = {
224 skill = 100,
225 description = 'Requires Engineering (100), Use: Blasts open simple locked doors.',
226 type = 'Explosives',
227 source = 'Drop:Schematic: Small Seaforium Charge',
228 sourcerarity = 'Uncommon',
229 result = 1,
230 reagents = {
231 [ReagentData['leather']['light']] = 1,
232 [ReagentData['powder']['coarse']] = 2,
233 [ReagentData['part']['coppermodulator']] = 1,
234 [ReagentData['drink']['refreshingspringwater']] = 1,
235 }
236 },
237 ['Bronze Tube'] = {
238 skill = 105,
239 description = 'Bronze Tube',
240 type = 'Parts',
241 source = 'Trainer',
242 result = 1,
243 reagents = {
244 [ReagentData['bar']['bronze']] = 2,
245 [ReagentData['flux']['weak']] = 1,
246 }
247 },
248 ['Deadly Blunderbuss'] = {
249 skill = 105,
250 description = '[BoE] (Gun) Dmg: 15-28, Spd: 2.60, DPS: 8.3, MinLvl: 16',
251 type = 'Gun',
252 source = 'Trainer',
253 result = 1,
254 resultrarity = 'Uncommon',
255 reagents = {
256 [ReagentData['part']['handfulofcopperbolts']] = 4,
257 [ReagentData['part']['coppertube']] = 2,
258 [ReagentData['part']['woodenstock']] = 1,
259 [ReagentData['leather']['medium']] = 2,
260 }
261 },
262 ['Large Copper Bomb'] = {
263 skill = 105,
264 description = 'Requires Engineering (105), Use: Inflicts 43 to 57 Fire damage and disorients targets in a 5 yard radius for 1 sec.',
265 type = 'Explosives',
266 source = 'Trainer',
267 result = 2,
268 reagents = {
269 [ReagentData['part']['silvercontact']] = 1,
270 [ReagentData['powder']['coarse']] = 4,
271 [ReagentData['bar']['copper']] = 3,
272 }
273 },
274 ['Standard Scope'] = {
275 skill = 110,
276 description = 'MinLvl: 10, Use: Attaches a permanent scope to a bow or gun that increases its damage by 2.',
277 type = 'Devices',
278 source = 'Trainer',
279 result = 1,
280 reagents = {
281 [ReagentData['gem']['mossagate']] = 1,
282 [ReagentData['part']['bronzetube']] = 1,
283 }
284 },
285 ['Lovingly Crafted Boomstick'] = {
286 skill = 120,
287 description = '[BoE] (Gun) Dmg: 12-23, Spd: 1.80, DPS: 9.7, MinLvl: 19',
288 type = 'Gun',
289 source = 'Vendor:Schematic: Lovingly Crafted Boomstick',
290 result = 1,
291 resultrarity = 'Uncommon',
292 reagents = {
293 [ReagentData['part']['handfulofcopperbolts']] = 2,
294 [ReagentData['gem']['mossagate']] = 3,
295 [ReagentData['part']['heavystock']] = 1,
296 [ReagentData['part']['bronzetube']] = 2,
297 }
298 },
299 ['Shadow Goggles'] = {
300 skill = 120,
301 description = '[BoE] (Cloth Head) AC: 31, Int: 5, Spi: 6, Requires Engineering (120)',
302 type = 'Cloth',
303 source = 'Drop:Schematic: Shadow Goggles',
304 sourcerarity = 'Uncommon',
305 result = 1,
306 resultrarity = 'Uncommon',
307 reagents = {
308 [ReagentData['gem']['shadow']] = 2,
309 [ReagentData['leather']['medium']] = 4,
310 }
311 },
312 ['Small Bronze Bomb'] = {
313 skill = 120,
314 description = 'Requires Engineering (120), Use: Inflicts 73 to 97 Fire damage and disorients targets in a 3 yard radius for 2 sec.',
315 type = 'Explosives',
316 source = 'Trainer',
317 result = 1,
318 reagents = {
319 [ReagentData['part']['silvercontact']] = 1,
320 [ReagentData['cloth']['wool']] = 1,
321 [ReagentData['bar']['bronze']] = 2,
322 [ReagentData['powder']['coarse']] = 4,
323 }
324 },
325 ['Crafted Solid Shot'] = {
326 skill = 125,
327 description = 'MinLvl: 30, Projectile, Bullet, Adds 8.5 damage per second',
328 type = 'Bullet',
329 source = 'Trainer',
330 result = 200,
331 reagents = {
332 [ReagentData['bar']['bronze']] = 1,
333 [ReagentData['powder']['heavy']] = 1,
334 }
335 },
336 ['Flame Deflector'] = {
337 skill = 125,
338 description = 'MinLvl: 15, Use: Increases your Fire resistance by 15 for 15 sec.',
339 type = 'Devices',
340 source = 'Drop:Schematic: Flame Deflector',
341 sourcerarity = 'Uncommon',
342 result = 1,
343 reagents = {
344 [ReagentData['part']['whirringbronzegizmo']] = 1,
345 [ReagentData['monster']['smallflamesac']] = 1,
346 }
347 },
348 ['Gnomish Universal Remote'] = {
349 skill = 125,
350 description = '[BoE] (Trinket) Requires Engineering (125), Use: Allows control of a mechanical target for a short time. It may not always work and may just root the machine or make it very very angry. Gnomish engineering at its finest.',
351 type = 'Devices',
352 source = 'Drop, Vendor:Schematic: Gnomish Universal Remote',
353 result = 1,
354 resultrarity = 'Uncommon',
355 reagents = {
356 [ReagentData['gem']['malachite']] = 1,
357 [ReagentData['bar']['bronze']] = 6,
358 [ReagentData['monster']['flaskofoil']] = 2,
359 [ReagentData['part']['whirringbronzegizmo']] = 1,
360 [ReagentData['gem']['tigerseye']] = 1,
361 }
362 },
363 ['Heavy Blasting Powder'] = {
364 skill = 125,
365 description = 'Heavy Blasting Powder',
366 type = 'Parts',
367 source = 'Trainer',
368 result = 1,
369 reagents = {
370 [ReagentData['stone']['heavy']] = 1,
371 }
372 },
373 ['Heavy Dynamite'] = {
374 skill = 125,
375 description = 'Requires Engineering (125), Use: Inflicts 128 to 172 Fire damage in a 5 yard radius.',
376 type = 'Explosives',
377 source = 'Trainer',
378 result = 1,
379 reagents = {
380 [ReagentData['cloth']['wool']] = 1,
381 [ReagentData['powder']['heavy']] = 2,
382 }
383 },
384 ['Small Blue Rocket'] = {
385 skill = 125,
386 description = 'Use: Throw into a firework launcher!',
387 type = 'Firework',
388 source = 'Quest:Schematic: Small Blue Rocket',
389 result = 1,
390 reagents = {
391 [ReagentData['powder']['coarse']] = 1,
392 [ReagentData['leather']['medium']] = 1,
393 }
394 },
395 ['Small Green Rocket'] = {
396 skill = 125,
397 description = 'Use: Throw into a firework launcher!',
398 type = 'Firework',
399 source = 'Quest:Schematic: Small Green Rocket',
400 result = 1,
401 reagents = {
402 [ReagentData['powder']['coarse']] = 1,
403 [ReagentData['leather']['medium']] = 1,
404 }
405 },
406 ['Small Red Rocket'] = {
407 skill = 125,
408 description = 'Use: Throw into a firework launcher!',
409 type = 'Firework',
410 source = 'Quest:Schematic: Small Red Rocket',
411 result = 1,
412 reagents = {
413 [ReagentData['powder']['coarse']] = 1,
414 [ReagentData['leather']['medium']] = 1,
415 }
416 },
417 ['Whirring Bronze Gizmo'] = {
418 skill = 125,
419 description = 'Whirring Bronze Gizmo',
420 type = 'Parts',
421 source = 'Trainer',
422 result = 1,
423 reagents = {
424 [ReagentData['cloth']['wool']] = 1,
425 [ReagentData['bar']['bronze']] = 2,
426 }
427 },
428 ['Silver-plated Shotgun'] = {
429 skill = 130,
430 description = '[BoE] (Gun) Dmg: 19-37, Spd: 2.70, DPS: 10.4, MinLvl: 21',
431 type = 'Gun',
432 source = 'Trainer',
433 result = 1,
434 resultrarity = 'Uncommon',
435 reagents = {
436 [ReagentData['part']['heavystock']] = 1,
437 [ReagentData['part']['bronzetube']] = 2,
438 [ReagentData['part']['whirringbronzegizmo']] = 2,
439 [ReagentData['bar']['silver']] = 3,
440 }
441 },
442 ['Ornate Spyglass'] = {
443 skill = 135,
444 description = 'Use: Allows you to look far into the distance.',
445 type = 'Devices',
446 source = 'Trainer',
447 result = 1,
448 reagents = {
449 [ReagentData['gem']['mossagate']] = 1,
450 [ReagentData['part']['bronzetube']] = 2,
451 [ReagentData['part']['whirringbronzegizmo']] = 2,
452 [ReagentData['part']['coppermodulator']] = 1,
453 }
454 },
455 ['Big Bronze Bomb'] = {
456 skill = 140,
457 description = 'Requires Engineering (140), Use: Inflicts 85 to 115 Fire damage and disorients targets in a 5 yard radius for 2 sec.',
458 type = 'Explosives',
459 source = 'Trainer',
460 result = 2,
461 reagents = {
462 [ReagentData['part']['silvercontact']] = 1,
463 [ReagentData['bar']['bronze']] = 3,
464 [ReagentData['powder']['heavy']] = 2,
465 }
466 },
467 ['Minor Recombobulator'] = {
468 skill = 140,
469 description = '(Trinket) Requires Engineering (140), Use: Dispels Polymorph effects on a friendly target.',
470 type = 'Devices',
471 source = 'Vendor:Schematic: Minor Recombobulator',
472 result = 1,
473 resultrarity = 'Uncommon',
474 reagents = {
475 [ReagentData['gem']['mossagate']] = 1,
476 [ReagentData['part']['bronzetube']] = 1,
477 [ReagentData['part']['whirringbronzegizmo']] = 2,
478 [ReagentData['leather']['medium']] = 2,
479 }
480 },
481 ['Bronze Framework'] = {
482 skill = 145,
483 description = 'Bronze Framework',
484 type = 'Parts',
485 source = 'Trainer',
486 result = 1,
487 reagents = {
488 [ReagentData['cloth']['wool']] = 1,
489 [ReagentData['bar']['bronze']] = 2,
490 [ReagentData['leather']['medium']] = 1,
491 }
492 },
493 ['Moonsight Rifle'] = {
494 skill = 145,
495 description = '[BoE] (Gun) Dmg: 14-26, Spd: 1.70, DPS: 11.8, MinLvl: 24',
496 type = 'Gun',
497 source = 'Drop:Schematic: Moonsight Rifle',
498 sourcerarity = 'Uncommon',
499 result = 1,
500 resultrarity = 'Uncommon',
501 reagents = {
502 [ReagentData['part']['heavystock']] = 1,
503 [ReagentData['part']['bronzetube']] = 3,
504 [ReagentData['part']['whirringbronzegizmo']] = 3,
505 [ReagentData['gem']['lessermoonstone']] = 2,
506 }
507 },
508 ['Aquadynamic Fish Attractor'] = {
509 skill = 150,
510 description = 'Requires Fishing (100), Use: When applied to your fishing pole, increases Fishing by 100 for 5 minutes.',
511 type = 'Devices',
512 source = 'Trainer',
513 result = 3,
514 reagents = {
515 [ReagentData['bar']['bronze']] = 2,
516 [ReagentData['vendorother']['nightcrawlers']] = 1,
517 [ReagentData['powder']['coarse']] = 1,
518 }
519 },
520 ['Explosive Sheep'] = {
521 skill = 150,
522 description = 'Requires Engineering (150), Use: Summons an Explosive Sheep which will charge at a nearby enemy and explode for 135 to 165 damage. Lasts for 3 min or until it explodes.',
523 type = 'Explosives',
524 source = 'Trainer',
525 result = 1,
526 reagents = {
527 [ReagentData['cloth']['wool']] = 2,
528 [ReagentData['part']['whirringbronzegizmo']] = 1,
529 [ReagentData['powder']['heavy']] = 2,
530 [ReagentData['part']['bronzeframework']] = 1,
531 }
532 },
533 ['Gold Power Core'] = {
534 skill = 150,
535 description = 'Gold Power Core',
536 type = 'Parts',
537 source = 'Trainer',
538 result = 3,
539 reagents = {
540 [ReagentData['bar']['gold']] = 1,
541 }
542 },
543 ['Blue Firework'] = {
544 skill = 150,
545 description = 'Use: Shoots a firework into the air that bursts into a thousand blue stars. ',
546 type = 'Firework',
547 source = 'Vendor:Schematic: Blue Firework',
548 result = 3,
549 reagents = {
550 [ReagentData['powder']['heavy']] = 1,
551 [ReagentData['leather']['heavy']] = 1,
552 },
553 },
554 ['Green Firework'] = {
555 skill = 150,
556 description = 'Use: Shoots a firework into the air that bursts into a thousand green stars. ',
557 type = 'Firework',
558 source = 'Vendor:Schematic: Green Firework',
559 result = 3,
560 reagents = {
561 [ReagentData['powder']['heavy']] = 1,
562 [ReagentData['leather']['heavy']] = 1,
563 },
564 },
565 ['Red Firework'] = {
566 skill = 150,
567 description = 'Use: Shoots a firework into the air that bursts into a thousand red stars. ',
568 type = 'Firework',
569 source = 'Vendor:Schematic: Red Firework',
570 result = 3,
571 reagents = {
572 [ReagentData['powder']['heavy']] = 1,
573 [ReagentData['leather']['heavy']] = 1,
574 },
575 },
576 ['Green Tinted Goggles'] = {
577 skill = 150,
578 description = '[BoE] (Cloth Head) AC: 35, Sta: 8, Spi: 7, Requires Engineering (150)',
579 type = 'Cloth',
580 source = 'Trainer',
581 result = 1,
582 resultrarity = 'Uncommon',
583 reagents = {
584 [ReagentData['gem']['mossagate']] = 2,
585 [ReagentData['armor']['flyingtigergoggles']] = 1,
586 [ReagentData['leather']['medium']] = 4,
587 }
588 },
589 ['Ice Deflector'] = {
590 skill = 155,
591 description = 'MinLvl: 21, Use: Increases your Frost resistance by 18 for 15 sec.',
592 type = 'Devices',
593 source = 'Vendor:Schematic: Ice Deflector',
594 result = 1,
595 reagents = {
596 [ReagentData['part']['whirringbronzegizmo']] = 1,
597 [ReagentData['oil']['frost']] = 1,
598 }
599 },
600 ['Discombobulator Ray'] = {
601 skill = 160,
602 description = 'Use: Transforms the target into a Leper Gnome, reducing its attack rate by 50% and its movement rate by 30% for 12 sec.',
603 type = 'Devices',
604 source = 'Drop:Schematic: Discombobulator Ray',
605 sourcerarity = 'Uncommon',
606 result = 1,
607 reagents = {
608 [ReagentData['part']['whirringbronzegizmo']] = 3,
609 [ReagentData['cloth']['silk']] = 2,
610 [ReagentData['part']['bronzetube']] = 1,
611 [ReagentData['gem']['jade']] = 1,
612 }
613 },
614 ['Iron Strut'] = {
615 skill = 160,
616 description = 'Iron Strut',
617 type = 'Parts',
618 source = 'Trainer',
619 result = 1,
620 reagents = {
621 [ReagentData['bar']['iron']] = 2,
622 }
623 },
624 ['Goblin Jumper Cables'] = {
625 skill = 165,
626 description = '(Trinket) Requires Engineering (165), Use: Jumper Cables will sometimes be able to shock a dead player back to life. Be warned that they are experimental and may explode. Cannot be used when in combat.',
627 type = 'Devices',
628 source = 'Drop, Vendor:Schematic: Goblin Jumper Cables',
629 result = 1,
630 reagents = {
631 [ReagentData['bar']['iron']] = 6,
632 [ReagentData['monster']['flaskofoil']] = 2,
633 [ReagentData['gem']['shadow']] = 2,
634 [ReagentData['part']['whirringbronzegizmo']] = 2,
635 [ReagentData['cloth']['silk']] = 2,
636 [ReagentData['part']['fusedwiring']] = 1,
637 }
638 },
639 ['Portable Bronze Mortar'] = {
640 skill = 165,
641 description = 'Requires Engineering (165), Use: Inflicts 85 to 115 Fire damage and disorients targets in a 5 yard radius for 2 sec.',
642 type = 'Devices',
643 source = 'Drop:Schematic: Portable Bronze Mortar',
644 sourcerarity = 'Uncommon',
645 result = 1,
646 reagents = {
647 [ReagentData['part']['ironstrut']] = 1,
648 [ReagentData['part']['bronzetube']] = 4,
649 [ReagentData['powder']['heavy']] = 4,
650 [ReagentData['leather']['medium']] = 4,
651 }
652 },
653 ['Gyrochronatom'] = {
654 skill = 170,
655 description = 'Gyrochronatom',
656 type = 'Parts',
657 source = 'Trainer',
658 result = 1,
659 reagents = {
660 [ReagentData['bar']['iron']] = 1,
661 [ReagentData['part']['goldpowercore']] = 1,
662 }
663 },
664 ['Bright-Eye Goggles'] = {
665 skill = 175,
666 description = '[BoE] (Cloth Head) AC: 38, Sta: 9, Spi: 9, Requires Engineering (175)',
667 type = 'Cloth',
668 source = 'Drop:Schematic: Bright-Eye Goggles',
669 sourcerarity = 'Uncommon',
670 result = 1,
671 resultrarity = 'Uncommon',
672 reagents = {
673 [ReagentData['leather']['heavy']] = 6,
674 [ReagentData['gem']['citrine']] = 2,
675 }
676 },
677 ['Compact Harvest Reaper Kit'] = {
678 skill = 175,
679 description = 'MinLvl: 30, Requires Engineering (175), Use: Creates a Compact Harvest Reaper that will fight for you for 10 min or until it is destroyed.',
680 type = 'Devices',
681 source = 'Trainer',
682 result = 1,
683 reagents = {
684 [ReagentData['part']['ironstrut']] = 2,
685 [ReagentData['leather']['heavy']] = 4,
686 [ReagentData['part']['gyrochronatom']] = 2,
687 [ReagentData['part']['bronzeframework']] = 1,
688 }
689 },
690 ['Gyromatic Micro-Adjustor'] = {
691 skill = 175,
692 description = 'Gyromatic Micro-Adjustor',
693 type = 'Parts',
694 source = 'Trainer',
695 result = 1,
696 reagents = {
697 [ReagentData['bar']['steel']] = 4,
698 }
699 },
700 ['Iron Grenade'] = {
701 skill = 175,
702 description = 'Requires Engineering (175), Use: Inflicts 132 to 218 Fire damage and disorients for 3 sec in a 3 yard radius.',
703 type = 'Explosives',
704 source = 'Trainer',
705 result = 2,
706 reagents = {
707 [ReagentData['bar']['iron']] = 1,
708 [ReagentData['cloth']['silk']] = 1,
709 [ReagentData['powder']['heavy']] = 1,
710 }
711 },
712 ['Large Blue Rocket'] = {
713 skill = 175,
714 description = 'Use: Throw into a firework launcher!',
715 type = 'Firework',
716 source = 'Quest:Schematic: Large Blue Rocket',
717 result = 1,
718 reagents = {
719 [ReagentData['powder']['heavy']] = 1,
720 [ReagentData['leather']['heavy']] = 1,
721 }
722 },
723 ['Large Green Rocket'] = {
724 skill = 175,
725 description = 'Use: Throw into a firework launcher!',
726 type = 'Firework',
727 source = 'Quest:Schematic: Large Green Rocket',
728 result = 1,
729 reagents = {
730 [ReagentData['powder']['heavy']] = 1,
731 [ReagentData['leather']['heavy']] = 1,
732 }
733 },
734 ['Large Red Rocket'] = {
735 skill = 175,
736 description = 'Use: Throw into a firework launcher!',
737 type = 'Firework',
738 source = 'Quest:Schematic: Large Red Rocket',
739 result = 1,
740 reagents = {
741 [ReagentData['powder']['heavy']] = 1,
742 [ReagentData['leather']['heavy']] = 1,
743 }
744 },
745 ['Solid Blasting Powder'] = {
746 skill = 175,
747 description = 'Solid Blasting Powder',
748 type = 'Parts',
749 source = 'Trainer',
750 result = 1,
751 reagents = {
752 [ReagentData['stone']['solid']] = 2,
753 }
754 },
755 ['Solid Dynamite'] = {
756 skill = 175,
757 description = 'Requires Engineering (175), Use: Inflicts 213 to 287 Fire damage in a 5 yard radius.',
758 type = 'Explosives',
759 source = 'Trainer',
760 result = 2,
761 reagents = {
762 [ReagentData['powder']['solid']] = 1,
763 [ReagentData['cloth']['silk']] = 1,
764 }
765 },
766 ['Accurate Scope'] = {
767 skill = 180,
768 description = 'MinLvl: 20, Use: Attaches a permanent scope to a bow or gun that increases its damage by 3.',
769 type = 'Devices',
770 source = 'Vendor:Schematic: Accurate Scope',
771 result = 1,
772 reagents = {
773 [ReagentData['gem']['citrine']] = 1,
774 [ReagentData['part']['bronzetube']] = 1,
775 [ReagentData['gem']['jade']] = 1,
776 }
777 },
778 ['Advanced Target Dummy'] = {
779 skill = 185,
780 description = 'Requires Engineering (185), Use: Drops a target dummy on the ground that attracts nearby monsters to attack it. Lasts for 3 min.',
781 type = 'Devices',
782 source = 'Trainer',
783 result = 1,
784 reagents = {
785 [ReagentData['part']['ironstrut']] = 1,
786 [ReagentData['leather']['heavy']] = 4,
787 [ReagentData['part']['gyrochronatom']] = 1,
788 [ReagentData['part']['bronzeframework']] = 1,
789 }
790 },
791 ['Craftsman\'s Monocle'] = {
792 skill = 185,
793 description = '[BoE] (Cloth Head) AC: 40, Int: 15, MinLvl: 32, Requires Engineering (185)',
794 type = 'Cloth',
795 source = 'Drop:Schematic: Craftsman\'s Monocle',
796 sourcerarity = 'Rare',
797 result = 1,
798 resultrarity = 'Uncommon',
799 reagents = {
800 [ReagentData['leather']['heavy']] = 6,
801 [ReagentData['gem']['citrine']] = 2,
802 }
803 },
804 ['Flash Bomb'] = {
805 skill = 185,
806 description = 'MinLvl: 27, Use: Causes all Beasts in a 5 yard radius to run away for 10 sec.',
807 type = 'Explosives',
808 source = 'Drop:Schematic: Flash Bomb',
809 sourcerarity = 'Uncommon',
810 result = 1,
811 reagents = {
812 [ReagentData['cloth']['silk']] = 1,
813 [ReagentData['powder']['heavy']] = 1,
814 [ReagentData['pearl']['blue']] = 1,
815 }
816 },
817 ['Big Iron Bomb'] = {
818 skill = 190,
819 description = 'Requires Engineering (190), Use: Inflicts 149 to 201 Fire damage and disorients targets in a 5 yard radius for 3 sec.',
820 type = 'Explosives',
821 source = 'Trainer',
822 result = 2,
823 reagents = {
824 [ReagentData['part']['silvercontact']] = 1,
825 [ReagentData['bar']['iron']] = 3,
826 [ReagentData['powder']['heavy']] = 3,
827 }
828 },
829 ['SnowMaster 9000'] = {
830 skill = 190,
831 description = 'Requires Engineering (190), Use: Allows an experienced engineer to turn water into a snowball. The Snowmaster requires a day to build up enough chill to freeze another snowball.',
832 type = 'Devices',
833 source = 'Drop:Schematic: Snowmaster 9000',
834 sourcerarity = 'Uncommon',
835 result = 1,
836 reagents = {
837 [ReagentData['part']['gyrochronatom']] = 4,
838 [ReagentData['oil']['frost']] = 1,
839 [ReagentData['other']['snowball']] = 4,
840 [ReagentData['bar']['mithril']] = 8,
841 }
842 },
843 ['Goblin Land Mine'] = {
844 skill = 195,
845 description = 'Requires Engineering (195), Use: Places the Goblin Land Mine on the ground. It will explode for 450 fire damage the next time a hostile creature passes near it.',
846 type = 'Explosives',
847 source = 'Drop:Schematic: Goblin Land Mine',
848 sourcerarity = 'Uncommon',
849 result = 1,
850 reagents = {
851 [ReagentData['bar']['iron']] = 2,
852 [ReagentData['powder']['heavy']] = 3,
853 [ReagentData['part']['gyrochronatom']] = 1,
854 }
855 },
856 ['Mithril Tube'] = {
857 skill = 195,
858 description = 'Mithril Tube',
859 type = 'Parts',
860 source = 'Trainer',
861 result = 1,
862 reagents = {
863 [ReagentData['bar']['mithril']] = 3,
864 }
865 },
866 ['Gnomish Cloaking Device'] = {
867 skill = 200,
868 description = '[BoE] (Trinket) Requires Engineering (200), Use: Gives invisibility for 10 sec. It can only be used every 60 minutes.',
869 type = 'Devices',
870 source = 'Drop, Vendor:Schematic: Gnomish Cloaking Device',
871 result = 1,
872 reagents = {
873 [ReagentData['gem']['citrine']] = 2,
874 [ReagentData['part']['gyrochronatom']] = 4,
875 [ReagentData['gem']['jade']] = 2,
876 [ReagentData['gem']['lessermoonstone']] = 2,
877 [ReagentData['part']['fusedwiring']] = 1,
878 }
879 },
880 ['Large Seaforium Charge'] = {
881 skill = 200,
882 description = 'Requires Engineering (200), Use: Blasts open difficult locked doors.',
883 type = 'Explosives',
884 source = 'Drop:Schematic: Large Seaforium Charge',
885 sourcerarity = 'Uncommon',
886 result = 1,
887 reagents = {
888 [ReagentData['powder']['solid']] = 2,
889 [ReagentData['leather']['heavy']] = 2,
890 [ReagentData['drink']['refreshingspringwater']] = 1,
891 }
892 },
893 ['Mechanical Dragonling'] = {
894 skill = 200,
895 description = '[BoE] [U] (Trinket) MinLvl: 30, Requires Engineering (200), Use: Activates your Mechanical Dragonling to fight for you for 1 min. It requires an hour to cool down before it can be used again.',
896 type = 'Devices',
897 source = 'Vendor:Schematic: Mechanical Dragonling',
898 result = 1,
899 reagents = {
900 [ReagentData['part']['ironstrut']] = 4,
901 [ReagentData['gem']['citrine']] = 2,
902 [ReagentData['part']['gyrochronatom']] = 4,
903 [ReagentData['part']['fusedwiring']] = 1,
904 [ReagentData['part']['bronzeframework']] = 1,
905 }
906 },
907 ['EZ-Thro Dynamite II'] = {
908 skill = 200,
909 type = 'Explosives',
910 description = 'MinLvl: 30, Use: Inflicts 213 to 287 Fire damage in a 5 yard radius (Assuming that it gets to the target, some restrictions may apply.)',
911 source = 'Vendor:Schematic: EZ-Thro Dynamite II',
912 result = 1,
913 reagents = {
914 [ReagentData['powder']['solid']] = 1,
915 [ReagentData['cloth']['mageweave']] = 2,
916 },
917 },
918 ['Mechanical Repair Kit'] = {
919 skill = 200,
920 description = 'Requires Engineering (200), Use: Restores 700 health to a friendly mechanical target',
921 type = 'Devices',
922 source = 'Trainer',
923 result = 1,
924 reagents = {
925 [ReagentData['powder']['solid']] = 1,
926 [ReagentData['bar']['mithril']] = 1,
927 [ReagentData['cloth']['mageweave']] = 1,
928 }
929 },
930 ['Unstable Trigger'] = {
931 skill = 200,
932 description = 'Unstable Trigger',
933 type = 'Parts',
934 source = 'Trainer',
935 result = 1,
936 reagents = {
937 [ReagentData['powder']['solid']] = 1,
938 [ReagentData['bar']['mithril']] = 1,
939 [ReagentData['cloth']['mageweave']] = 1,
940 }
941 },
942 ['Fire Goggles'] = {
943 skill = 205,
944 description = '[BoE] (Cloth Head) AC: 44, FR: 17, Requires Engineering (205)',
945 type = 'Cloth',
946 source = 'Trainer',
947 result = 1,
948 resultrarity = 'Uncommon',
949 reagents = {
950 [ReagentData['armor']['greentintedgoggles']] = 1,
951 [ReagentData['leather']['heavy']] = 4,
952 [ReagentData['gem']['citrine']] = 2,
953 [ReagentData['element']['fire']] = 2,
954 }
955 },
956 ['Gnomish Shrink Ray'] = {
957 skill = 205,
958 description = '[BoE] (Trinket) Requires Engineering (205), Use: Shrinks the target reducing their attack power by 250. Thats what it usually does anyway.....',
959 type = 'Devices',
960 source = 'Trainer',
961 result = 1,
962 reagents = {
963 [ReagentData['gem']['jade']] = 2,
964 [ReagentData['part']['mithriltube']] = 1,
965 [ReagentData['monster']['flaskofmojo']] = 4,
966 [ReagentData['part']['unstabletrigger']] = 1,
967 [ReagentData['bar']['mithril']] = 4,
968 }
969 },
970 ['Goblin Construction Helmet'] = {
971 skill = 205,
972 description = '[BoP] (Cloth Head) AC: 44, FR: 15, Requires Engineering (205), Use: Absorbs 300 to 500 Fire damage. Lasts 1 min.',
973 type = 'Cloth',
974 source = 'Trainer',
975 result = 1,
976 resultrarity = 'Uncommon',
977 reagents = {
978 [ReagentData['gem']['citrine']] = 1,
979 [ReagentData['bar']['mithril']] = 8,
980 [ReagentData['element']['fire']] = 4,
981 }
982 },
983 ['Goblin Mining Helmet'] = {
984 skill = 205,
985 description = '[BoP] (Mail Head) AC: 190, Sta: 15, Requires Engineering (205), Equip: Mining +5.',
986 type = 'Mail',
987 source = 'Trainer',
988 result = 1,
989 resultrarity = 'Uncommon',
990 reagents = {
991 [ReagentData['element']['earth']] = 4,
992 [ReagentData['gem']['citrine']] = 1,
993 [ReagentData['bar']['mithril']] = 8,
994 }
995 },
996 ['Goblin Mortar'] = {
997 skill = 205,
998 description = '[BoE] (Trinket) Requires Engineering (205), Use: Inflicts 383 to 517 Fire damage and stuns the targets in a 10 yard radius for 3 sec.',
999 type = 'Devices',
1000 source = 'Trainer',
1001 result = 1,
1002 reagents = {
1003 [ReagentData['powder']['solid']] = 5,
1004 [ReagentData['part']['goldpowercore']] = 1,
1005 [ReagentData['part']['mithriltube']] = 2,
1006 [ReagentData['bar']['mithril']] = 4,
1007 [ReagentData['element']['fire']] = 1,
1008 }
1009 },
1010 ['Goblin Rocket Fuel Recipe'] = {
1011 skill = 205,
1012 type = 'Alchemy',
1013 source = 'Trainer',
1014 result = 1,
1015 resultname = 'Recipe: Goblin Rocket Fuel',
1016 reagents = {
1017 [ReagentData['part']['blankparchment']] = 1,
1018 [ReagentData['part']['engineersink']] = 1,
1019 }
1020 },
1021 ['Goblin Sapper Charge'] = {
1022 skill = 205,
1023 description = 'Requires Engineering (205), Use: Explodes when triggered dealing 450 to 750 Fire damage to all enemies nearby and 375 to 625 damage to you.',
1024 type = 'Explosives',
1025 source = 'Trainer',
1026 result = 1,
1027 reagents = {
1028 [ReagentData['powder']['solid']] = 3,
1029 [ReagentData['cloth']['mageweave']] = 1,
1030 [ReagentData['part']['unstabletrigger']] = 1,
1031 }
1032 },
1033 ['Inlaid Mithril Cylinder Plans'] = {
1034 skill = 205,
1035 type = 'Blacksmithing',
1036 source = 'Trainer',
1037 result = 1,
1038 resultname = 'Plans: Inlaid Mithril Cylinder',
1039 reagents = {
1040 [ReagentData['part']['blankparchment']] = 1,
1041 [ReagentData['part']['engineersink']] = 1,
1042 }
1043 },
1044 ['Dimensional Ripper - Everlook'] = {
1045 skill = 260,
1046 description = 'Requires Goblin Engineering (260), Use: Rips the dimensional walls asunder and transports you to Everlook in Winterspring. There are technical problems that sometimes occur, but that\'s what Goblin Engineering is all about!',
1047 type = 'Miscellaneous',
1048 source = 'Trainer',
1049 result = 1,
1050 reagents = {
1051 [ReagentData['bar']['mithril']] = 10,
1052 [ReagentData['part']['truesilvertransformer']] = 1,
1053 [ReagentData['element']['heartoffire']] = 4,
1054 [ReagentData['gem']['starruby']] = 2,
1055 [ReagentData['part']['thebigone']] = 1,
1056 },
1057 },
1058 ['Lil\' Smoky'] = {
1059 skill = 205,
1060 description = '[BoP] Use: Right Click to summon and dismiss your robot.',
1061 type = 'Devices',
1062 source = 'Drop:Schematic: Lil\' Smoky',
1063 sourcerarity = 'Uncommon',
1064 result = 1,
1065 reagents = {
1066 [ReagentData['element']['coreofearth']] = 1,
1067 [ReagentData['bar']['truesilver']] = 1,
1068 [ReagentData['part']['gyrochronatom']] = 2,
1069 [ReagentData['part']['fusedwiring']] = 1,
1070 [ReagentData['bar']['mithril']] = 2,
1071 }
1072 },
1073 ['Mithril Blunderbuss'] = {
1074 skill = 205,
1075 description = '[BoE] (Gun) Dmg: 36-68, Spd: 2.90, DPS: 17.9, Agi: 5, MinLvl: 36',
1076 type = 'Gun',
1077 source = 'Trainer',
1078 result = 1,
1079 resultrarity = 'Uncommon',
1080 reagents = {
1081 [ReagentData['part']['heavystock']] = 1,
1082 [ReagentData['part']['mithriltube']] = 1,
1083 [ReagentData['part']['unstabletrigger']] = 1,
1084 [ReagentData['bar']['mithril']] = 4,
1085 [ReagentData['element']['fire']] = 2,
1086 }
1087 },
1088 ['Pet Bombling'] = {
1089 skill = 205,
1090 description = '[BoP] Use: Right Click to summon and dismiss your bomb.',
1091 type = 'Devices',
1092 source = 'Drop:Schematic: Pet Bombling',
1093 sourcerarity = 'Uncommon',
1094 result = 1,
1095 reagents = {
1096 [ReagentData['part']['bigironbomb']] = 1,
1097 [ReagentData['part']['fusedwiring']] = 1,
1098 [ReagentData['element']['heartoffire']] = 1,
1099 [ReagentData['bar']['mithril']] = 6,
1100 }
1101 },
1102 ['Deadly Scope'] = {
1103 skill = 210,
1104 description = 'MinLvl: 30, Use: Attaches a permanent scope to a bow or gun that increases its damage by 5.',
1105 type = 'Devices',
1106 source = 'Vendor:Schematic: Deadly Scope',
1107 result = 1,
1108 reagents = {
1109 [ReagentData['gem']['aquamarine']] = 2,
1110 [ReagentData['leather']['thick']] = 2,
1111 [ReagentData['part']['mithriltube']] = 1,
1112 }
1113 },
1114 ['Gnomish Goggles'] = {
1115 skill = 210,
1116 description = '[BoP] (Cloth Head) AC: 45, Agi: 9, Sta: 9, Spi: 9, Requires Engineering (210)',
1117 type = 'Cloth',
1118 source = 'Trainer',
1119 result = 1,
1120 resultrarity = 'Uncommon',
1121 reagents = {
1122 [ReagentData['leather']['heavy']] = 2,
1123 [ReagentData['part']['goldpowercore']] = 2,
1124 [ReagentData['armor']['firegoggles']] = 1,
1125 [ReagentData['part']['mithriltube']] = 1,
1126 [ReagentData['monster']['flaskofmojo']] = 2,
1127 }
1128 },
1129 ['Gnomish Net-o-Matic Projector'] = {
1130 skill = 210,
1131 description = '[BoE] (Trinket) Requires Engineering (210), Use: Captures the target in a net for 10 sec. The net has a lot of hooks however and sometimes gets caught in the user\'s clothing when fired......',
1132 type = 'Devices',
1133 source = 'Trainer',
1134 result = 1,
1135 reagents = {
1136 [ReagentData['spidersilk']['thick']] = 4,
1137 [ReagentData['powder']['solid']] = 2,
1138 [ReagentData['spidersilk']['shadow']] = 2,
1139 [ReagentData['part']['mithriltube']] = 1,
1140 [ReagentData['bar']['mithril']] = 4,
1141 }
1142 },
1143 ['Hi-Impact Mithril Slugs'] = {
1144 skill = 210,
1145 description = 'MinLvl: 37, Projectile, Bullet, Adds 12.5 damage per second',
1146 type = 'Bullet',
1147 source = 'Trainer',
1148 result = 200,
1149 resultrarity = 'Uncommon',
1150 reagents = {
1151 [ReagentData['powder']['solid']] = 1,
1152 [ReagentData['bar']['mithril']] = 1,
1153 }
1154 },
1155 ['Gnomish Harm Prevention Belt'] = {
1156 skill = 215,
1157 description = '[BoE] (Leather Waist) AC: 66, Sta: 6, Requires Engineering (215), Use: A shield of force protects you from the next 500 damage done over the next 10 min. WARNING: Force Field may overload when struck temporarily removing the wearer from this d',
1158 type = 'Leather',
1159 source = 'Trainer',
1160 result = 1,
1161 resultrarity = 'Uncommon',
1162 reagents = {
1163 [ReagentData['armor']['duskybelt']] = 1,
1164 [ReagentData['gem']['aquamarine']] = 2,
1165 [ReagentData['bar']['truesilver']] = 2,
1166 [ReagentData['bar']['mithril']] = 4,
1167 [ReagentData['part']['unstabletrigger']] = 1,
1168 }
1169 },
1170 ['Mithril Casing'] = {
1171 skill = 215,
1172 description = 'Mithril Casing',
1173 type = 'Parts',
1174 source = 'Trainer',
1175 result = 1,
1176 reagents = {
1177 [ReagentData['bar']['mithril']] = 3,
1178 }
1179 },
1180 ['Mithril Frag Bomb'] = {
1181 skill = 215,
1182 description = 'Requires Engineering (205), Use: Inflicts 149 to 201 Fire damage and disorients targets in a 8 yard radius for 2 sec.',
1183 type = 'Explosives',
1184 source = 'Trainer',
1185 result = 3,
1186 reagents = {
1187 [ReagentData['powder']['solid']] = 1,
1188 [ReagentData['part']['mithrilcasing']] = 1,
1189 [ReagentData['part']['unstabletrigger']] = 1,
1190 }
1191 },
1192 ['Catseye Ultra Goggles'] = {
1193 skill = 220,
1194 description = '[BoE] (Cloth Head) AC: 47, Requires Engineering (220), Equip: Increases your stealth detection by 9.',
1195 type = 'Cloth',
1196 source = 'Drop:Schematic: Catseye Ultra Goggles',
1197 sourcerarity = 'Uncommon',
1198 result = 1,
1199 resultrarity = 'Uncommon',
1200 reagents = {
1201 [ReagentData['leather']['thick']] = 4,
1202 [ReagentData['gem']['aquamarine']] = 2,
1203 [ReagentData['potion']['catseyeelixir']] = 1,
1204 }
1205 },
1206 ['Mithril Heavy-bore Rifle'] = {
1207 skill = 220,
1208 description = '[BoE] (Gun) Dmg: 41-76, Spd: 2.90, DPS: 20.2, MinLvl: 39, Equip: +14 ranged Attack Power.',
1209 type = 'Gun',
1210 source = 'Drop:Schematic: Mithril Heavy-bore Rifle',
1211 sourcerarity = 'Uncommon',
1212 result = 1,
1213 resultrarity = 'Uncommon',
1214 reagents = {
1215 [ReagentData['part']['heavystock']] = 1,
1216 [ReagentData['gem']['citrine']] = 2,
1217 [ReagentData['part']['mithriltube']] = 2,
1218 [ReagentData['part']['unstabletrigger']] = 1,
1219 [ReagentData['bar']['mithril']] = 6,
1220 }
1221 },
1222 ['Gnomish Rocket Boots'] = {
1223 skill = 225,
1224 description = '[BoE] (Cloth Feet) AC: 41, Requires Engineering (225), Use: These boots significantly increase your run speed for 20 sec. WARNING: Their power supply and gyros do not always function as intended.',
1225 type = 'Cloth',
1226 source = 'Trainer',
1227 result = 1,
1228 resultrarity = 'Uncommon',
1229 reagents = {
1230 [ReagentData['armor']['blackmageweaveboots']] = 1,
1231 [ReagentData['leather']['heavy']] = 4,
1232 [ReagentData['powder']['solid']] = 8,
1233 [ReagentData['part']['gyrochronatom']] = 4,
1234 [ReagentData['part']['mithriltube']] = 2,
1235 }
1236 },
1237 ['Goblin Rocket Boots'] = {
1238 skill = 130,
1239 description = '[BoE] (Cloth Feet) AC: 41, Use: These dangerous looking boots significantly increase your run speed for 20 sec. They are prone to explode however, so use with caution.',
1240 type = 'Cloth',
1241 source = 'Trainer:Plans: Goblin Rocket Boots',
1242 sourcerarity = 'Uncommon',
1243 result = 1,
1244 resultrarity = 'Uncommon',
1245 reagents = {
1246 [ReagentData['armor']['blackmageweaveboots']] = 1,
1247 [ReagentData['leather']['heavy']] = 4,
1248 [ReagentData['part']['mithriltube']] = 2,
1249 [ReagentData['oil']['goblinrocketfuel']] = 2,
1250 [ReagentData['part']['unstabletrigger']] = 1,
1251 }
1252 },
1253 ['Blue Rocket Cluster'] = {
1254 skill = 225,
1255 description = 'Use: Throw into a firework launcher!',
1256 type = 'Firework',
1257 source = 'Quest:Schematic: Blue Rocket Cluster',
1258 result = 1,
1259 reagents = {
1260 [ReagentData['powder']['solid']] = 1,
1261 [ReagentData['leather']['thick']] = 1,
1262 }
1263 },
1264 ['Green Rocket Cluster'] = {
1265 skill = 225,
1266 description = 'Use: Throw into a firework launcher!',
1267 type = 'Firework',
1268 source = 'Quest:Schematic: Green Rocket Cluster',
1269 result = 1,
1270 reagents = {
1271 [ReagentData['powder']['solid']] = 1,
1272 [ReagentData['leather']['thick']] = 1,
1273 }
1274 },
1275 ['Red Rocket Cluster'] = {
1276 skill = 225,
1277 description = 'Use: Throw into a firework launcher!',
1278 type = 'Firework',
1279 source = 'Quest:Schematic: Red Rocket Cluster',
1280 result = 1,
1281 reagents = {
1282 [ReagentData['powder']['solid']] = 1,
1283 [ReagentData['leather']['thick']] = 1,
1284 }
1285 },
1286 ['Firework Launcher'] = {
1287 skill = 225,
1288 description = 'Use: Place on the ground to launch firework rockets. Lasts 30 minutes.',
1289 type = 'Device',
1290 source = 'Quest:Schematic: Firework Launcher',
1291 result = 1,
1292 reagents = {
1293 [ReagentData['part']['inlaidmithrilcylinder']] = 1,
1294 [ReagentData['oil']['goblinrocketfuel']] = 1,
1295 [ReagentData['part']['unstabletrigger']] = 1,
1296 [ReagentData['part']['mithrilcasing']] = 1,
1297 }
1298 },
1299 ['Parachute Cloak'] = {
1300 skill = 225,
1301 description = '[BoE] (Back) AC: 30, Agi: 8, Requires Engineering (225), Use: Reduces your fall speed for 10 sec.',
1302 type = 'Cloth',
1303 source = 'Drop:Schematic: Parachute Cloak',
1304 sourcerarity = 'Uncommon',
1305 result = 1,
1306 resultrarity = 'Uncommon',
1307 reagents = {
1308 [ReagentData['bolt']['mageweave']] = 4,
1309 [ReagentData['powder']['solid']] = 4,
1310 [ReagentData['spidersilk']['shadow']] = 2,
1311 [ReagentData['part']['unstabletrigger']] = 1,
1312 }
1313 },
1314 ['Spellpower Goggles Xtreme'] = {
1315 skill = 225,
1316 description = '[BoE] (Cloth Head) AC: 46, Requires Engineering (215), Equip: Increases damage and healing done by magical spells and effects by up to 12.',
1317 type = 'Cloth',
1318 source = 'Drop:Schematic: Spellpower Goggles Xtreme',
1319 sourcerarity = 'Rare',
1320 result = 1,
1321 resultrarity = 'Uncommon',
1322 reagents = {
1323 [ReagentData['leather']['thick']] = 4,
1324 [ReagentData['gem']['starruby']] = 2,
1325 }
1326 },
1327 ['Deepdive Helmet'] = {
1328 skill = 230,
1329 description = '[BoE] (Cloth Head) AC: 49, Sta: 15, Requires Engineering (230), Equip: Allows underwater breathing.',
1330 type = 'Cloth',
1331 source = 'Vendor:Schematic: Deepdive Helmet',
1332 result = 1,
1333 resultrarity = 'Uncommon',
1334 reagents = {
1335 [ReagentData['gem']['malachite']] = 4,
1336 [ReagentData['bar']['truesilver']] = 1,
1337 [ReagentData['gem']['tigerseye']] = 4,
1338 [ReagentData['bar']['mithril']] = 8,
1339 [ReagentData['part']['mithrilcasing']] = 1,
1340 }
1341 },
1342 ['Gnomish Battle Chicken'] = {
1343 skill = 230,
1344 description = '[BoP] (Trinket) Requires Engineering (230), Use: Creates a Battle Chicken that will fight for you for 1.50 min or until it is destroyed.',
1345 type = 'Devices',
1346 source = 'Trainer',
1347 result = 1,
1348 reagents = {
1349 [ReagentData['part']['goldpowercore']] = 1,
1350 [ReagentData['bar']['truesilver']] = 6,
1351 [ReagentData['gem']['jade']] = 2,
1352 [ReagentData['part']['mithrilcasing']] = 1,
1353 [ReagentData['bar']['mithril']] = 6,
1354 [ReagentData['part']['inlaidmithrilcylinder']] = 2,
1355 }
1356 },
1357 ['Goblin Bomb Dispenser'] = {
1358 skill = 230,
1359 description = '[BoP] (Trinket) Requires Engineering (230), Use: Creates a mobile bomb that charges the nearest enemy and explodes for 315 to 385 fire damage.',
1360 type = 'Devices',
1361 source = 'Trainer',
1362 result = 1,
1363 reagents = {
1364 [ReagentData['powder']['solid']] = 4,
1365 [ReagentData['bar']['truesilver']] = 6,
1366 [ReagentData['part']['accuratescope']] = 2,
1367 [ReagentData['part']['mithrilcasing']] = 2,
1368 [ReagentData['part']['unstabletrigger']] = 1,
1369 }
1370 },
1371 ['Rose Colored Goggles'] = {
1372 skill = 230,
1373 description = '[BoE] (Cloth Head) AC: 49, Int: 12, Spi: 13, Requires Engineering (230)',
1374 type = 'Cloth',
1375 source = 'Trainer',
1376 result = 1,
1377 resultrarity = 'Uncommon',
1378 reagents = {
1379 [ReagentData['leather']['thick']] = 6,
1380 [ReagentData['gem']['starruby']] = 2,
1381 }
1382 },
1383 ['Gnomish Mind Control Cap'] = {
1384 skill = 235,
1385 description = '[BoE] (Cloth Head) AC: 50, Spi: 14, Requires Engineering (215), Use: Engage in mental combat with a humanoid target to try and control their mind. If all works well, you will control the mind of the target for 20 sec .....',
1386 type = 'Cloth',
1387 source = 'Trainer',
1388 result = 1,
1389 resultrarity = 'Uncommon',
1390 reagents = {
1391 [ReagentData['gem']['starruby']] = 2,
1392 [ReagentData['part']['goldpowercore']] = 1,
1393 [ReagentData['bar']['truesilver']] = 4,
1394 [ReagentData['bar']['mithril']] = 10,
1395 [ReagentData['cloth']['mageweave']] = 4,
1396 }
1397 },
1398 ['Hi-Explosive Bomb'] = {
1399 skill = 235,
1400 description = 'Requires Engineering (235), Use: Inflicts 255 to 345 Fire damage and disorients targets in a 3 yard radius for 3 sec.',
1401 type = 'Explosives',
1402 source = 'Trainer',
1403 result = 4,
1404 reagents = {
1405 [ReagentData['powder']['solid']] = 2,
1406 [ReagentData['part']['mithrilcasing']] = 2,
1407 [ReagentData['part']['unstabletrigger']] = 1,
1408 }
1409 },
1410 ['The Big One'] = {
1411 skill = 235,
1412 description = 'Requires Engineering (225), Use: Inflicts 340 to 460 Fire damage and disorients targets for 5 sec in a 10 yard radius.',
1413 type = 'Explosives',
1414 source = 'Trainer',
1415 result = 2,
1416 reagents = {
1417 [ReagentData['part']['soliddynamite']] = 6,
1418 [ReagentData['oil']['goblinrocketfuel']] = 1,
1419 [ReagentData['part']['mithrilcasing']] = 1,
1420 [ReagentData['part']['unstabletrigger']] = 1,
1421 }
1422 },
1423 ['Gnomish Death Ray'] = {
1424 skill = 240,
1425 description = '[BoP] (Trinket) Death or Serious Injury may result from use of this device.',
1426 type = 'Devices',
1427 source = 'Trainer',
1428 result = 1,
1429 reagents = {
1430 [ReagentData['element']['ichorofundeath']] = 4,
1431 [ReagentData['element']['essenceofundeath']] = 1,
1432 [ReagentData['part']['mithriltube']] = 2,
1433 [ReagentData['part']['unstabletrigger']] = 1,
1434 [ReagentData['part']['inlaidmithrilcylinder']] = 1,
1435 }
1436 },
1437 ['Goblin Dragon Gun'] = {
1438 skill = 240,
1439 description = '[BoP] (Trinket) Use: Deals 61 to 69 fire damage for 10 sec to all targets in a cone in front of the engineer using the weapon. That is unless it explodes.....',
1440 type = 'Devices',
1441 source = 'Trainer',
1442 result = 1,
1443 reagents = {
1444 [ReagentData['bar']['truesilver']] = 6,
1445 [ReagentData['part']['mithriltube']] = 2,
1446 [ReagentData['oil']['goblinrocketfuel']] = 4,
1447 [ReagentData['bar']['mithril']] = 6,
1448 [ReagentData['part']['unstabletrigger']] = 1,
1449 }
1450 },
1451 ['Sniper Scope'] = {
1452 skill = 240,
1453 description = 'MinLvl: 40, Use: Attaches a permanent scope to a bow or gun that increases its damage by 7.',
1454 type = 'Devices',
1455 source = 'Drop:Schematic: Sniper Scope',
1456 sourcerarity = 'Rare',
1457 result = 1,
1458 reagents = {
1459 [ReagentData['gem']['starruby']] = 1,
1460 [ReagentData['bar']['truesilver']] = 2,
1461 [ReagentData['part']['mithriltube']] = 1,
1462 }
1463 },
1464 ['Goblin Rocket Helmet'] = {
1465 skill = 245,
1466 description = '[BoE] (Cloth Head) AC: 50, Sta: 15, Requires Engineering (235), Use: Charge an enemy, knocking it silly for 30 seconds. Also knocks you down, stunning you for a short period of time. Any damage caused will revive the target.',
1467 type = 'Cloth',
1468 source = 'Trainer',
1469 result = 1,
1470 resultrarity = 'Uncommon',
1471 reagents = {
1472 [ReagentData['armor']['goblinconstructionhelmet']] = 1,
1473 [ReagentData['oil']['goblinrocketfuel']] = 4,
1474 [ReagentData['bar']['mithril']] = 4,
1475 [ReagentData['part']['unstabletrigger']] = 1,
1476 }
1477 },
1478 ['Green Lens'] = {
1479 skill = 245,
1480 description = '[BoE] (Cloth Head) AC: 57, Sta: 10, <Random enchantment>, Requires Engineering (245)',
1481 type = 'Cloth',
1482 source = 'Trainer',
1483 result = 1,
1484 resultname = 'Green Lens of .*',
1485 resultrarity = 'Rare',
1486 reagents = {
1487 [ReagentData['leather']['thick']] = 8,
1488 [ReagentData['gem']['aquamarine']] = 3,
1489 [ReagentData['herb']['wildvine']] = 2,
1490 [ReagentData['element']['heartofthewild']] = 2,
1491 [ReagentData['gem']['jade']] = 3,
1492 }
1493 },
1494 ['Mithril Gyro-Shot'] = {
1495 skill = 245,
1496 description = 'MinLvl: 44, Projectile, Bullet, Adds 15 damage per second',
1497 type = 'Bullet',
1498 source = 'Trainer',
1499 result = 200,
1500 resultrarity = 'Uncommon',
1501 reagents = {
1502 [ReagentData['powder']['solid']] = 2,
1503 [ReagentData['bar']['mithril']] = 2,
1504 }
1505 },
1506 ['Dense Blasting Powder'] = {
1507 skill = 250,
1508 description = 'Dense Blasting Powder',
1509 type = 'Parts',
1510 source = 'Trainer',
1511 result = 1,
1512 reagents = {
1513 [ReagentData['stone']['dense']] = 2,
1514 }
1515 },
1516 ['Snake Burst Firework'] = {
1517 skill = 250,
1518 description = 'Use: Shoots a firework into the air that bursts in a yellow pattern.',
1519 type = 'Firework',
1520 source = 'Vendor:Schematic: Snake Burst Firework',
1521 result = 4,
1522 reagents = {
1523 [ReagentData['powder']['dense']] = 2,
1524 [ReagentData['cloth']['rune']] = 2,
1525 [ReagentData['salt']['deeprock']] = 1,
1526 },
1527 },
1528 ['Dense Dynamite'] = {
1529 skill = 250,
1530 description = 'Requires Engineering (250), Use: Inflicts 340 to 460 Fire damage in a 5 yard radius.',
1531 type = 'Explosives',
1532 source = 'Trainer',
1533 result = 2,
1534 reagents = {
1535 [ReagentData['powder']['dense']] = 2,
1536 [ReagentData['cloth']['rune']] = 3,
1537 },
1538 },
1539 ['Mithril Mechanical Dragonling'] = {
1540 skill = 250,
1541 description = '[BoE] [U] (Trinket) MinLvl: 40, Requires Engineering (250), Use: Activates your Mithril Mechanical Dragonling to fight for you for 1 min. It requires an hour to cool down before it can be used again.',
1542 type = 'Devices',
1543 source = 'Vendor:Schematic: Mithril Mechanical Dragonling',
1544 result = 1,
1545 reagents = {
1546 [ReagentData['gem']['starruby']] = 2,
1547 [ReagentData['bar']['truesilver']] = 4,
1548 [ReagentData['element']['heartoffire']] = 4,
1549 [ReagentData['oil']['goblinrocketfuel']] = 2,
1550 [ReagentData['bar']['mithril']] = 14,
1551 [ReagentData['part']['inlaidmithrilcylinder']] = 2,
1552 }
1553 },
1554 ['Salt Shaker'] = {
1555 skill = 250,
1556 description = 'Requires Leatherworking (250), Use: Allows an experienced leatherworker to turn Deeprock Salt into Refined Deeprock Salt. Use of the device exposes the user to sub-core micro radiation and should not be used more than once every few days.',
1557 type = 'Devices',
1558 source = 'Trainer',
1559 result = 1,
1560 reagents = {
1561 [ReagentData['part']['goldpowercore']] = 1,
1562 [ReagentData['bar']['thorium']] = 6,
1563 [ReagentData['part']['mithrilcasing']] = 1,
1564 [ReagentData['part']['unstabletrigger']] = 4,
1565 }
1566 },
1567 ['Tranquil Mechanical Yeti'] = {
1568 skill = 250,
1569 description = 'Binds when used, Use: Right Click to summon and dismiss your Tranquil Mechanical Yeti.',
1570 type = 'Devices',
1571 source = 'Quest',
1572 result = 1,
1573 resultname = 'Tranquil Mechanical Yeti',
1574 reagents = {
1575 [ReagentData['hide']['curedrugged']] = 1,
1576 [ReagentData['part']['thoriumwidget']] = 4,
1577 [ReagentData['element']['globeofwater']] = 2,
1578 [ReagentData['part']['truesilvertransformer']] = 2,
1579 [ReagentData['part']['goldpowercore']] = 1,
1580 }
1581 },
1582 ['Thorium Grenade'] = {
1583 skill = 260,
1584 description = 'Requires Engineering (260), Use: Inflicts 300 to 500 Fire damage and disorients for 3 sec in a 3 yard radius.',
1585 type = 'Explosives',
1586 source = 'Vendor:Schematic: Thorium Grenade',
1587 result = 3,
1588 reagents = {
1589 [ReagentData['powder']['dense']] = 3,
1590 [ReagentData['bar']['thorium']] = 3,
1591 [ReagentData['part']['thoriumwidget']] = 1,
1592 [ReagentData['cloth']['rune']] = 3,
1593 }
1594 },
1595 ['Thorium Rifle'] = {
1596 skill = 260,
1597 description = '[BoE] (Gun) Dmg: 42-79, Spd: 2.50, DPS: 24.2, MinLvl: 47, Equip: +17 ranged Attack Power.',
1598 type = 'Gun',
1599 source = 'Drop:Schematic: Thorium Rifle',
1600 sourcerarity = 'Uncommon',
1601 result = 1,
1602 resultrarity = 'Uncommon',
1603 reagents = {
1604 [ReagentData['part']['mithriltube']] = 2,
1605 [ReagentData['bar']['thorium']] = 4,
1606 [ReagentData['part']['deadlyscope']] = 1,
1607 [ReagentData['part']['mithrilcasing']] = 2,
1608 [ReagentData['part']['thoriumwidget']] = 2,
1609 }
1610 },
1611 ['Thorium Widget'] = {
1612 skill = 260,
1613 description = 'Thorium Widget',
1614 type = 'Parts',
1615 source = 'Vendor:Schematic: Thorium Widget',
1616 result = 1,
1617 reagents = {
1618 [ReagentData['bar']['thorium']] = 3,
1619 [ReagentData['cloth']['rune']] = 1,
1620 }
1621 },
1622 ['Gyrofreeze Ice Deflector'] = {
1623 skill = 260,
1624 description = '[BoE] [U] (Trinket) MinLvl: 47, Requires Engineering (260), Use: Reflects Frost spells back at their caster for 5 seconds.',
1625 type = 'Devices',
1626 source = 'Vendor:Schematic: Gyrofreeze Ice Deflector',
1627 sourcerarity = 'Common',
1628 result = 1,
1629 resultname = 'Gyrofreeze Ice Deflector',
1630 resultrarity = 'Rare',
1631 reagents = {
1632 [ReagentData['part']['thoriumwidget']] = 6,
1633 [ReagentData['part']['truesilvertransformer']] = 2,
1634 [ReagentData['gem']['bluesapphire']] = 2,
1635 [ReagentData['element']['essenceoffire']] = 4,
1636 [ReagentData['oil']['frost']] = 2,
1637 [ReagentData['herb']['icecap']] = 4,
1638 },
1639 },
1640 ['Truesilver Transformer'] = {
1641 skill = 260,
1642 description = 'Truesilver Transformer',
1643 type = 'Parts',
1644 source = 'Vendor:Schematic: Truesilver Transformer',
1645 reagents = {
1646 [ReagentData['bar']['truesilver']] = 2,
1647 [ReagentData['element']['earth']] = 2,
1648 [ReagentData['element']['air']] = 1,
1649 },
1650 },
1651 ['Lifelike Mechanical Toad'] = {
1652 skill = 265,
1653 description = 'Binds when used, Use: Right Click to summon and dismiss your lifelike mechanical toad.',
1654 type = 'Devices',
1655 source = 'Drop:Schematic: Lifelike Mechanical Toad',
1656 sourcerarity = 'Uncommon',
1657 result = 1,
1658 reagents = {
1659 [ReagentData['part']['goldpowercore']] = 1,
1660 [ReagentData['leather']['rugged']] = 1,
1661 [ReagentData['element']['livingessence']] = 1,
1662 [ReagentData['part']['thoriumwidget']] = 4,
1663 }
1664 },
1665 ['Spellpower Goggles Xtreme Plus'] = {
1666 skill = 270,
1667 description = '[BoE] (Cloth Head) AC: 57, Requires Engineering (270), Equip: Increases damage and healing done by magical spells and effects by up to 19.',
1668 type = 'Cloth',
1669 source = 'Drop:Schematic: Spellpower Goggles Xtreme Plus',
1670 sourcerarity = 'Uncommon',
1671 result = 1,
1672 resultrarity = 'Uncommon',
1673 reagents = {
1674 [ReagentData['gem']['starruby']] = 4,
1675 [ReagentData['armor']['spellpowergogglesxtreme']] = 1,
1676 [ReagentData['leather']['enchanted']] = 2,
1677 [ReagentData['cloth']['rune']] = 8,
1678 }
1679 },
1680 ['Dark Iron Rifle'] = {
1681 skill = 275,
1682 description = '[BoE] (Gun) Dmg: 53-100, Spd: 2.70, DPS: 29.4, MinLvl: 50, + 2 - 4 Shadow Damage',
1683 type = 'Gun',
1684 source = 'Drop:Schematic: Dark Iron Rifle',
1685 sourcerarity = 'Uncommon',
1686 result = 1,
1687 resultrarity = 'Rare',
1688 reagents = {
1689 [ReagentData['part']['thoriumtube']] = 2,
1690 [ReagentData['bar']['darkiron']] = 6,
1691 [ReagentData['leather']['rugged']] = 4,
1692 [ReagentData['part']['deadlyscope']] = 2,
1693 [ReagentData['gem']['bluesapphire']] = 2,
1694 [ReagentData['gem']['largeopal']] = 2,
1695 }
1696 },
1697 ['Large Blue Rocket Cluster'] = {
1698 skill = 275,
1699 description = 'Use: Throw into a firework launcher!',
1700 type = 'Firework',
1701 source = 'Quest:Schematic: Large Blue Rocket Cluster',
1702 result = 1,
1703 reagents = {
1704 [ReagentData['powder']['dense']] = 1,
1705 [ReagentData['leather']['rugged']] = 1,
1706 }
1707 },
1708 ['Large Green Rocket Cluster'] = {
1709 skill = 275,
1710 description = 'Use: Throw into a firework launcher!',
1711 type = 'Firework',
1712 source = 'Quest:Schematic: Large Green Rocket Cluster',
1713 result = 1,
1714 reagents = {
1715 [ReagentData['powder']['dense']] = 1,
1716 [ReagentData['leather']['rugged']] = 1,
1717 }
1718 },
1719 ['Large Red Rocket Cluster'] = {
1720 skill = 275,
1721 description = 'Use: Throw into a firework launcher!',
1722 type = 'Firework',
1723 source = 'Quest:Schematic: Large Red Rocket Cluster',
1724 result = 1,
1725 reagents = {
1726 [ReagentData['powder']['dense']] = 1,
1727 [ReagentData['leather']['rugged']] = 1,
1728 }
1729 },
1730 ['Cluster Launcher'] = {
1731 skill = 275,
1732 description = 'Use: Place on the ground to launch cluster rockets. Lasts 30 minutes.',
1733 type = 'Device',
1734 source = 'Quest:Schematic: Firework Launcher',
1735 result = 1,
1736 reagents = {
1737 [ReagentData['part']['inlaidmithrilcylinder']] = 4,
1738 [ReagentData['oil']['goblinrocketfuel']] = 4,
1739 [ReagentData['part']['truesilvertransformer']] = 2,
1740 [ReagentData['part']['mithrilcasing']] = 1,
1741 }
1742 },
1743 ['Powerful Seaforium Charge'] = {
1744 skill = 275,
1745 description = 'Requires Engineering (275), Use: Blasts open nearly any locked door.',
1746 type = 'Explosives',
1747 source = 'Vendor:Schematic: Powerful Seaforium Charge',
1748 result = 1,
1749 reagents = {
1750 [ReagentData['part']['thoriumwidget']] = 2,
1751 [ReagentData['powder']['dense']] = 3,
1752 [ReagentData['leather']['rugged']] = 2,
1753 [ReagentData['drink']['refreshingspringwater']] = 1,
1754 },
1755 },
1756 ['Major Recombobulator'] = {
1757 skill = 275,
1758 description = 'Requires Engineering (275), Use: Dispels Polymorph effects on a friendly target. Also restores 375 to 625 health and mana.',
1759 type = 'Devices',
1760 source = 'Drop:Schematic: Major Recombobulator',
1761 sourcerarity = 'Uncommon',
1762 result = 1,
1763 resultname = 'Major Recombobulator',
1764 resultrarity = 'Uncommon',
1765 reagents = {
1766 [ReagentData['part']['thoriumtube']] = 2,
1767 [ReagentData['part']['truesilvertransformer']] = 1,
1768 [ReagentData['cloth']['rune']] = 2,
1769 },
1770 },
1771 ['Masterwork Target Dummy'] = {
1772 skill = 275,
1773 description = 'Requires Engineering (275), Use: Drops a target dummy on the ground that attracts nearby monsters to attack it. Lasts for 3 min.',
1774 type = 'Devices',
1775 source = 'Vendor:Schematic: Masterwork Target Dummy',
1776 result = 1,
1777 reagents = {
1778 [ReagentData['part']['thoriumtube']] = 1,
1779 [ReagentData['bar']['truesilver']] = 1,
1780 [ReagentData['leather']['rugged']] = 2,
1781 [ReagentData['part']['mithrilcasing']] = 1,
1782 [ReagentData['part']['thoriumwidget']] = 2,
1783 [ReagentData['cloth']['rune']] = 4,
1784 }
1785 },
1786 ['Thorium Tube'] = {
1787 skill = 275,
1788 description = 'Thorium Tube',
1789 type = 'Parts',
1790 source = 'Vendor:Schematic: Thorium Tube',
1791 result = 1,
1792 reagents = {
1793 [ReagentData['bar']['thorium']] = 6,
1794 }
1795 },
1796 ['Dark Iron Bomb'] = {
1797 skill = 285,
1798 description = 'Requires Engineering (285), Use: Inflicts 225 to 675 Fire damage and disorients targets in a 3 yard radius for 4 sec.',
1799 type = 'Explosives',
1800 source = 'Drop:Schematic: Dark Iron Bomb',
1801 sourcerarity = 'Uncommon',
1802 result = 3,
1803 reagents = {
1804 [ReagentData['bar']['darkiron']] = 1,
1805 [ReagentData['powder']['dense']] = 3,
1806 [ReagentData['part']['thoriumwidget']] = 2,
1807 [ReagentData['cloth']['rune']] = 3,
1808 }
1809 },
1810 ['Delicate Arcanite Converter'] = {
1811 skill = 285,
1812 description = 'Delicate Arcanite Converter',
1813 type = 'Parts',
1814 source = 'Vendor:Schematic: Delicate Arcanite Converter',
1815 result = 1,
1816 reagents = {
1817 [ReagentData['spidersilk']['ironweb']] = 1,
1818 [ReagentData['bar']['arcanite']] = 1,
1819 }
1820 },
1821 ['Thorium Shells'] = {
1822 skill = 285,
1823 description = 'MinLvl: 52, Projectile, Bullet, Adds 17.5 damage per second',
1824 type = 'Bullet',
1825 source = 'Drop:Schematic: Thorium Shells',
1826 sourcerarity = 'Uncommon',
1827 result = 200,
1828 resultrarity = 'Uncommon',
1829 reagents = {
1830 [ReagentData['powder']['dense']] = 1,
1831 [ReagentData['bar']['thorium']] = 2,
1832 }
1833 },
1834 ['Master Engineer\'s Goggles'] = {
1835 skill = 290,
1836 description = '[BoE] (Cloth Head) AC: 61, Sta: 16, Spi: 17, Requires Engineering (280)',
1837 type = 'Cloth',
1838 source = 'Drop:Schematic: Master Engineer\'s Goggles',
1839 sourcerarity = 'Uncommon',
1840 result = 1,
1841 resultrarity = 'Uncommon',
1842 reagents = {
1843 [ReagentData['armor']['firegoggles']] = 1,
1844 [ReagentData['gem']['hugeemerald']] = 2,
1845 [ReagentData['leather']['enchanted']] = 4,
1846 }
1847 },
1848 ['Voice Amplification Modulator'] = {
1849 skill = 290,
1850 description = '[BoE] (Neck) Equip: Increases your resistance to silence effects by 7%.',
1851 type = 'Miscellaneous',
1852 source = 'Drop:Schematic: Voice Amplification Modulator',
1853 sourcerarity = 'Uncommon',
1854 result = 1,
1855 resultrarity = 'Uncommon',
1856 reagents = {
1857 [ReagentData['part']['goldpowercore']] = 1,
1858 [ReagentData['part']['delicatearcaniteconverter']] = 2,
1859 [ReagentData['part']['thoriumwidget']] = 1,
1860 [ReagentData['gem']['largeopal']] = 1,
1861 }
1862 },
1863 ['Arcane Bomb'] = {
1864 skill = 300,
1865 description = 'Requires Engineering (300), Use: Drains 675 to 1125 mana from those in the blast radius and does 50% of the mana drained in damage to the target. Also Silences targets in the blast for 5 sec.',
1866 type = 'Explosives',
1867 source = 'Drop:Schematic: Arcane Bomb',
1868 sourcerarity = 'Uncommon',
1869 result = 3,
1870 reagents = {
1871 [ReagentData['bar']['thorium']] = 3,
1872 [ReagentData['part']['delicatearcaniteconverter']] = 1,
1873 [ReagentData['cloth']['rune']] = 1,
1874 }
1875 },
1876 ['Arcanite Dragonling'] = {
1877 skill = 300,
1878 description = '[BoE] [U] (Trinket) MinLvl: 50, Requires Engineering (300), Use: The Arcanite Dragonling comes to life and defends you for 1 min.',
1879 type = 'Devices',
1880 source = 'Drop:Schematic: Arcanite Dragonling',
1881 sourcerarity = 'Uncommon',
1882 result = 1,
1883 resultname = 'Arcanite Mechanical Dragonling',
1884 resultrarity = 'Rare',
1885 reagents = {
1886 [ReagentData['part']['goldpowercore']] = 4,
1887 [ReagentData['bar']['enchantedthorium']] = 10,
1888 [ReagentData['part']['mithrilmechanicaldragonling']] = 1,
1889 [ReagentData['part']['delicatearcaniteconverter']] = 8,
1890 [ReagentData['part']['thoriumwidget']] = 6,
1891 [ReagentData['leather']['enchanted']] = 6,
1892 }
1893 },
1894 ['Biznicks 247x128 Accurascope'] = {
1895 skill = 300,
1896 description = 'MinLvl: 50, Use: Attaches a permanent scope to a bow or gun that increases its chance to hit by 3%.',
1897 type = 'Devices',
1898 source = 'Drop:Schematic: Biznicks 247x128 Accurascope',
1899 sourcerarity = 'Rare',
1900 result = 1,
1901 resultrarity = 'Rare',
1902 reagents = {
1903 [ReagentData['bar']['darkiron']] = 6,
1904 [ReagentData['part']['thoriumtube']] = 1,
1905 [ReagentData['element']['essenceofearth']] = 2,
1906 [ReagentData['monster']['lavacore']] = 2,
1907 [ReagentData['part']['delicatearcaniteconverter']] = 4,
1908 }
1909 },
1910 ['Core Marksman Rifle'] = {
1911 skill = 300,
1912 description = '[BoE] (Gun) Dmg: 64-120, Spd: 2.50, DPS: 36.8, MinLvl: 60, Equip: +22 ranged Attack Power., Equip: Improves your chance to hit by 1%.',
1913 type = 'Gun',
1914 source = 'Drop:Schematic: Core Marksman Rifle',
1915 sourcerarity = 'Rare',
1916 result = 1,
1917 resultrarity = 'Epic',
1918 reagents = {
1919 [ReagentData['part']['thoriumtube']] = 2,
1920 [ReagentData['monster']['fierycore']] = 4,
1921 [ReagentData['monster']['lavacore']] = 2,
1922 [ReagentData['bar']['arcanite']] = 6,
1923 [ReagentData['part']['delicatearcaniteconverter']] = 2,
1924 }
1925 },
1926 ['Field Repair Bot 74A'] = {
1927 skill = 300,
1928 description = 'Requires Engineering (300), Use: Unfolds into a Field Repair Bot that can repair damaged items and purchase unwanted goods. After 10 minutes it\'s internal motor fails.',
1929 type = 'Devices',
1930 source = 'Drop',
1931 result = 1,
1932 reagents = {
1933 [ReagentData['element']['earth']] = 2,
1934 [ReagentData['leather']['rugged']] = 4,
1935 [ReagentData['part']['fusedwiring']] = 1,
1936 [ReagentData['bar']['thorium']] = 12,
1937 [ReagentData['element']['fire']] = 1,
1938 }
1939 },
1940 ['Flawless Arcanite Rifle'] = {
1941 skill = 300,
1942 description = '[BoE] (Gun) Dmg: 65-122, Spd: 3.00, DPS: 31.2, MinLvl: 56, Equip: Increased Guns +4., Equip: +10 ranged Attack Power.',
1943 type = 'Gun',
1944 source = 'Drop:Schematic: Flawless Arcanite Rifle',
1945 sourcerarity = 'Uncommon',
1946 result = 1,
1947 resultrarity = 'Rare',
1948 reagents = {
1949 [ReagentData['part']['thoriumtube']] = 2,
1950 [ReagentData['element']['essenceofearth']] = 2,
1951 [ReagentData['gem']['azerothiandiamond']] = 2,
1952 [ReagentData['element']['essenceoffire']] = 2,
1953 [ReagentData['bar']['arcanite']] = 10,
1954 [ReagentData['leather']['enchanted']] = 2,
1955 }
1956 },
1957 ['Ultra-Flash Shadow Reflector'] = {
1958 skill = 300,
1959 description = '[BoE] [U] (Trinket) MinLvl: 55, Requires Engineering (300), Use: Reflects Shadow spells back at their caster for 5 seconds.',
1960 type = 'Devices',
1961 source = 'Drop:Schematic: Ultra-Flash Shadow Reflector',
1962 sourcerarity = 'Uncommon',
1963 result = 1,
1964 resultname = 'Ultra-Flash Shadow Reflector',
1965 resultrarity = 'Rare',
1966 reagents = {
1967 [ReagentData['bar']['darkiron']] = 8,
1968 [ReagentData['part']['truesilvertransformer']] = 4,
1969 [ReagentData['element']['livingessence']] = 6,
1970 [ReagentData['element']['essenceofundeath']] = 4,
1971 [ReagentData['gem']['azerothiandiamond']] = 2,
1972 [ReagentData['gem']['largeopal']] = 2,
1973 },
1974 },
1975 ['Force Reactive Disk'] = {
1976 skill = 300,
1977 description = '[BoE] (OH Shield) AC: 2548, Blk: 44, Sta: 11, MinLvl: 60, Requires Engineering (300), Equip: When the shield blocks it releases an electrical charge that damages all nearby enemies. This also has a chance of damaging the shield.',
1978 type = 'Shield',
1979 source = 'Drop:Schematic: Force Reactive Disk',
1980 sourcerarity = 'Rare',
1981 result = 1,
1982 resultrarity = 'Epic',
1983 reagents = {
1984 [ReagentData['element']['essenceofearth']] = 8,
1985 [ReagentData['element']['essenceofair']] = 8,
1986 [ReagentData['element']['livingessence']] = 12,
1987 [ReagentData['bar']['arcanite']] = 6,
1988 [ReagentData['part']['delicatearcaniteconverter']] = 2,
1989 }
1990 },
1991 ['Hyper-Radiant Flame Reflector'] = {
1992 skill = 290,
1993 description = '[BoE] [U] (Trinket) MinLvl: 53, Requires Engineering (290), Use: Reflects Fire spells back at their caster for 5 seconds.',
1994 type = 'Devices',
1995 source = 'Drop:Schematic: Hyper-Radiant Flame Reflector',
1996 sourcerarity = 'Uncommon',
1997 result = 1,
1998 resultname = 'Hyper-Radiant Flame Reflector',
1999 resultrarity = 'Rare',
2000 reagents = {
2001 [ReagentData['bar']['darkiron']] = 4,
2002 [ReagentData['part']['truesilvertransformer']] = 3,
2003 [ReagentData['element']['essenceofwater']] = 6,
2004 [ReagentData['gem']['starruby']] = 4,
2005 [ReagentData['gem']['azerothiandiamond']] = 2,
2006 }
2007 },
2008 ['World Enlarger'] = {
2009 skill = 260,
2010 description = '[BoE] [U] (Trinket) Requires Gnomish Engineering (250), Use: Enlarges the entire world for 5 minutes or until you attack.',
2011 type = 'Devices',
2012 source = 'Drop:Schematic: World Enlarger',
2013 sourcerarity = 'Uncommon',
2014 result = 1,
2015 resultname = 'World Enlarger',
2016 resultrarity = 'Uncommon',
2017 reagents = {
2018 [ReagentData['part']['mithrilcasing']] = 1,
2019 [ReagentData['part']['thoriumwidget']] = 2,
2020 [ReagentData['part']['goldpowercore']] = 1,
2021 [ReagentData['part']['unstabletrigger']] = 1,
2022 [ReagentData['gem']['citrine']] = 1,
2023 },
2024 },
2025 ['Alarm-O-Bot'] = {
2026 skill = 265,
2027 description = 'Requires Engineering (265), Use: Summons an Alarm-O-Bot for 10 minutes that occasionally sends out a pulse that detects nearby stealthy or invisible enemies.',
2028 type = 'Devices',
2029 source = 'Drop:Schematic: Alarm-O-Bot',
2030 sourcerarity = 'Uncommon',
2031 result = 1,
2032 resultname = 'Alarm-O-Bot',
2033 resultrarity = 'Common',
2034 reagents = {
2035 [ReagentData['bar']['thorium']] = 4,
2036 [ReagentData['part']['thoriumwidget']] = 2,
2037 [ReagentData['leather']['rugged']] = 4,
2038 [ReagentData['gem']['starruby']] = 1,
2039 [ReagentData['part']['fusedwiring']] = 1,
2040 },
2041 },
2042 ['Ultrasafe Transporter - Gadgetzan'] = {
2043 skill = 260,
2044 description = 'Requires Gnomish Engineering (260), Use: Safely transport yourself to Gadgetzan in Tanaris! Emphasis on Safe! Yup, nothing bad could ever happen while using this device!',
2045 type = 'Miscellaneous',
2046 source = 'Trainer',
2047 result = 1,
2048 reagents = {
2049 [ReagentData['bar']['mithril']] = 12,
2050 [ReagentData['part']['truesilvertransformer']] = 2,
2051 [ReagentData['element']['coreofearth']] = 4,
2052 [ReagentData['element']['globeofwater']] = 2,
2053 [ReagentData['gem']['aquamarine']] = 4,
2054 [ReagentData['part']['inlaidmithrilcylinder']] = 1,
2055 },
2056 },
2057 ['Bloodvine Goggles'] = {
2058 skill = 300,
2059 description = '[BoE] (Cloth Head) AC: 75, MinLvl: 60, Requires Engineering (300), Passive: Improves your chance to hit with spells by 2%., Passive: Improves your chance to get a critical strike with spells by 1%., Passive: Restores 9 mana every 5 sec.',
2060 type = 'Cloth',
2061 source = 'Vendor:Schematic: Bloodvine Goggles',
2062 result = 1,
2063 resultrarity = 'Rare',
2064 reagents = {
2065 [ReagentData['herb']['bloodvine']] = 4,
2066 [ReagentData['gem']['souldarite']] = 5,
2067 [ReagentData['part']['delicatearcaniteconverter']] = 2,
2068 [ReagentData['monster']['powerfulmojo']] = 8,
2069 [ReagentData['leather']['enchanted']] = 4,
2070 }
2071 },
2072 ['Bloodvine Lens'] = {
2073 skill = 300,
2074 description = '[BoE] (Leather Head) AC: 147, Sta: 12, MinLvl: 60, Requires Engineering (300), Passive: Improves your chance to get a critical strike by 2%., Passive: Slightly increases your stealth detection.',
2075 type = 'Leather',
2076 source = 'Vendor:Schematic: Bloodvine Lens',
2077 result = 1,
2078 resultrarity = 'Rare',
2079 reagents = {
2080 [ReagentData['herb']['bloodvine']] = 5,
2081 [ReagentData['gem']['souldarite']] = 5,
2082 [ReagentData['part']['delicatearcaniteconverter']] = 1,
2083 [ReagentData['monster']['powerfulmojo']] = 8,
2084 [ReagentData['leather']['enchanted']] = 4,
2085 }
2086 },
2087 }
2088 end