-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonster_stats.lua
More file actions
331 lines (331 loc) · 7.92 KB
/
Copy pathMonster_stats.lua
File metadata and controls
331 lines (331 loc) · 7.92 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
local data = { {
name = "Monster",
id = "item_drop_slots",
value = 1,
stat_text = "1 item drop slots",
},
{
name = "Monster",
id = "energy_shield_recharge_rate_per_minute_%",
value = 2000,
stat_text = "33.3% of [[Energy Shield]] Recharged per second",
},
{
name = "Monster",
id = "mana_regeneration_rate_per_minute_%",
value = 100,
stat_text = "Regenerate 1.7% of [[Mana]] per second",
},
{
name = "Monster",
id = "base_maximum_mana",
value = 200,
stat_text = "+200 to maximum [[Mana]]",
},
{
name = "Monster",
id = "maximum_physical_damage_reduction_%",
value = 75,
stat_text = "75% to maximum [[Physical Damage]] Reduction",
},
{
name = "Monster",
id = "max_viper_strike_orbs",
value = 4,
stat_text = "Can have up to 4 [[Viper Strike]] Orbs",
},
{
name = "Monster",
id = "base_maximum_all_resistances_%",
value = 75,
stat_text = "",
},
{
name = "Monster",
id = "max_fuse_arrow_orbs",
value = 5,
stat_text = "Can have up to 5 [[Explosive Arrow]] Stacks",
},
{
name = "Monster",
id = "max_fire_beam_stacks",
value = 8,
stat_text = "Can have up to 8 Fire Beam Stacks",
},
{
name = "Monster",
id = "max_charged_attack_stacks",
value = 10,
stat_text = "10 additional maximum [[Blade Flurry]] stages",
},
{
name = "Monster",
id = "base_critical_strike_multiplier",
value = 130,
stat_text = "Base [[Critical Strike Multiplier]]: 130",
},
{
name = "Monster",
id = "critical_ailment_dot_multiplier_+",
value = 30,
stat_text = "+30% to Damage over Time Multiplier for Ailments from [[Critical strike|Critical Strikes]]",
},
{
name = "Monster",
id = "max_endurance_charges",
value = 3,
stat_text = "+3 to Maximum [[Endurance Charge|Endurance Charges]]",
},
{
name = "Monster",
id = "max_frenzy_charges",
value = 3,
stat_text = "+3 to Maximum [[Frenzy Charge|Frenzy Charges]]",
},
{
name = "Monster",
id = "max_power_charges",
value = 3,
stat_text = "+3 to Maximum [[Power Charge|Power Charges]]",
},
{
name = "Monster",
id = "base_attack_speed_+%_per_frenzy_charge",
value = 4,
stat_text = "4% increased [[Attack Speed]] per [[Frenzy Charge]]",
},
{
name = "Monster",
id = "base_attack_speed_+%_per_frenzy_charge_if_not_player_minion",
value = 11,
stat_text = "",
},
{
name = "Monster",
id = "base_cast_speed_+%_per_frenzy_charge",
value = 4,
stat_text = "4% increased [[Cast Speed]] per [[Frenzy Charge]]",
},
{
name = "Monster",
id = "base_cast_speed_+%_per_frenzy_charge_if_not_player_minion",
value = 11,
stat_text = "",
},
{
name = "Monster",
id = "movement_velocity_+%_per_frenzy_charge_if_not_player_minion",
value = 5,
stat_text = "",
},
{
name = "Monster",
id = "object_inherent_damage_+%_final_per_frenzy_charge",
value = 4,
stat_text = "4% more Damage per [[Frenzy Charge]]",
},
{
name = "Monster",
id = "physical_damage_reduction_%_per_endurance_charge",
value = 4,
stat_text = "4% additional [[Physical Damage]] Reduction per [[Endurance Charge]]",
},
{
name = "Monster",
id = "physical_damage_reduction_%_per_endurance_charge_if_not_player_minion",
value = 11,
stat_text = "",
},
{
name = "Monster",
id = "elemental_damage_reduction_%_per_endurance_charge_if_player_minion",
value = 4,
stat_text = "",
},
{
name = "Monster",
id = "resist_all_elements_%_per_endurance_charge_if_not_player_minion",
value = 15,
stat_text = "",
},
{
name = "Monster",
id = "critical_strike_chance_+%_per_power_charge",
value = 50,
stat_text = "50% increased [[Critical Strike Chance]] per [[Power Charge]]",
},
{
name = "Monster",
id = "critical_strike_chance_+%_per_power_charge_if_not_player_minion",
value = 150,
stat_text = "",
},
{
name = "Monster",
id = "maximum_block_%",
value = 75,
stat_text = "+75% to maximum Chance to [[Block]] [[Attack Damage]]",
},
{
name = "Monster",
id = "base_maximum_spell_block_%",
value = 75,
stat_text = "+75% to maximum Chance to [[Block]] [[Spell Damage]]",
},
{
name = "Monster",
id = "base_number_of_totems_allowed",
value = 1,
stat_text = "+1 to maximum number of Summoned [[Totem|Totems]]",
},
{
name = "Monster",
id = "base_number_of_traps_allowed",
value = 3,
stat_text = "Can have up to 3 [[Trap|Traps]] placed at a time",
},
{
name = "Monster",
id = "base_number_of_remote_mines_allowed",
value = 5,
stat_text = "Can have up to 5 Remote [[Mine|Mines]] placed at a time",
},
{
name = "Monster",
id = "movement_velocity_cap",
value = 128,
stat_text = "[[Movement Speed]] is capped at 128",
},
{
name = "Monster",
id = "maximum_life_leech_rate_%_per_minute",
value = 1200,
stat_text = "+20% to Maximum total [[Life]] Recovery per second from [[Leech]]",
},
{
name = "Monster",
id = "maximum_mana_leech_rate_%_per_minute",
value = 1200,
stat_text = "+20% Maximum total [[Mana]] Recovery per second from [[Leech]]",
},
{
name = "Monster",
id = "maximum_energy_shield_leech_rate_%_per_minute",
value = 600,
stat_text = "+10% to Maximum total [[Energy Shield]] Recovery per second from [[Leech]]",
},
{
name = "Monster",
id = "monster_ignite_damage_+%_final",
value = -72,
stat_text = "Monsters deal 72% less [[Ignite]] Damage",
},
{
name = "Monster",
id = "monster_bleeding_damage_+%_final",
value = -86,
stat_text = "Monsters deal 86% less Bleeding Damage",
},
{
name = "Monster",
id = "monster_poison_damage_+%_final",
value = -50,
stat_text = "Monsters deal 50% less [[Poison]] Damage",
},
{
name = "Monster",
id = "bleeding_moving_damage_%_of_base_override",
value = 500,
stat_text = "Bleeding while moving deals 500% of base damage",
},
{
name = "Monster",
id = "max_azurite_debuff_stacks",
value = 10,
stat_text = "Can have up to 10 Azurite Stacks",
},
{
name = "Monster",
id = "impaled_debuff_base_duration_ms",
value = 8000,
stat_text = "Impale lasts 8 seconds",
},
{
name = "Monster",
id = "impaled_debuff_number_of_reflected_hits",
value = 5,
stat_text = "Impales you inflict last 5 additional [[Hit|Hits]]",
},
{
name = "Monster",
id = "ignore_skill_weapon_restrictions",
value = 1,
stat_text = "[[Skill]] weapon restrictions are ignored",
},
{
name = "Monster",
id = "base_total_number_of_sigils_allowed",
value = 3,
stat_text = "You can Cast 3 additional Brands",
},
{
name = "Monster",
id = "maximum_life_leech_amount_per_leech_%_max_life",
value = 10,
stat_text = "+10% of Maximum [[Life]] to maximum Recovery per [[Life]] [[Leech]]",
},
{
name = "Monster",
id = "maximum_mana_leech_amount_per_leech_%_max_mana",
value = 10,
stat_text = "+10% of Maximum [[Mana]] to maximum Recovery per [[Mana]] [[Leech]]",
},
{
name = "Monster",
id = "maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield",
value = 10,
stat_text = "+10% of Maximum [[Energy Shield]] to maximum Recovery per [[Energy Shield]] [[Leech]]",
},
{
name = "Monster",
id = "object_inherent_melee_hit_stun_duration_+%_final",
value = 20,
stat_text = "Melee [[Hit|hits]] have 20% more Stun Duration",
},
{
name = "Monster",
id = "scale_melee_range_to_actor_scale",
value = 1,
stat_text = "Melee range scaled by model size",
},
{
name = "Monster",
id = "use_melee_pattern_range",
value = 1,
stat_text = "",
},
{
name = "Monster",
id = "actor_scale_+%_limit",
value = 100,
stat_text = "",
},
{
name = "Monster",
id = "damage_taken_when_hit_+%_final_per_fortification",
value = -1,
stat_text = "",
},
{
name = "Monster",
id = "base_max_fortification",
value = 20,
stat_text = "+20 to maximum Fortification",
},
{
name = "Monster",
id = "soul_eater_maximum_stacks",
value = 45,
stat_text = "Maximum 45 Eaten Souls",
}}
return data