vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function ReagentData_LoadFirstAid()
2 ReagentData['crafted']['firstaid'] = {
3 ['Linen Bandage'] = {
4 skill = 1,
5 description = 'Requires First Aid (1), Use: Heals 66 damage over 6 sec.',
6 type = 'Reagent',
7 source = 'Trainer',
8 result = 1,
9 reagents = {
10 [ReagentData['cloth']['linen']] = 1,
11 }
12 },
13 ['Heavy Linen Bandage'] = {
14 skill = 40,
15 description = 'Requires First Aid (20), Use: Heals 114 damage over 6 sec.',
16 type = 'Reagent',
17 source = 'Trainer',
18 result = 1,
19 reagents = {
20 [ReagentData['cloth']['linen']] = 2,
21 }
22 },
23 ['Anti-Venom'] = {
24 skill = 80,
25 description = 'Use: Target is cured of poisons up to level 25.',
26 type = 'Reagent',
27 source = 'Trainer',
28 result = 3,
29 reagents = {
30 [ReagentData['monster']['smallvenomsac']] = 1,
31 }
32 },
33 ['Wool Bandage'] = {
34 skill = 80,
35 description = 'Requires First Aid (50), Use: Heals 161 damage over 7 sec.',
36 type = 'Reagent',
37 source = 'Trainer',
38 result = 1,
39 reagents = {
40 [ReagentData['cloth']['wool']] = 1,
41 }
42 },
43 ['Heavy Wool Bandage'] = {
44 skill = 115,
45 description = 'Requires First Aid (75), Use: Heals 301 damage over 7 sec.',
46 type = 'Reagent',
47 source = 'Trainer',
48 result = 1,
49 reagents = {
50 [ReagentData['cloth']['wool']] = 2,
51 }
52 },
53 ['Strong Anti-Venom'] = {
54 skill = 130,
55 description = 'Use: Target is cured of poisons up to level 35.',
56 type = 'Reagent',
57 source = 'Drop:Manual: Strong Anti-Venom',
58 sourcerarity = 'Uncommon',
59 result = 3,
60 reagents = {
61 [ReagentData['monster']['largevenomsac']] = 1,
62 }
63 },
64 ['Silk Bandage'] = {
65 skill = 150,
66 description = 'Requires First Aid (100), Use: Heals 400 damage over 8 sec.',
67 type = 'Reagent',
68 source = 'Trainer',
69 result = 1,
70 reagents = {
71 [ReagentData['cloth']['silk']] = 1,
72 }
73 },
74 ['Heavy Silk Bandage'] = {
75 skill = 180,
76 description = 'Requires First Aid (125), Use: Heals 640 damage over 8 sec.',
77 type = 'Reagent',
78 source = 'Vendor:Manual: Heavy Silk Bandage',
79 result = 1,
80 reagents = {
81 [ReagentData['cloth']['silk']] = 2,
82 }
83 },
84 ['Mageweave Bandage'] = {
85 skill = 210,
86 description = 'Requires First Aid (150), Use: Heals 800 damage over 8 sec.',
87 type = 'Reagent',
88 source = 'Vendor:Manual: Mageweave Bandage',
89 sourcerarity = 'Uncommon',
90 result = 1,
91 reagents = {
92 [ReagentData['cloth']['mageweave']] = 1,
93 }
94 },
95 ['Heavy Mageweave Bandage'] = {
96 skill = 240,
97 description = 'Requires First Aid (175), Use: Heals 1104 damage over 8 sec.',
98 type = 'Reagent',
99 source = 'Trainer',
100 result = 1,
101 reagents = {
102 [ReagentData['cloth']['mageweave']] = 2,
103 }
104 },
105 ['Runecloth Bandage'] = {
106 skill = 260,
107 description = 'Requires First Aid (200), Use: Heals 1360 damage over 8 sec.',
108 type = 'Reagent',
109 source = 'Trainer',
110 result = 1,
111 reagents = {
112 [ReagentData['cloth']['rune']] = 1,
113 }
114 },
115 ['Heavy Runecloth Bandage'] = {
116 skill = 290,
117 description = 'Requires First Aid (225), Use: Heals 2000 damage over 8 sec.',
118 type = 'Reagent',
119 source = 'Trainer',
120 result = 1,
121 reagents = {
122 [ReagentData['cloth']['rune']] = 2,
123 }
124 },
125 ['Powerful Anti-Venom'] = {
126 skill = 300,
127 description = 'Use: Target is cured of poisons up to level 60.',
128 type = 'Reagent',
129 source = 'Vendor:Formula: Powerful Anti-Venom',
130 result = 1,
131 reagents = {
132 [ReagentData['monster']['hugevenomsac']] = 1,
133 }
134 },
135 }
136 end