Skip to content

Commit 106e928

Browse files
committed
Set bonuses should only count below exemplar for Attuned or VeryRare sets.
1 parent 3cb2aea commit 106e928

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

Inventor/BoostSetData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Text;
44
using Newtonsoft.Json;
@@ -360,7 +360,7 @@ public string GetPowers(Boost boost, bool attuned, string prefix, string catalyz
360360
s += "\tBoostCombinable False" + Environment.NewLine;
361361
s += "\tMinSlotLevel " + (minSlotLevel - 1) + Environment.NewLine;
362362
if (!String.IsNullOrEmpty(boost.slotRequires)) s += "\tSlotRequires " + boost.slotRequires + Environment.NewLine;
363-
s += "\tBoostAlwaysCountForSet True" + Environment.NewLine;
363+
if (attuned || rarity == "VeryRare") s += "\tBoostAlwaysCountForSet True" + Environment.NewLine;
364364
if (attuned) s += "\tBoostLicenseLevel 0" + Environment.NewLine;
365365
s += "\tDisplayShortHelp \"" + PString(boost.shortHelp) + "\"" + Environment.NewLine;
366366
s += "\tDisplayHelp \"" + PString(boost.description) + "\"" + Environment.NewLine;

Inventor/Resources/BoostTypes.txt

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,46 @@
287287
]
288288
]
289289
},
290+
{
291+
"name": "Boosts_Interrupt_40",
292+
"displayName": "Interrupt",
293+
"description": "Reduces interrupt time by {Boost.Attrib.Interrupt.Scale}%.",
294+
"shortHelp": "-Interrupt",
295+
"attribMods": [
296+
[
297+
{
298+
"name": "Interrupt",
299+
"table": "Melee_Boosts_40",
300+
"attrib": "kInterruptTime",
301+
"scale": "1.0000"
302+
}
303+
],
304+
[
305+
{
306+
"name": "Interrupt",
307+
"table": "Melee_Boosts_40",
308+
"attrib": "kInterruptTime",
309+
"scale": "0.6250"
310+
}
311+
],
312+
[
313+
{
314+
"name": "Interrupt",
315+
"table": "Melee_Boosts_40",
316+
"attrib": "kInterruptTime",
317+
"scale": "0.5000"
318+
}
319+
],
320+
[
321+
{
322+
"name": "Interrupt",
323+
"table": "Melee_Boosts_40",
324+
"attrib": "kInterruptTime",
325+
"scale": "0.4375"
326+
}
327+
]
328+
]
329+
},
290330
{
291331
"name": "Boosts_Knockback_60",
292332
"displayName": "Knockback",
@@ -434,7 +474,7 @@
434474
{
435475
"name": "Special_FastSnipe",
436476
"displayName": "Fast Snipe",
437-
"description": "This enhancement will cause all of your snipe powers to become instant-cast.",
477+
"description": "All of your snipe powers become instant-cast.",
438478
"shortHelp": "Special",
439479
"attribMods": [
440480
[

0 commit comments

Comments
 (0)