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