diff --git a/Base/Base.csproj b/Base/Base.csproj
index 184d771b..13a1ef0f 100644
--- a/Base/Base.csproj
+++ b/Base/Base.csproj
@@ -43,6 +43,10 @@
ZStatus.cs
+
+ ..\packages\FSharp.Core.4.6.2\lib\net45\FSharp.Core.dll
+ False
+
@@ -72,7 +76,6 @@
-
@@ -112,5 +115,14 @@
ZStatus.cs
+
+
+ {7b1c2fff-0399-4a7a-82ef-126660356121}
+ HeroDesigner.Schema
+
+
+
+
+
\ No newline at end of file
diff --git a/Base/Base/Data_Classes/Character.cs b/Base/Base/Data_Classes/Character.cs
index ac993809..87653c8d 100644
--- a/Base/Base/Data_Classes/Character.cs
+++ b/Base/Base/Data_Classes/Character.cs
@@ -706,7 +706,7 @@ static PopUp.Section PopSetBonusListing(int sIdx, PowerEntry power)
{
if (enhancementSet.Bonus[index].PvMode == Enums.ePvX.PvP)
effectString += "(PvP)";
- if (num >= enhancementSet.Bonus[index].Slotted & (enhancementSet.Bonus[index].PvMode == Enums.ePvX.PvE & MidsContext.Config.Inc.PvE | enhancementSet.Bonus[index].PvMode == Enums.ePvX.PvP & !MidsContext.Config.Inc.PvE | enhancementSet.Bonus[index].PvMode == Enums.ePvX.Any))
+ if (num >= enhancementSet.Bonus[index].Slotted & (enhancementSet.Bonus[index].PvMode == Enums.ePvX.PvE & !MidsContext.Config.Inc.DisablePvE | enhancementSet.Bonus[index].PvMode == Enums.ePvX.PvP & MidsContext.Config.Inc.DisablePvE | enhancementSet.Bonus[index].PvMode == Enums.ePvX.Any))
section1.Add("(" + enhancementSet.Bonus[index].Slotted + ") " + effectString, PopUp.Colors.Effect, 0.9f, FontStyle.Bold, 0);
else if (power == null)
section1.Add("(" + enhancementSet.Bonus[index].Slotted + ") " + effectString, PopUp.Colors.Effect, 0.9f, FontStyle.Bold, 0);
diff --git a/Base/Base/Data_Classes/Effect.cs b/Base/Base/Data_Classes/Effect.cs
index 3b4753bc..ffc10fd9 100644
--- a/Base/Base/Data_Classes/Effect.cs
+++ b/Base/Base/Data_Classes/Effect.cs
@@ -1482,7 +1482,7 @@ public bool CanInclude()
public bool PvXInclude()
{
- return MidsContext.Archetype == null || (this.PvMode != Enums.ePvX.PvP && MidsContext.Config.Inc.PvE || this.PvMode != Enums.ePvX.PvE && !MidsContext.Config.Inc.PvE) && (this.nIDClassName == -1 || this.nIDClassName == MidsContext.Archetype.Idx);
+ return MidsContext.Archetype == null || (this.PvMode != Enums.ePvX.PvP && !MidsContext.Config.Inc.DisablePvE || this.PvMode != Enums.ePvX.PvE && MidsContext.Config.Inc.DisablePvE) && (this.nIDClassName == -1 || this.nIDClassName == MidsContext.Archetype.Idx);
}
float ParseMagnitudeExpression()
diff --git a/Base/Base/Data_Classes/Power.cs b/Base/Base/Data_Classes/Power.cs
index 4aba87aa..32cceecc 100644
--- a/Base/Base/Data_Classes/Power.cs
+++ b/Base/Base/Data_Classes/Power.cs
@@ -785,7 +785,7 @@ public int[] GetRankedEffects()
int[] numArray1 = new int[this.Effects.Length];
for (int index1 = 0; index1 <= this.Effects.Length - 1; ++index1)
{
- if ((MidsContext.Config.Suppression & this.Effects[index1].Suppression) == Enums.eSuppress.None & (MidsContext.Config.Inc.PvE & this.Effects[index1].PvMode != Enums.ePvX.PvP | !MidsContext.Config.Inc.PvE & this.Effects[index1].PvMode != Enums.ePvX.PvE))
+ if ((MidsContext.Config.Suppression & this.Effects[index1].Suppression) == Enums.eSuppress.None & (!MidsContext.Config.Inc.DisablePvE & this.Effects[index1].PvMode != Enums.ePvX.PvP | MidsContext.Config.Inc.DisablePvE & this.Effects[index1].PvMode != Enums.ePvX.PvE))
{
numArray1[index1] = (int)(this.Effects[index1].EffectClass + 1);
if ((double)Math.Abs(this.Effects[index1].Probability - 1f) < 0.01)
@@ -975,82 +975,82 @@ bool GreOverride(int iID1, int iID2)
public int GetDurationEffectID()
{
- int num1 = -1;
+ int idx = -1;
Enums.eEffectClass eEffectClass = Enums.eEffectClass.Ignored;
- float num2 = 0.0f;
- float num3 = 0.0f;
- bool flag1 = false;
+ float probability = 0.0f;
+ float duration = 0.0f;
+ bool isDmg = false;
Enums.eEffectType eEffectType = Enums.eEffectType.None;
- float num4 = 0.0f;
- bool flag2 = false;
- bool flag3 = false;
- bool flag4 = false;
- int num5 = int.MaxValue;
+ float mag = 0.0f;
+ bool buffable = false;
+ bool isDefiance = false;
+ bool isEntCreate = false;
+ int delayTime = int.MaxValue;
for (int index = 0; index <= this.Effects.Length - 1; ++index)
{
- bool flag5 = false;
- if (MidsContext.Config.Inc.PvE & this.Effects[index].PvMode != Enums.ePvX.PvP | !MidsContext.Config.Inc.PvE & this.Effects[index].PvMode != Enums.ePvX.PvE && ((double)this.Effects[index].Duration > 0.0 | this.Effects[index].EffectType == Enums.eEffectType.EntCreate) & this.Effects[index].EffectClass != Enums.eEffectClass.Ignored)
+ bool applies = false;
+ if (!MidsContext.Config.Inc.DisablePvE & this.Effects[index].PvMode != Enums.ePvX.PvP | MidsContext.Config.Inc.DisablePvE & this.Effects[index].PvMode != Enums.ePvX.PvE && (Effects[index].Duration > 0.0 | this.Effects[index].EffectType == Enums.eEffectType.EntCreate) & this.Effects[index].EffectClass != Enums.eEffectClass.Ignored)
{
if (this.Effects[index].EffectClass < eEffectClass)
- flag5 = true;
- if ((double)this.Effects[index].Probability > (double)num2 & this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance)
- flag5 = true;
- if (this.Effects[index].Buffable & !flag2)
- flag5 = true;
- if (this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance & flag3)
- flag5 = true;
- if ((double)Math.Abs(this.Effects[index].Probability - num2) < 0.01 & (double)this.Effects[index].Duration > (double)num3 & !this.Effects[index].isEnhancementEffect & this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance && eEffectType != Enums.eEffectType.Mez | this.Effects[index].EffectType == Enums.eEffectType.Mez)
+ applies = true;
+ if (Effects[index].Probability > (double)probability & this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance)
+ applies = true;
+ if (this.Effects[index].Buffable & !buffable)
+ applies = true;
+ if (this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance & isDefiance)
+ applies = true;
+ if (Math.Abs(this.Effects[index].Probability - probability) < 0.01 & Effects[index].Duration > (double)duration & !this.Effects[index].isEnhancementEffect & this.Effects[index].SpecialCase != Enums.eSpecialCase.Defiance && eEffectType != Enums.eEffectType.Mez | this.Effects[index].EffectType == Enums.eEffectType.Mez)
{
if (eEffectType == Enums.eEffectType.Mez & this.Effects[index].EffectType == Enums.eEffectType.Mez)
{
- if ((double)this.Effects[index].Mag > (double)num4 || this.Effects[index].SpecialCase == Enums.eSpecialCase.Domination && MidsContext.Character.Domination)
- flag5 = true;
+ if (Effects[index].Mag > (double)mag || this.Effects[index].SpecialCase == Enums.eSpecialCase.Domination && MidsContext.Character.Domination)
+ applies = true;
}
else
- flag5 = true;
+ applies = true;
}
- if ((double)num5 > (double)this.Effects[index].DelayedTime & (double)this.Effects[index].DelayedTime > 5.0)
- flag5 = true;
- if ((double)Math.Abs(this.Effects[index].Probability - 1f) < 0.01 & flag1 & this.Effects[index].EffectType == Enums.eEffectType.Mez)
- flag5 = true;
- if (this.Effects[index].EffectType == Enums.eEffectType.Mez & this.Effects[index].MezType == Enums.eMez.Taunt & this.Effects[index].EffectClass != Enums.eEffectClass.Primary)
- flag5 = false;
+ if (delayTime > (double)this.Effects[index].DelayedTime & Effects[index].DelayedTime > 5.0)
+ applies = true;
+ if (Math.Abs(this.Effects[index].Probability - 1f) < 0.01 & isDmg & this.Effects[index].EffectType == Enums.eEffectType.Mez)
+ applies = true;
+ if (this.Effects[index].EffectType == Enums.eEffectType.Mez && this.Effects[index].MezType == Enums.eMez.Taunt && this.Effects[index].EffectClass != Enums.eEffectClass.Primary)
+ applies = false;
if (((this.Effects[index].EffectClass > eEffectClass ? 1 : 0) & (this.Effects[index].SpecialCase != Enums.eSpecialCase.Domination ? 1 : (!MidsContext.Character.Domination ? 1 : 0))) != 0)
- flag5 = false;
- if (this.Effects[index].EffectType == Enums.eEffectType.EntCreate & !flag4 & (double)this.Effects[index].DelayedTime < 20.0 & eEffectType != Enums.eEffectType.Mez)
- flag5 = true;
- if (flag4 & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & ((double)this.Effects[index].Duration < (double)num3 | (double)Math.Abs(num3) < 0.01 | (double)this.Effects[index].DelayedTime > (double)num5 | (double)this.Effects[index].Mag < 0.0 & this.Effects[index].ToWho == Enums.eToWho.Self))
- flag5 = false;
- if (flag4 & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & (double)this.Effects[index].Absorbed_Duration > (double)num3)
- flag5 = true;
- if (eEffectType == Enums.eEffectType.Mez & (double)num4 < 0.0 & (this.Effects[index].EffectType == Enums.eEffectType.Resistance | this.Effects[index].EffectType == Enums.eEffectType.Regeneration) & (double)this.Effects[index].Mag > 0.0)
- flag5 = true;
+ applies = false;
+ if (this.Effects[index].EffectType == Enums.eEffectType.EntCreate & !isEntCreate & Effects[index].DelayedTime < 20.0 & eEffectType != Enums.eEffectType.Mez)
+ applies = true;
+ if (isEntCreate & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & (Effects[index].Duration < (double)duration | Math.Abs(duration) < 0.01 | Effects[index].DelayedTime > (double)delayTime | Effects[index].Mag < 0.0 & this.Effects[index].ToWho == Enums.eToWho.Self))
+ applies = false;
+ if (isEntCreate & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & Effects[index].Absorbed_Duration > (double)duration)
+ applies = true;
+ if (eEffectType == Enums.eEffectType.Mez & mag < 0.0 & (this.Effects[index].EffectType == Enums.eEffectType.Resistance | this.Effects[index].EffectType == Enums.eEffectType.Regeneration) & Effects[index].Mag > 0.0)
+ applies = true;
if (this.Effects[index].EffectType == Enums.eEffectType.SetMode)
- flag5 = false;
- if (flag5)
+ applies = false;
+ if (applies)
{
- num1 = index;
+ idx = index;
eEffectClass = this.Effects[index].EffectClass;
- num2 = this.Effects[index].Probability;
- num3 = !(flag4 & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & (double)this.Effects[index].Absorbed_Duration > (double)num3) ? this.Effects[index].Duration : this.Effects[index].Absorbed_Duration;
- flag1 = this.Effects[index].EffectType == Enums.eEffectType.Damage;
+ probability = this.Effects[index].Probability;
+ duration = !(isEntCreate & this.Effects[index].EffectType != Enums.eEffectType.EntCreate & Effects[index].Absorbed_Duration > (double)duration) ? this.Effects[index].Duration : this.Effects[index].Absorbed_Duration;
+ isDmg = this.Effects[index].EffectType == Enums.eEffectType.Damage;
eEffectType = this.Effects[index].EffectType;
- num4 = this.Effects[index].Mag;
- flag2 = this.Effects[index].Buffable;
- flag3 = this.Effects[index].SpecialCase == Enums.eSpecialCase.Defiance;
- flag4 = this.Effects[index].EffectType == Enums.eEffectType.EntCreate;
- num5 = (int)this.Effects[index].DelayedTime;
+ mag = this.Effects[index].Mag;
+ buffable = this.Effects[index].Buffable;
+ isDefiance = this.Effects[index].SpecialCase == Enums.eSpecialCase.Defiance;
+ isEntCreate = this.Effects[index].EffectType == Enums.eEffectType.EntCreate;
+ delayTime = (int)this.Effects[index].DelayedTime;
}
}
}
- return num1;
+ return idx;
}
public float[] GetDef(int buffDebuff = 0)
{
float[] numArray = new float[Enum.GetValues(Enums.eDamage.None.GetType()).Length];
bool flag = false;
- Enums.ePvX ePvX = MidsContext.Config.Inc.PvE ? Enums.ePvX.PvE : Enums.ePvX.PvP;
+ Enums.ePvX ePvX = !MidsContext.Config.Inc.DisablePvE ? Enums.ePvX.PvE : Enums.ePvX.PvP;
for (int index = 0; index <= this.Effects.Length - 1; ++index)
{
if (this.Effects[index].EffectType == Enums.eEffectType.Defense & (double)this.Effects[index].Probability > 0.0 & this.Effects[index].CanInclude() && buffDebuff == 0 | buffDebuff < 0 & (double)this.Effects[index].Mag < 0.0 | buffDebuff > 0 & (double)this.Effects[index].Mag > 0.0 && (this.Effects[index].Suppression & MidsContext.Config.Suppression) == Enums.eSuppress.None && this.Effects[index].PvMode == ePvX | this.Effects[index].PvMode == Enums.ePvX.Any)
@@ -1071,31 +1071,31 @@ public float[] GetDef(int buffDebuff = 0)
public float[] GetRes(bool pvE = true)
{
- float[] numArray = new float[Enum.GetValues(Enums.eDamage.None.GetType()).Length];
- bool flag = false;
+ float[] resists = new float[Enum.GetValues(Enums.eDamage.None.GetType()).Length];
+ bool hasDamage = false;
for (int index = 0; index <= this.Effects.Length - 1; ++index)
{
- if (this.Effects[index].EffectType == Enums.eEffectType.Resistance & (double)this.Effects[index].Probability > 0.0 & this.Effects[index].CanInclude() && this.Effects[index].PvMode != Enums.ePvX.PvP & pvE | this.Effects[index].PvMode != Enums.ePvX.PvE & !pvE)
+ if (this.Effects[index].EffectType == Enums.eEffectType.Resistance & Effects[index].Probability > 0.0 & this.Effects[index].CanInclude() && (this.Effects[index].PvMode != Enums.ePvX.PvP & pvE) | this.Effects[index].PvMode != Enums.ePvX.PvE & !pvE)
{
- numArray[(int)this.Effects[index].DamageType] += this.Effects[index].Mag;
+ resists[(int)this.Effects[index].DamageType] += this.Effects[index].Mag;
if (this.Effects[index].DamageType != Enums.eDamage.None)
- flag = true;
+ hasDamage = true;
}
}
- if (!flag)
+ if (!hasDamage)
{
- float num = numArray[0];
- for (int index = 0; index <= numArray.Length - 1; ++index)
- numArray[index] = num;
+ float num = resists[0];
+ for (int index = 0; index <= resists.Length - 1; ++index)
+ resists[index] = num;
}
- return numArray;
+ return resists;
}
public bool HasDefEffects()
{
for (int index = 0; index <= this.Effects.Length - 1; ++index)
{
- if (this.Effects[index].EffectType == Enums.eEffectType.Defense & (double)this.Effects[index].Probability > 0.0 & (this.Effects[index].Suppression & MidsContext.Config.Suppression) == Enums.eSuppress.None & (this.Effects[index].PvMode != Enums.ePvX.PvP & MidsContext.Config.Inc.PvE | this.Effects[index].PvMode != Enums.ePvX.PvE & !MidsContext.Config.Inc.PvE))
+ if (this.Effects[index].EffectType == Enums.eEffectType.Defense & (double)this.Effects[index].Probability > 0.0 & (this.Effects[index].Suppression & MidsContext.Config.Suppression) == Enums.eSuppress.None & (this.Effects[index].PvMode != Enums.ePvX.PvP & !MidsContext.Config.Inc.DisablePvE | this.Effects[index].PvMode != Enums.ePvX.PvE & MidsContext.Config.Inc.DisablePvE))
return true;
}
return false;
@@ -1105,7 +1105,7 @@ public bool HasResEffects()
{
for (int index = 0; index <= this.Effects.Length - 1; ++index)
{
- if (this.Effects[index].EffectType == Enums.eEffectType.Resistance & (double)this.Effects[index].Probability > 0.0 & (this.Effects[index].Suppression & MidsContext.Config.Suppression) == Enums.eSuppress.None & (this.Effects[index].PvMode != Enums.ePvX.PvP & MidsContext.Config.Inc.PvE | this.Effects[index].PvMode != Enums.ePvX.PvE & !MidsContext.Config.Inc.PvE))
+ if (this.Effects[index].EffectType == Enums.eEffectType.Resistance & (double)this.Effects[index].Probability > 0.0 & (this.Effects[index].Suppression & MidsContext.Config.Suppression) == Enums.eSuppress.None & (this.Effects[index].PvMode != Enums.ePvX.PvP & !MidsContext.Config.Inc.DisablePvE | this.Effects[index].PvMode != Enums.ePvX.PvE & MidsContext.Config.Inc.DisablePvE))
return true;
}
return false;
diff --git a/Base/Base/Document_Classes/Print.cs b/Base/Base/Document_Classes/Print.cs
index 11a376e1..91007b0d 100644
--- a/Base/Base/Document_Classes/Print.cs
+++ b/Base/Base/Document_Classes/Print.cs
@@ -112,7 +112,7 @@ int PageBorder(Rectangle bounds, PrintPageEventArgs args)
s = MidsContext.Character.Name + ": Level " + num3 + " " + MidsContext.Character.Archetype.DisplayName;
else
s = "Level " + num3 + " " + MidsContext.Character.Archetype.DisplayName;
- args.Graphics.DrawString(s, font1, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(s, font1, solidBrush, layoutRectangle, format);
int num4 = num1 + (8 + num2);
args.Graphics.DrawLine(pen, bounds.Left, num4, bounds.Left + bounds.Width, num4);
format.Alignment = StringAlignment.Near;
@@ -120,10 +120,10 @@ int PageBorder(Rectangle bounds, PrintPageEventArgs args)
int int32 = Convert.ToInt32(12.8);
layoutRectangle = new RectangleF((float)bounds.Left + 5.28f, (float)bounds.Top, (float)bounds.Width, (float)(num4 - bounds.Top));
Font font2 = new Font("Arial", (float)int32, FontStyle.Bold, GraphicsUnit.Pixel, (byte)0);
- args.Graphics.DrawString("Page " + this._pageNumber, font2, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString("Page " + this._pageNumber, font2, solidBrush, layoutRectangle, format);
format.Alignment = StringAlignment.Far;
layoutRectangle = new RectangleF((float)bounds.Left, (float)bounds.Top, (float)bounds.Width - 5.28f, (float)(num4 - bounds.Top));
- args.Graphics.DrawString(DateTime.Now.ToShortDateString() + "\n" + DateTime.Now.ToShortTimeString(), font2, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(DateTime.Now.ToShortDateString() + "\n" + DateTime.Now.ToShortTimeString(), font2, solidBrush, layoutRectangle, format);
return Convert.ToInt32(num4 + 8);
}
@@ -136,37 +136,37 @@ void PrintHistory(Rectangle bounds, PrintPageEventArgs args)
Alignment = StringAlignment.Near,
LineAlignment = StringAlignment.Near
};
- HistoryMap[] historyMapArray = MidsContext.Character.CurrentBuild.BuildHistoryMap(true, MidsContext.Config.I9.PrintIOLevels);
- int num1 = 0;
+ var historyMapArray = MidsContext.Character.CurrentBuild.BuildHistoryMap(true, !MidsContext.Config.I9.DisablePrintIOLevels);
+ int lvl = 0;
string s = ((int)MidsContext.Character.Alignment).ToString() + " CurrentBuild";
RectangleF layoutRectangle = new RectangleF(bounds.Left + 15, top, bounds.Width, 12.5f);
Font font1 = new Font("Arial", 10f, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Pixel);
args.Graphics.DrawString(s, font1, solidBrush, layoutRectangle, format);
- int num2 = top + Convert.ToInt32(12.5f);
- int num3 = num2;
+ int y1 = top + Convert.ToInt32(12.5f);
+ int y2 = y1;
Font font2 = new Font("Arial", 10f, FontStyle.Bold, GraphicsUnit.Pixel);
for (int index = 0; index <= historyMapArray.Length - 1; ++index)
{
if (historyMapArray[index].Level < 25)
{
- if (historyMapArray[index].Level != num1)
+ if (historyMapArray[index].Level != lvl)
{
- num2 += Convert.ToInt32(10f);
- num1 = historyMapArray[index].Level;
+ y1 += Convert.ToInt32(10f);
+ lvl = historyMapArray[index].Level;
}
- layoutRectangle = new RectangleF(bounds.Left + 15, num2, (float)(bounds.Width / 2 - 15), 12.5f);
- num2 += 12;
+ layoutRectangle = new RectangleF(bounds.Left + 15, y1, bounds.Width / 2 - 15, 12.5f);
+ y1 += 12;
}
else
{
- if (historyMapArray[index].Level != num1)
+ if (historyMapArray[index].Level != lvl)
{
if (historyMapArray[index].Level > 25)
- num3 += 10;
- num1 = historyMapArray[index].Level;
+ y2 += 10;
+ lvl = historyMapArray[index].Level;
}
- layoutRectangle = new RectangleF(bounds.Left + bounds.Width / 2, num3, bounds.Width / 2f, 12.5f);
- num3 += 12;
+ layoutRectangle = new RectangleF(bounds.Left + bounds.Width / 2, y2, bounds.Width / 2f, 12.5f);
+ y2 += 12;
}
args.Graphics.DrawString(historyMapArray[index].Text, font2, solidBrush, layoutRectangle, format);
}
@@ -175,108 +175,93 @@ void PrintHistory(Rectangle bounds, PrintPageEventArgs args)
static int PpInfo(Rectangle bounds, PrintPageEventArgs args)
{
- SolidBrush solidBrush = new SolidBrush(Color.Black);
+ var solidBrush = new SolidBrush(Color.Black);
int top = bounds.Top;
- StringFormat format = new StringFormat(StringFormatFlags.NoClip);
- Font font = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Pixel);
- format.Alignment = StringAlignment.Near;
- format.LineAlignment = StringAlignment.Near;
- string s1 = "Primary Power Set: " + MidsContext.Character.Powersets[0].DisplayName + '\n';
- RectangleF layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)top, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s1, font, (Brush)solidBrush, layoutRectangle, format);
+ var font = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Pixel);
+ var format = new StringFormat(StringFormatFlags.NoClip)
+ {
+ Alignment = StringAlignment.Near,
+ LineAlignment = StringAlignment.Near
+ };
+ args.Graphics.DrawString("Primary Power Set: " + MidsContext.Character.Powersets[0].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, top, bounds.Width, 15f), format);
int num1 = top + 15;
- string s2 = "Secondary Power Set: " + MidsContext.Character.Powersets[1].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num1, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s2, font, (Brush)solidBrush, layoutRectangle, format);
- int num2 = num1 + 15;
+ args.Graphics.DrawString("Secondary Power Set: " + MidsContext.Character.Powersets[1].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, num1, bounds.Width, 15f), format);
+ int y = num1 + 15;
if (MidsContext.Character.PoolTaken(3))
{
- string s3 = "Power Pool: " + MidsContext.Character.Powersets[3].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- num2 += 15;
+ args.Graphics.DrawString("Power Pool: " + MidsContext.Character.Powersets[3].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, y, bounds.Width, 15f), format);
+ y += 15;
}
if (MidsContext.Character.PoolTaken(4))
{
- string s3 = "Power Pool: " + MidsContext.Character.Powersets[4].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- num2 += 15;
+ args.Graphics.DrawString("Power Pool: " + MidsContext.Character.Powersets[4].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, y, bounds.Width, 15f), format);
+ y += 15;
}
if (MidsContext.Character.PoolTaken(5))
{
- string s3 = "Power Pool: " + MidsContext.Character.Powersets[5].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- num2 += 15;
+ args.Graphics.DrawString("Power Pool: " + MidsContext.Character.Powersets[5].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, y, bounds.Width, 15f), format);
+ y += 15;
}
if (MidsContext.Character.PoolTaken(6))
{
- string s3 = "Power Pool: " + MidsContext.Character.Powersets[6].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- num2 += 15;
+ args.Graphics.DrawString("Power Pool: " + MidsContext.Character.Powersets[6].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, y, bounds.Width, 15f), format);
+ y += 15;
}
if (MidsContext.Character.PoolTaken(7))
{
- string s3 = "Ancillary Pool: " + MidsContext.Character.Powersets[7].DisplayName + '\n';
- layoutRectangle = new RectangleF((float)(bounds.Left + 25), (float)num2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- num2 += 15;
+ args.Graphics.DrawString("Ancillary Pool: " + MidsContext.Character.Powersets[7].DisplayName + '\n', font, solidBrush, new RectangleF(bounds.Left + 25, y, bounds.Width, 15f), format);
+ y += 15;
}
- return num2;
+ return y;
}
void PrintProfileLong(Rectangle bounds, PrintPageEventArgs args)
-
{
SolidBrush solidBrush = new SolidBrush(Color.Black);
int vPos = bounds.Top;
- StringFormat format = new StringFormat(StringFormatFlags.NoClip);
- format.Alignment = StringAlignment.Near;
- format.LineAlignment = StringAlignment.Near;
- RectangleF layoutRectangle;
+ StringFormat format = new StringFormat(StringFormatFlags.NoClip)
+ {
+ Alignment = StringAlignment.Near,
+ LineAlignment = StringAlignment.Near
+ };
if (this._pageNumber == 1)
{
int num = Print.PpInfo(bounds, args) + 6;
- string s = "Extended " + MidsContext.Character.Alignment.ToString() + " Profile";
- layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)num, (float)bounds.Width, 15f);
Font font = new Font("Arial", 12f, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Pixel);
- args.Graphics.DrawString(s, font, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString("Extended " + MidsContext.Character.Alignment.ToString() + " Profile", font, solidBrush, new RectangleF(bounds.Left + 15, num, bounds.Width, 15f), format);
vPos = num + 15;
}
Font font1 = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Pixel);
if (this._sectionCompleted == Print.PrintWhat.None)
{
this._endOfPage = false;
- int num = this.BuildPowerListLong(ref vPos, (RectangleF)bounds, 12, Print.PrintWhat.Powers, args);
+ // mutates vPos
+ int num = this.BuildPowerListLong(ref vPos, bounds, 12, Print.PrintWhat.Powers, args);
if (this._endOfPage)
return;
string s = "------------";
- layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)num, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s, font1, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(s, font1, solidBrush, new RectangleF(bounds.Left + 15, num, bounds.Width, 15f), format);
vPos = num + 15;
this._sectionCompleted = Print.PrintWhat.Powers;
}
if (this._sectionCompleted == Print.PrintWhat.Powers)
{
this._endOfPage = false;
- vPos = this.BuildPowerListLong(ref vPos, (RectangleF)bounds, 12, Print.PrintWhat.Inherent, args);
+ vPos = this.BuildPowerListLong(ref vPos, bounds, 12, Print.PrintWhat.Inherent, args);
if (this._endOfPage)
return;
this._sectionCompleted = Print.PrintWhat.Inherent;
if (MidsContext.Character.Archetype.Epic)
{
string s = "------------";
- layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)vPos, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s, font1, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(s, font1, solidBrush, new RectangleF((bounds.Left + 15), vPos, bounds.Width, 15f), format);
vPos += 15;
}
}
if (this._sectionCompleted == Print.PrintWhat.Inherent && MidsContext.Character.Archetype.Epic)
{
this._endOfPage = false;
- this.BuildPowerListLong(ref vPos, (RectangleF)bounds, 12, Print.PrintWhat.EpicInherent, args);
+ this.BuildPowerListLong(ref vPos, bounds, 12, Print.PrintWhat.EpicInherent, args);
if (this._endOfPage)
return;
}
@@ -284,173 +269,159 @@ void PrintProfileLong(Rectangle bounds, PrintPageEventArgs args)
}
int BuildPowerListLong(
-
ref int vPos,
RectangleF bounds,
int fontSize,
Print.PrintWhat selection,
PrintPageEventArgs args)
{
- int num1;
if (this._pIndex < 0)
{
this._endOfPage = true;
this._printingProfile = false;
- num1 = vPos;
+ return vPos;
}
- else
+
+ var format = new StringFormat(StringFormatFlags.NoWrap | StringFormatFlags.NoClip);
+ var solidBrush = new SolidBrush(Color.Black);
+ int pgIdx = -1;
+ var font = new Font("Arial", fontSize, FontStyle.Bold, GraphicsUnit.Pixel);
+ bool isEnd = false;
+ for (int pIndex = this._pIndex; pIndex <= MidsContext.Character.CurrentBuild.Powers.Count - 1; ++pIndex)
{
- StringFormat format = new StringFormat(StringFormatFlags.NoWrap | StringFormatFlags.NoClip);
- SolidBrush solidBrush = new SolidBrush(Color.Black);
- int num2 = -1;
- Font font = new Font("Arial", (float)fontSize, FontStyle.Bold, GraphicsUnit.Pixel);
- bool flag1 = false;
- for (int pIndex = this._pIndex; pIndex <= MidsContext.Character.CurrentBuild.Powers.Count - 1; ++pIndex)
+ bool include = false;
+ switch (selection)
{
- bool flag2 = false;
- switch (selection)
- {
- case Print.PrintWhat.Powers:
- if (MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen)
- {
- flag2 = true;
- break;
- }
- break;
- case Print.PrintWhat.Inherent:
- if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen && MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null)
- {
- flag2 = !MidsContext.Character.CurrentBuild.Powers[pIndex].Power.IsEpic;
- if (flag2 && MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length < 1)
- flag2 = false;
- break;
- }
- break;
- case Print.PrintWhat.EpicInherent:
- if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen && MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null)
- {
- flag2 = MidsContext.Character.CurrentBuild.Powers[pIndex].Power.IsEpic;
- break;
- }
- break;
- }
- if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen & MidsContext.Character.CurrentBuild.Powers[pIndex].SubPowers.Length > 0)
- flag2 = false;
- if (flag2)
- {
- string s1 = "Level " + MidsContext.Character.CurrentBuild.Powers[pIndex].Level + 1 + ":";
- string s2 = MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null ? MidsContext.Character.CurrentBuild.Powers[pIndex].Power.DisplayName : "[No Power]";
- string s3 = "";
- if ((double)vPos - (double)bounds.Top + (double)((MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length + 1) * fontSize) * 1.25 > (double)bounds.Height)
+ case Print.PrintWhat.Powers:
+ if (MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen)
+ include = true;
+ break;
+ case Print.PrintWhat.Inherent:
+ if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen && MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null)
{
- num2 = pIndex;
- flag1 = true;
+ include = !MidsContext.Character.CurrentBuild.Powers[pIndex].Power.IsEpic;
+ if (include && MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length < 1)
+ include = false;
break;
}
- for (int index = 0; index <= MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length - 1; ++index)
+ break;
+ case Print.PrintWhat.EpicInherent:
+ if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen && MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null)
+ include = MidsContext.Character.CurrentBuild.Powers[pIndex].Power.IsEpic;
+ break;
+ }
+ if (!MidsContext.Character.CurrentBuild.Powers[pIndex].Chosen & MidsContext.Character.CurrentBuild.Powers[pIndex].SubPowers.Length > 0)
+ include = false;
+ if (include)
+ {
+ string s1 = "Level " + MidsContext.Character.CurrentBuild.Powers[pIndex].Level + 1 + ":";
+ string s2 = MidsContext.Character.CurrentBuild.Powers[pIndex].Power != null ? MidsContext.Character.CurrentBuild.Powers[pIndex].Power.DisplayName : "[No Power]";
+ string s3 = "";
+ if (vPos - (double)bounds.Top + (MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length + 1) * fontSize * 1.25 > bounds.Height)
+ {
+ pgIdx = pIndex;
+ isEnd = true;
+ break;
+ }
+ for (int index = 0; index <= MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length - 1; ++index)
+ {
+ if (!string.IsNullOrEmpty(s3))
+ s3 += '\n';
+ string str1;
+ if (index == 0)
+ str1 = s3 + "(A) ";
+ else
+ str1 = s3 + "(" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Level + 1 + ") ";
+ if (MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Enh > -1)
{
- if (!string.IsNullOrEmpty(s3))
- s3 += '\n';
- string str1;
- if (index == 0)
- str1 = s3 + "(A) ";
- else
- str1 = s3 + "(" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Level + 1 + ") ";
- if (MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Enh > -1)
+ IEnhancement enhancement = DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Enh];
+ switch (enhancement.TypeID)
{
- IEnhancement enhancement = DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Enh];
- switch (enhancement.TypeID)
- {
- case Enums.eType.Normal:
- string relativeString1 = Enums.GetRelativeString(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.RelativeLevel, false);
- string str2;
- if (!string.IsNullOrEmpty(relativeString1) & relativeString1 != "X")
- str2 = str1 + relativeString1 + " " + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - ";
- else
- str2 = !(relativeString1 == "X") ? str1 + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - " : str1 + "Disabled " + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - ";
- str1 = str2 + " ";
- break;
- case Enums.eType.SpecialO:
- string relativeString2 = Enums.GetRelativeString(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.RelativeLevel, false);
- string str3;
- if (!string.IsNullOrEmpty(relativeString2) & relativeString2 != "X")
- str3 = str1 + relativeString2 + " " + enhancement.GetSpecialName() + " - ";
- else
- str3 = !(relativeString2 == "X") ? str1 + enhancement.GetSpecialName() + " - " : str1 + "Disabled " + enhancement.GetSpecialName() + " - ";
- str1 = str3 + " ";
- break;
- }
- s3 = str1 + enhancement.LongName;
- switch (enhancement.TypeID)
- {
- case Enums.eType.InventO:
- s3 = s3 + " - IO:" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.IOLevel + 1;
- continue;
- case Enums.eType.SetO:
- s3 = s3 + " - IO:" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.IOLevel + 1;
- continue;
- default:
- continue;
- }
+ case Enums.eType.Normal:
+ string relativeString1 = Enums.GetRelativeString(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.RelativeLevel, false);
+ string str2;
+ if (!string.IsNullOrEmpty(relativeString1) & relativeString1 != "X")
+ str2 = str1 + relativeString1 + " " + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - ";
+ else
+ str2 = !(relativeString1 == "X") ? str1 + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - " : str1 + "Disabled " + DatabaseAPI.Database.EnhGradeStringLong[(int)MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.Grade] + " - ";
+ str1 = str2 + " ";
+ break;
+ case Enums.eType.SpecialO:
+ string relativeString2 = Enums.GetRelativeString(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.RelativeLevel, false);
+ string str3;
+ if (!string.IsNullOrEmpty(relativeString2) & relativeString2 != "X")
+ str3 = str1 + relativeString2 + " " + enhancement.GetSpecialName() + " - ";
+ else
+ str3 = !(relativeString2 == "X") ? str1 + enhancement.GetSpecialName() + " - " : str1 + "Disabled " + enhancement.GetSpecialName() + " - ";
+ str1 = str3 + " ";
+ break;
+ }
+ s3 = str1 + enhancement.LongName;
+ switch (enhancement.TypeID)
+ {
+ case Enums.eType.InventO:
+ s3 = s3 + " - IO:" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.IOLevel + 1;
+ continue;
+ case Enums.eType.SetO:
+ s3 = s3 + " - IO:" + MidsContext.Character.CurrentBuild.Powers[pIndex].Slots[index].Enhancement.IOLevel + 1;
+ continue;
+ default:
+ continue;
}
- else
- s3 = str1 + "[Empty]";
- }
- if (!string.IsNullOrEmpty(s1) || !string.IsNullOrEmpty(s2) || !string.IsNullOrEmpty(s3))
- {
- RectangleF layoutRectangle = new RectangleF(bounds.Left + 15f, (float)vPos, bounds.Width, (float)fontSize * 1.25f);
- args.Graphics.DrawString(s1, font, (Brush)solidBrush, layoutRectangle, format);
- layoutRectangle = new RectangleF(bounds.Left + 80f, (float)vPos, bounds.Width, (float)fontSize * 1.25f);
- args.Graphics.DrawString(s2, font, (Brush)solidBrush, layoutRectangle, format);
- vPos += (int)((double)fontSize * 1.25);
- layoutRectangle = new RectangleF(bounds.Left + 90f, (float)vPos, bounds.Width, (float)(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length * fontSize) * 1.25f);
- args.Graphics.DrawString(s3, font, (Brush)solidBrush, layoutRectangle, format);
- vPos += (int)((double)fontSize * 1.25 * 1.1 + (double)fontSize * 1.25 * (double)(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length - 1));
}
+ else
+ s3 = str1 + "[Empty]";
+ }
+ if (!string.IsNullOrEmpty(s1) || !string.IsNullOrEmpty(s2) || !string.IsNullOrEmpty(s3))
+ {
+ var layoutRectangle = new RectangleF(bounds.Left + 15f, vPos, bounds.Width, fontSize * 1.25f);
+ args.Graphics.DrawString(s1, font, solidBrush, layoutRectangle, format);
+ layoutRectangle = new RectangleF(bounds.Left + 80f, vPos, bounds.Width, fontSize * 1.25f);
+ args.Graphics.DrawString(s2, font, solidBrush, layoutRectangle, format);
+ vPos += (int)(fontSize * 1.25);
+ layoutRectangle = new RectangleF(bounds.Left + 90f, vPos, bounds.Width, (float)(MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length * fontSize) * 1.25f);
+ args.Graphics.DrawString(s3, font, solidBrush, layoutRectangle, format);
+ vPos += (int)((fontSize * 1.25 * 1.1) + (fontSize * 1.25 * (MidsContext.Character.CurrentBuild.Powers[pIndex].Slots.Length - 1)));
}
}
- this._pIndex = num2;
- if (flag1)
- this._endOfPage = true;
- else
- this._pIndex = 0;
- num1 = vPos;
}
- return num1;
+ this._pIndex = pgIdx;
+ if (isEnd)
+ this._endOfPage = true;
+ else
+ this._pIndex = 0;
+ return vPos;
}
void PrintProfileShort(Rectangle bounds, PrintPageEventArgs args)
{
this._printingProfile = false;
- SolidBrush solidBrush = new SolidBrush(Color.Black);
- StringFormat format = new StringFormat(StringFormatFlags.NoClip);
- format.Alignment = StringAlignment.Near;
- format.LineAlignment = StringAlignment.Near;
- int num = Print.PpInfo(bounds, args) + 6;
- string s1 = MidsContext.Character.Alignment.ToString() + " Profile";
- RectangleF layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)num, (float)bounds.Width, 15f);
+ var solidBrush = new SolidBrush(Color.Black);
+ var format = new StringFormat(StringFormatFlags.NoClip)
+ {
+ Alignment = StringAlignment.Near,
+ LineAlignment = StringAlignment.Near
+ };
+ int vPos = Print.PpInfo(bounds, args) + 6;
Font font1 = new Font("Arial", 12f, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Pixel);
- args.Graphics.DrawString(s1, font1, (Brush)solidBrush, layoutRectangle, format);
- int vPos1 = num + 15;
+ args.Graphics.DrawString(MidsContext.Character.Alignment.ToString() + " Profile", font1, solidBrush, new RectangleF(bounds.Left + 15, vPos, bounds.Width, 15f), format);
+ vPos += 15;
Font font2 = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Pixel);
- Print.BuildPowerListShort(ref vPos1, (RectangleF)bounds, 12, true, false, false, args);
+ Print.BuildPowerListShort(ref vPos, bounds, 12, true, false, false, args);
string s2 = "------------";
- layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)vPos1, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s2, font2, (Brush)solidBrush, layoutRectangle, format);
- int vPos2 = vPos1 + 15;
- Print.BuildPowerListShort(ref vPos2, (RectangleF)bounds, 12, false, true, false, args);
+ args.Graphics.DrawString(s2, font2, solidBrush, new RectangleF((bounds.Left + 15), vPos, bounds.Width, 15f), format);
+ vPos += 15;
+ Print.BuildPowerListShort(ref vPos, bounds, 12, false, true, false, args);
if (!MidsContext.Character.Archetype.Epic)
return;
string s3 = "------------";
- layoutRectangle = new RectangleF((float)(bounds.Left + 15), (float)vPos2, (float)bounds.Width, 15f);
- args.Graphics.DrawString(s3, font2, (Brush)solidBrush, layoutRectangle, format);
- int vPos3 = vPos2 + 15;
- Print.BuildPowerListShort(ref vPos3, (RectangleF)bounds, 12, false, true, true, args);
+ args.Graphics.DrawString(s3, font2, solidBrush, new RectangleF((bounds.Left + 15), vPos, bounds.Width, 15f), format);
+ vPos += 15;
+ Print.BuildPowerListShort(ref vPos, bounds, 12, false, true, true, args);
}
static void BuildPowerListShort(
-
ref int vPos,
RectangleF bounds,
int fontSize,
@@ -459,35 +430,35 @@ static void BuildPowerListShort(
bool kheldian,
PrintPageEventArgs args)
{
- bool printIoLevels = MidsContext.Config.I9.PrintIOLevels;
+ bool printIoLevels = !MidsContext.Config.I9.DisablePrintIOLevels;
StringFormat format = new StringFormat(StringFormatFlags.NoClip);
SolidBrush solidBrush = new SolidBrush(Color.Black);
for (int index1 = 0; index1 <= MidsContext.Character.CurrentBuild.Powers.Count - 1; ++index1)
{
Font font = new Font("Arial", (float)fontSize, FontStyle.Bold, GraphicsUnit.Pixel);
- bool flag1 = !MidsContext.Character.CurrentBuild.Powers[index1].Chosen;
- bool flag2 = false;
- if (!skipInherent && flag1 && MidsContext.Character.CurrentBuild.Powers[index1].Power != null)
+ bool isChosen = !MidsContext.Character.CurrentBuild.Powers[index1].Chosen;
+ bool include = false;
+ if (!skipInherent && isChosen && MidsContext.Character.CurrentBuild.Powers[index1].Power != null)
{
if (kheldian)
- flag2 = MidsContext.Character.CurrentBuild.Powers[index1].Power.IsEpic;
+ include = MidsContext.Character.CurrentBuild.Powers[index1].Power.IsEpic;
else if (MidsContext.Character.CurrentBuild.Powers[index1].Power.Requires.NPowerID.Length == 0 || !MidsContext.Character.CurrentBuild.Powers[index1].Power.Slottable)
- flag2 = true;
+ include = true;
}
- if (!skipNormal && !flag1)
- flag2 = true;
- if (flag1 && MidsContext.Character.CurrentBuild.Powers[index1].PowerSet == null)
- flag2 = false;
- if (flag1 & MidsContext.Character.CurrentBuild.Powers[index1].SubPowers.Length > 0)
- flag2 = false;
- if (flag2)
+ if (!skipNormal && !isChosen)
+ include = true;
+ if (isChosen && MidsContext.Character.CurrentBuild.Powers[index1].PowerSet == null)
+ include = false;
+ if (isChosen & MidsContext.Character.CurrentBuild.Powers[index1].SubPowers.Length > 0)
+ include = false;
+ if (include)
{
string s1 = "Level " + MidsContext.Character.CurrentBuild.Powers[index1].Level + 1 + ":";
RectangleF layoutRectangle = new RectangleF(bounds.Left + 15f, (float)vPos, bounds.Width, (float)fontSize * 1.25f);
- args.Graphics.DrawString(s1, font, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(s1, font, solidBrush, layoutRectangle, format);
string s2 = MidsContext.Character.CurrentBuild.Powers[index1].Power != null ? MidsContext.Character.CurrentBuild.Powers[index1].Power.DisplayName : "[Empty]";
layoutRectangle = new RectangleF(bounds.Left + 80f, (float)vPos, bounds.Width, (float)fontSize * 1.25f);
- args.Graphics.DrawString(s2, font, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(s2, font, solidBrush, layoutRectangle, format);
if (MidsContext.Character.CurrentBuild.Powers[index1].Slots.Length > 0)
{
string str1 = string.Empty;
@@ -495,7 +466,7 @@ static void BuildPowerListShort(
{
if (index2 > 0)
str1 += ", ";
- if (MidsContext.Config.PrintProfileEnh)
+ if (!MidsContext.Config.DisablePrintProfileEnh)
{
if (MidsContext.Character.CurrentBuild.Powers[index1].Slots[index2].Enhancement.Enh > -1)
{
@@ -548,39 +519,34 @@ static void BuildPowerListShort(
string str3 = str1 + "(";
str1 = (index2 != 0 ? str3 + (MidsContext.Character.CurrentBuild.Powers[index1].Slots[index2].Level + 1) : str3 + "A") + ")";
}
- string str4 = str1;
layoutRectangle = new RectangleF(bounds.Left + 250f, (float)vPos, bounds.Width, (float)fontSize * 1.25f);
layoutRectangle.Width -= layoutRectangle.Left;
- SizeF sizeF = args.Graphics.MeasureString(str4, font, (int)layoutRectangle.Width * 5, format);
- if ((double)sizeF.Width > (double)layoutRectangle.Width)
+ SizeF sizeF = args.Graphics.MeasureString(str1, font, (int)layoutRectangle.Width * 5, format);
+ if (sizeF.Width > (double)layoutRectangle.Width)
{
int num = MidsContext.Character.CurrentBuild.Powers[index1].Slots.Length / 2;
int length = -1;
for (int index2 = 0; index2 <= num - 1; ++index2)
- length = str4.IndexOf(", ", length + 1, StringComparison.Ordinal);
+ length = str1.IndexOf(", ", length + 1, StringComparison.Ordinal);
if (length > -1)
{
- str4 = str4.Substring(0, length) + "..." + '\n' + "..." + str4.Substring(length + 2);
+ str1 = str1.Substring(0, length) + "..." + '\n' + "..." + str1.Substring(length + 2);
layoutRectangle.Height *= 2f;
- vPos += (int)((double)fontSize * 1.25);
+ vPos += (int)(fontSize * 1.25);
}
- sizeF = args.Graphics.MeasureString(str4, font, (int)((double)layoutRectangle.Width * 5.0), format);
+ sizeF = args.Graphics.MeasureString(str1, font, (int)(layoutRectangle.Width * 5.0), format);
float width = sizeF.Width;
- if ((double)width > (double)layoutRectangle.Width)
+ if (width > (double)layoutRectangle.Width)
font = new Font("Arial", Convert.ToSingle(fontSize) * (layoutRectangle.Width / width), FontStyle.Bold, GraphicsUnit.Pixel);
}
- args.Graphics.DrawString(str4, font, (Brush)solidBrush, layoutRectangle, format);
+ args.Graphics.DrawString(str1, font, solidBrush, layoutRectangle, format);
}
- vPos += (int)((double)fontSize * 1.25 * 1.1);
+ vPos += (int)(fontSize * 1.25 * 1.1);
}
}
}
- static Rectangle RectConvert(RectangleF iRect)
-
- {
- return new Rectangle((int)iRect.X, (int)iRect.Y, (int)iRect.Width, (int)iRect.Height);
- }
+ static Rectangle RectConvert(RectangleF iRect) => new Rectangle((int)iRect.X, (int)iRect.Y, (int)iRect.Width, (int)iRect.Height);
public void Dispose()
{
@@ -597,7 +563,6 @@ protected virtual void Dispose(bool disposing)
}
enum PrintWhat
-
{
None = -1,
Powers = 0,
diff --git a/Base/Base/Master_Classes/MidsContext.cs b/Base/Base/Master_Classes/MidsContext.cs
index ad23e057..d1b98fa8 100644
--- a/Base/Base/Master_Classes/MidsContext.cs
+++ b/Base/Base/Master_Classes/MidsContext.cs
@@ -11,8 +11,8 @@ public static class MidsContext
public const int AppMajorVersion = 2;
public const int AppMinorVersion = 6;
public const int AppBuildVersion = 0;
- public const int AppRevisionVersion = 1;
- public const string AppAssemblyVersion = "2.6.0.1";
+ public const int AppRevisionVersion = 2;
+ public const string AppAssemblyVersion = "2.6.0.2";
public static readonly Version AppVersion = new Version(major: AppMajorVersion, minor: AppMinorVersion, build: AppBuildVersion, revision: AppRevisionVersion);
public const string Title = "Mids' Reborn : Hero Designer";
public const string AssemblyName = "Hero Designer.exe";
diff --git a/Base/Build.cs b/Base/Build.cs
index c47ae07d..9d3ea7ac 100644
--- a/Base/Build.cs
+++ b/Base/Build.cs
@@ -2,6 +2,7 @@
using Base.Data_Classes;
using Base.Display;
using Base.Master_Classes;
+using HeroDesigner.Schema;
using System;
using System.Collections.Generic;
using System.Drawing;
@@ -307,36 +308,36 @@ public bool SetIOLevels(int newVal, bool iSetMin, bool iSetMax)
public HistoryMap[] BuildHistoryMap(bool enhNames, bool ioLevel = true)
{
- List historyMapList = new List();
+ var historyMapList = new List();
for (int lvlIdx = 0; lvlIdx <= DatabaseAPI.Database.Levels.Length - 1; ++lvlIdx)
{
for (int powerIdx = 0; powerIdx <= this.Powers.Count - 1; ++powerIdx)
{
PowerEntry power = this.Powers[powerIdx];
- if ((power.Chosen || power.SubPowers.Length == 0 || power.SlotCount == 0) && power.Level == lvlIdx & power.Power != null)
+ if ((power.Chosen || power.SubPowers.Length == 0 || power.SlotCount == 0) && power.Level == lvlIdx && power.Power != null)
{
- HistoryMap historyMap = new HistoryMap()
+ var historyMap = new HistoryMap()
{
Level = lvlIdx,
HID = powerIdx
};
- string str1 = string.Empty;
- string str2 = power.Chosen ? "Added" : "Recieved";
+ string appendText = string.Empty;
+ string choiceText = power.Chosen ? "Added" : "Recieved";
if (power.Slots.Length > 0)
{
historyMap.SID = 0;
if (power.Slots[0].Enhancement.Enh > -1)
{
if (enhNames)
- str1 = " [" + DatabaseAPI.GetEnhancementNameShortWSet(power.Slots[0].Enhancement.Enh);
+ appendText = " [" + DatabaseAPI.GetEnhancementNameShortWSet(power.Slots[0].Enhancement.Enh);
if (ioLevel && (DatabaseAPI.Database.Enhancements[power.Slots[0].Enhancement.Enh].TypeID == Enums.eType.InventO || DatabaseAPI.Database.Enhancements[power.Slots[0].Enhancement.Enh].TypeID == Enums.eType.SetO))
- str1 = str1 + "-" + power.Slots[0].Enhancement.IOLevel;
- str1 += "]";
+ appendText = appendText + "-" + power.Slots[0].Enhancement.IOLevel;
+ appendText += "]";
}
else if (enhNames)
- str1 = " [Empty]";
+ appendText = " [Empty]";
}
- historyMap.Text = "Level " + (lvlIdx + 1) + ": " + str2 + " " + power.Power.DisplayName + " (" + Enum.GetName(DatabaseAPI.Database.Powersets[power.NIDPowerset].SetType.GetType(), DatabaseAPI.Database.Powersets[power.NIDPowerset].SetType) + ")" + str1;
+ historyMap.Text = "Level " + (lvlIdx + 1) + ": " + choiceText + " " + power.Power.DisplayName + " (" + Enum.GetName(DatabaseAPI.Database.Powersets[power.NIDPowerset].SetType.GetType(), DatabaseAPI.Database.Powersets[power.NIDPowerset].SetType) + ")" + appendText;
historyMapList.Add(historyMap);
}
}
@@ -1013,7 +1014,7 @@ public void GenerateSetBonusData()
for (int index2 = 0; index2 < this.Powers[index1].SlotCount; ++index2)
i9SetData.Add(ref this.Powers[index1].Slots[index2].Enhancement);
}
- i9SetData.BuildEffects(MidsContext.Config.Inc.PvE ? Enums.ePvX.PvE : Enums.ePvX.PvP);
+ i9SetData.BuildEffects(!MidsContext.Config.Inc.DisablePvE ? Enums.ePvX.PvE : Enums.ePvX.PvP);
if (!i9SetData.Empty)
this.SetBonus.Add(i9SetData);
}
@@ -1023,35 +1024,30 @@ public void GenerateSetBonusData()
IPower GetSetBonusVirtualPower()
{
IPower power1 = new Power();
- if (!MidsContext.Config.I9.CalculateSetBonusFX)
- {
+ if (MidsContext.Config.I9.IgnoreSetBonusFX)
return power1;
- }
- else
- {
- var nidPowers = DatabaseAPI.NidPowers("set_bonus", "");
- int[] setCount = new int[nidPowers.Length];
- for (int index = 0; index < setCount.Length; ++index)
- setCount[index] = 0;
- var effectList = new List();
- foreach (var setBonus in this.SetBonus)
- foreach (var setInfo in setBonus.SetInfo)
- foreach (var power in setInfo.Powers.Where(x => x > -1))
+ var nidPowers = DatabaseAPI.NidPowers("set_bonus", "");
+ int[] setCount = new int[nidPowers.Length];
+ for (int index = 0; index < setCount.Length; ++index)
+ setCount[index] = 0;
+ var effectList = new List();
+ foreach (var setBonus in this.SetBonus)
+ foreach (var setInfo in setBonus.SetInfo)
+ foreach (var power in setInfo.Powers.Where(x => x > -1))
+ {
+ if (power > setCount.Length - 1)
+ throw new IndexOutOfRangeException("power to setBonusArray");
+ ++setCount[power];
+ if (setCount[power] < 6)
{
- if (power > setCount.Length - 1)
- throw new IndexOutOfRangeException("power to setBonusArray");
- ++setCount[power];
- if (setCount[power] < 6)
- {
- for (int i = 0; i < DatabaseAPI.Database.Power[power].Effects.Length; ++i)
- effectList.Add((IEffect)DatabaseAPI.Database.Power[power].Effects[i].Clone());
+ for (int i = 0; i < DatabaseAPI.Database.Power[power].Effects.Length; ++i)
+ effectList.Add((IEffect)DatabaseAPI.Database.Power[power].Effects[i].Clone());
- }
}
+ }
- power1.Effects = effectList.ToArray();
- return power1;
- }
+ power1.Effects = effectList.ToArray();
+ return power1;
}
public IEffect[] GetCumulativeSetBonuses()
diff --git a/Base/ConfigData.cs b/Base/ConfigData.cs
index 660b03b3..72633aa3 100644
--- a/Base/ConfigData.cs
+++ b/Base/ConfigData.cs
@@ -6,8 +6,8 @@
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Forms;
-
using Base;
+using HeroDesigner.Schema;
public interface ISerialize
{
@@ -18,65 +18,51 @@ public interface ISerialize
public class ConfigData
{
- public ConfigData.SDamageMath DamageMath;
- public ConfigData.IncludeExclude Inc;
- public ConfigData.Si9 I9;
- public ConfigData.FontSettings RtFont;
-
- public float BaseAcc = 0.75f;
- public string UpdatePath = null;
- public bool DoNotUpdateFileAssociation;
- public Enums.eEnhGrade CalcEnhOrigin = Enums.eEnhGrade.SingleO;
- public Enums.eEnhRelative CalcEnhLevel = Enums.eEnhRelative.Even;
- public int ExempHigh = 50;
- public int TeamSize = 1;
- public int ExempLow = 50;
- public int ForceLevel = 50;
- public int ExportScheme = 1;
- public int ExportTarget = 1;
- public bool DataDamageGraph = true;
- public Enums.eDDGraph DataGraphType = Enums.eDDGraph.Both;
- public bool ShowVillainColours = true;
- public bool FreshInstall = true;
- public int Columns = 3;
- public Size LastSize = new Size(1072, 760);
- public Enums.GraphStyle StatGraphStyle = Enums.GraphStyle.Stacked;
- public Enums.CompOverride[] CompOverride = new Enums.CompOverride[0];
- public ConfigData.PrintOptionProfile PrintProfile = ConfigData.PrintOptionProfile.SinglePage;
- public bool PrintProfileEnh = true;
- public string LastPrinter = string.Empty;
- public bool LoadLastFileOnStart = true;
- public string LastFileName = string.Empty;
-
string _defaultSaveFolderOverride;
- public string DefaultSaveFolderOverride
- {
- get { return _defaultSaveFolderOverride; }
- set
- {
- var osDefault = OS.GetDefaultSaveFolder();
- if (string.IsNullOrWhiteSpace(value)
- || Path.GetFullPath(value) == osDefault
- || value == osDefault
- || (osDefault != null && Path.GetFullPath(osDefault) == value))
- {
- _defaultSaveFolderOverride = null;
- return;
- }
- _defaultSaveFolderOverride = value;
- }
- }
- public string DNickName;
+ Size _lastSize = new Size(1072, 760);
+
+ // these properties require setters for deserialization
+ public SDamageMath DamageMath { get; private set; } = new SDamageMath();
+ public IncludeExclude Inc { get; private set; } = new IncludeExclude();
+ public Si9 I9 { get; private set; } = new Si9();
+ public FontSettings RtFont { get; private set; } = new FontSettings();
+ public Size LastSize { get => _lastSize; set => _lastSize = value; }
+
+ public float BaseAcc { get; set; } = 0.75f;
+ public const string UpdatePath = "http://midsreborn.com/mids_updates/update.xml";
+ public bool DoNotUpdateFileAssociation { get; set; }
+ public int ExempHigh { get; set; } = 50;
+ public int TeamSize { get; set; } = 1;
+ public int ExempLow { get; set; } = 50;
+ public int ForceLevel { get; set; } = 50;
+ public int ExportScheme { get; set; } = 1;
+ public int ExportTarget { get; set; } = 1;
+ public bool DisableDataDamageGraph { get; set; }
+ public bool DisableVillainColours { get; set; }
+ public bool IsInitialized { get; set; }
+ public int Columns { get; set; } = 3;
+ public PrintOptionProfile PrintProfile { get; set; } = PrintOptionProfile.SinglePage;
+ public bool DisablePrintProfileEnh { get; set; }
+ public string LastPrinter { get; set; } = string.Empty;
+ public bool DisableLoadLastFileOnStart { get; set; }
+ public string LastFileName { get; set; } = string.Empty;
+ public Enums.eEnhGrade CalcEnhOrigin { get; set; } = Enums.eEnhGrade.SingleO;
+ public Enums.eEnhRelative CalcEnhLevel { get; set; } = Enums.eEnhRelative.Even;
+ public Enums.eDDGraph DataGraphType { get; set; } = Enums.eDDGraph.Both;
+ public Enums.GraphStyle StatGraphStyle { get; set; } = Enums.GraphStyle.Stacked;
+ public Enums.CompOverride[] CompOverride { get; set; } = Array.Empty();
+
+ public string DNickName { get; set; }
public List DServers { get; set; } = new List();
public string DSelServer { get; set; }
- public string DChannel;
- public bool DesaturateInherent = true;
- public Enums.dmModes BuildMode = Enums.dmModes.Dynamic;
- public Enums.dmItem BuildOption = Enums.dmItem.Slot;
- public bool ShowPopup = true;
- public bool ShowAlphaPopup = true;
- public bool ReapeatOnMiddleClick = true;
- public bool ExportHex = true;
+ public string DChannel { get; set; }
+ public bool DisableDesaturateInherent { get; set; }
+ public Enums.dmModes BuildMode { get; set; } = Enums.dmModes.Dynamic;
+ public Enums.dmItem BuildOption { get; set; } = Enums.dmItem.Slot;
+ public bool DisableShowPopup { get; set; }
+ public bool DisableAlphaPopup { get; set; }
+ public bool DisableRepeatOnMiddleClick { get; set; }
+ public bool DisableExportHex { get; set; }
public readonly short[] DragDropScenarioAction = new short[20]
{
3, 0, 5, 0, 3, 5, 0, 0, 5, 0, 2, 3, 0, 2, 2, 0, 0, 0, 0, 0
@@ -88,14 +74,12 @@ public string DefaultSaveFolderOverride
public bool ExportBonusList { get; set; }
public bool NoToolTips { get; set; }
public bool DataDamageGraphPercentageOnly { get; set; }
-
public bool CheckForUpdates { get; set; }
public Enums.eVisibleSize DvState { get; set; }
public Enums.eSuppress Suppression { get; set; }
public bool UseArcanaTime { get; set; }
- public readonly ExportConfig Export;
+ public ExportConfig Export { get; }
public bool PrintInColour { get; set; }
-
public bool PrintHistory { get; set; }
public bool SaveFolderChecked { get; set; }
public bool ShowSlotLevels { get; set; }
@@ -110,6 +94,24 @@ public string DefaultSaveFolderOverride
public bool MasterMode { get; set; }
public bool ShrinkFrmSets { get; set; }
+ public string DefaultSaveFolderOverride
+ {
+ get { return _defaultSaveFolderOverride; }
+ set
+ {
+ var osDefault = OS.GetDefaultSaveFolder();
+ if (string.IsNullOrWhiteSpace(value)
+ || Path.GetFullPath(value) == osDefault
+ || value == osDefault
+ || (osDefault != null && Path.GetFullPath(osDefault) == value))
+ {
+ _defaultSaveFolderOverride = null;
+ return;
+ }
+ _defaultSaveFolderOverride = value;
+ }
+ }
+
internal static ConfigData Current
{
get
@@ -126,7 +128,10 @@ static void MigrateToSerializer(string mhdFn, ISerialize serializer)
{
var oldMethod = new ConfigData(deserializing: false, iFilename: mhdFn);
oldMethod.IntializeComponent();
- File.Move(mhdFn, mhdFn + ".old");
+ var file = mhdFn + ".old";
+ if (File.Exists(file))
+ file += "2";
+ File.Move(mhdFn, file);
oldMethod.SaveConfig(serializer);
}
@@ -157,31 +162,20 @@ public static void Initialize(ISerialize serializer)
}
ConfigData._current.IntializeComponent();
}
+
ConfigData() : this(true, "") { }
ConfigData(bool deserializing, string iFilename)
{
this.DamageMath.Calculate = ConfigData.EDamageMath.Average;
this.DamageMath.ReturnValue = ConfigData.EDamageReturn.Numeric;
- this.Inc.PvE = true;
this.I9.DefaultIOLevel = 49;
- this.I9.DisplayIOLevels = true;
- this.I9.CalculateEnahncementFX = true;
- this.I9.CalculateSetBonusFX = true;
- this.I9.PrintIOLevels = true;
- this.I9.ExportIOLevels = false;
- this.I9.ExportCompress = true;
- this.I9.ExportDataChunk = true;
- this.I9.ExportStripEnh = false;
- this.I9.ExportStripSetNames = false;
- this.I9.ExportExtraSep = false;
- this.UpdatePath = "";
this.RtFont.SetDefault();
this.Tips = new Tips();
this.Export = new ExportConfig();
- this.CompOverride = new Enums.CompOverride[0];
+ this.CompOverride = Array.Empty();
if (deserializing) return;
- if (!string.IsNullOrEmpty(iFilename))
+ if (!string.IsNullOrEmpty(iFilename) && File.Exists(iFilename))
{
try
{
@@ -206,7 +200,6 @@ void IntializeComponent()
{
MessageBox.Show(ex.Message);
}
-
}
void LegacyForMigration(string iFilename)
@@ -250,7 +243,7 @@ void LegacyForMigration(string iFilename)
this.CalcEnhOrigin = (Enums.eEnhGrade)reader.ReadInt32();
this.ExempHigh = reader.ReadInt32();
this.ExempLow = reader.ReadInt32();
- this.Inc.PvE = reader.ReadBoolean();
+ this.Inc.DisablePvE = !reader.ReadBoolean();
reader.ReadBoolean();
this.DamageMath.Calculate = (ConfigData.EDamageMath)reader.ReadInt32();
reader.ReadSingle();
@@ -261,7 +254,7 @@ void LegacyForMigration(string iFilename)
else
reader.ReadInt32();
this.DamageMath.ReturnValue = (ConfigData.EDamageReturn)reader.ReadInt32();
- this.DataDamageGraph = reader.ReadBoolean();
+ this.DisableDataDamageGraph = !reader.ReadBoolean();
this.DataDamageGraphPercentageOnly = reader.ReadBoolean();
this.DataGraphType = (Enums.eDDGraph)reader.ReadInt32();
this.ExportScheme = reader.ReadInt32();
@@ -273,15 +266,15 @@ void LegacyForMigration(string iFilename)
}
//this._hideOriginEnhancements =
reader.ReadBoolean();
- this.ShowVillainColours = reader.ReadBoolean();
+ this.DisableVillainColours = !reader.ReadBoolean();
this.CheckForUpdates = reader.ReadBoolean();
this.Columns = reader.ReadInt32();
- this.LastSize.Width = reader.ReadInt32();
- this.LastSize.Height = reader.ReadInt32();
+ this._lastSize.Width = reader.ReadInt32();
+ this._lastSize.Height = reader.ReadInt32();
this.DvState = (Enums.eVisibleSize)reader.ReadInt32();
this.StatGraphStyle = (Enums.GraphStyle)reader.ReadInt32();
if (version >= 1.0)
- this.FreshInstall = reader.ReadBoolean();
+ this.IsInitialized = !reader.ReadBoolean();
if (version >= 1.10000002384186)
this.ForceLevel = reader.ReadInt32();
if (version >= 1.20000004768372)
@@ -289,13 +282,13 @@ void LegacyForMigration(string iFilename)
this.I9.DefaultIOLevel = reader.ReadInt32();
if (this.I9.DefaultIOLevel > 49)
this.I9.DefaultIOLevel = 49;
- this.I9.DisplayIOLevels = reader.ReadBoolean();
- this.I9.CalculateEnahncementFX = reader.ReadBoolean();
- this.I9.CalculateSetBonusFX = reader.ReadBoolean();
+ this.I9.HideIOLevels = !reader.ReadBoolean();
+ this.I9.IgnoreEnhFX = !reader.ReadBoolean();
+ this.I9.IgnoreSetBonusFX = !reader.ReadBoolean();
this.I9.ExportIOLevels = reader.ReadBoolean();
- this.I9.PrintIOLevels = reader.ReadBoolean();
- this.I9.ExportCompress = reader.ReadBoolean();
- this.I9.ExportDataChunk = reader.ReadBoolean();
+ this.I9.DisablePrintIOLevels = !reader.ReadBoolean();
+ this.I9.DisableExportCompress = !reader.ReadBoolean();
+ this.I9.DisableExportDataChunk = !reader.ReadBoolean();
this.I9.ExportStripEnh = reader.ReadBoolean();
this.I9.ExportStripSetNames = reader.ReadBoolean();
this.I9.ExportExtraSep = reader.ReadBoolean();
@@ -320,10 +313,10 @@ void LegacyForMigration(string iFilename)
this.RtFont.ColorPlName = reader.ReadRGB();
this.RtFont.ColorPlSpecial = reader.ReadRGB();
}
- if ((double)version >= 1.22000002861023)
+ if (version >= 1.22000002861023)
{
this.ShowSlotLevels = reader.ReadBoolean();
- this.LoadLastFileOnStart = reader.ReadBoolean();
+ this.DisableLoadLastFileOnStart = !reader.ReadBoolean();
this.LastFileName = reader.ReadString();
this.RtFont.ColorPowerAvailable = reader.ReadRGB();
this.RtFont.ColorPowerTaken = reader.ReadRGB();
@@ -331,91 +324,46 @@ void LegacyForMigration(string iFilename)
this.RtFont.ColorPowerDisabled = reader.ReadRGB();
this.RtFont.ColorPowerHighlight = reader.ReadRGB();
}
- if ((double)version >= 1.23000001907349)
+ if (version >= 1.23000001907349)
{
this.Tips = new Tips(reader);
this.DefaultSaveFolderOverride = reader.ReadString();
}
- if ((double)version >= 1.24000000953674)
+ if (version >= 1.24000000953674)
{
this.EnhanceVisibility = reader.ReadBoolean();
reader.ReadBoolean();
this.BuildMode = (Enums.dmModes)reader.ReadInt32();
this.BuildOption = (Enums.dmItem)reader.ReadInt32();
- this.UpdatePath = reader.ReadString();
- if (string.IsNullOrEmpty(this.UpdatePath))
- this.UpdatePath = "";
+ //this.UpdatePath =
+ reader.ReadString();
+ //if (string.IsNullOrEmpty(this.UpdatePath))
+ // this.UpdatePath = "http://midsreborn.com/mids_updates/";
}
- if ((double)version >= 1.25)
+ if (version >= 1.25)
{
this.ShowEnhRel = reader.ReadBoolean();
this.ShowRelSymbols = reader.ReadBoolean();
- this.ShowPopup = reader.ReadBoolean();
- if ((double)version >= 1.32000005245209)
- this.ShowAlphaPopup = reader.ReadBoolean();
+ this.DisableShowPopup = !reader.ReadBoolean();
+ if (version >= 1.32000005245209)
+ this.DisableAlphaPopup = !reader.ReadBoolean();
this.PopupRecipes = reader.ReadBoolean();
this.ShoppingListIncludesRecipes = reader.ReadBoolean();
this.PrintProfile = (ConfigData.PrintOptionProfile)reader.ReadInt32();
this.PrintHistory = reader.ReadBoolean();
this.LastPrinter = reader.ReadString();
- this.PrintProfileEnh = reader.ReadBoolean();
- this.DesaturateInherent = reader.ReadBoolean();
- this.ReapeatOnMiddleClick = reader.ReadBoolean();
+ this.DisablePrintProfileEnh = !reader.ReadBoolean();
+ this.DisableDesaturateInherent = !reader.ReadBoolean();
+ this.DisableRepeatOnMiddleClick = !reader.ReadBoolean();
}
- if ((double)version >= 1.25999999046326)
- this.ExportHex = reader.ReadBoolean();
- if ((double)version >= 1.26999998092651)
+ if (version >= 1.25999999046326)
+ this.DisableExportHex = !reader.ReadBoolean();
+ if (version >= 1.26999998092651)
this.SpeedFormat = (Enums.eSpeedMeasure)reader.ReadInt32();
- if ((double)version >= 1.27999997138977)
+ if (version >= 1.27999997138977)
this.SaveFolderChecked = reader.ReadBoolean();
- if ((double)version >= 1.28999996185303)
+ if (version >= 1.28999996185303)
this.UseArcanaTime = reader.ReadBoolean(); //this is correct
- /*Commented out to expidite release.... Will not load forum Export settings or supression settings
- * if ((double)version >= 1.29999995231628)
- { // numbers seem really off which is screwing up the rest of the read
- tempNum = reader.ReadInt16();
- this.Suppression = (Enums.eSuppress)tempNum;
- }
- if ((double)version >= 1.30999994277954)
- {
- for (int index = 0; index < 19; ++index) {
- this.DragDropScenarioAction[index] = reader.ReadInt16();
- }
- }//589825 or 2305
- tempNum = reader.ReadInt16();
- this.Export.ColorSchemes = new ExportConfig.ColorScheme[(int)tempNum];
- for (int index = 0; index < this.Export.ColorSchemes.Length; ++index)
- { //crashes at index 14
- this.Export.ColorSchemes[index].SchemeName = reader.ReadString();
- this.Export.ColorSchemes[index].Heading = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].Level = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].Slots = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].Title = ConfigData.ReadRGB(reader);
- if ((double)version >= 1.20000004768372)
- {
- this.Export.ColorSchemes[index].IOColor = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].SetColor = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].HOColor = ConfigData.ReadRGB(reader);
- this.Export.ColorSchemes[index].Power = ConfigData.ReadRGB(reader);
- }
- }
- this.Export.FormatCode = new ExportConfig.FormatCodes[reader.ReadInt32() + 1];
- for (int index = 0; index < this.Export.FormatCode.Length; ++index)
- {
- this.Export.FormatCode[index].Name = reader.ReadString();
- this.Export.FormatCode[index].Notes = reader.ReadString();
- this.Export.FormatCode[index].BoldOff = reader.ReadString();
- this.Export.FormatCode[index].BoldOn = reader.ReadString();
- this.Export.FormatCode[index].ColourOff = reader.ReadString();
- this.Export.FormatCode[index].ColourOn = reader.ReadString();
- this.Export.FormatCode[index].ItalicOff = reader.ReadString();
- this.Export.FormatCode[index].ItalicOn = reader.ReadString();
- this.Export.FormatCode[index].SizeOff = reader.ReadString();
- this.Export.FormatCode[index].SizeOn = reader.ReadString();
- this.Export.FormatCode[index].UnderlineOff = reader.ReadString();
- this.Export.FormatCode[index].UnderlineOn = reader.ReadString();
- this.Export.FormatCode[index].Space = (ExportConfig.WhiteSpace)reader.ReadInt32();
- } */
this.CreateDefaultSaveFolder();
}
}
@@ -452,7 +400,7 @@ void RelocateSaveFolder(bool manual)
}
if (Directory.Exists(this.DefaultSaveFolderOverride))
{
- if (MessageBox.Show("In order for Mids' Hero/Villain Designer to be better behaved in more recent versions of Windows, the recommended Save folder has been changed to appear inside the My Documents folder.\nThe application can automatically move your save folder and its contents to 'My Documents\\Hero & Villain Builds\\'.\nThis message will not appear again.\n\nMove your Save folder now?", "Save Folder Location", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
+ if (MessageBox.Show("In order for Mids' Reborn : Designer to operate better in more recent versions of Windows, the recommended Save folder has been changed to appear inside the My Documents folder.\nThe application can automatically move your save folder and its contents to 'My Documents\\Hero & Villain Builds\\'.\nThis message will not appear again.\n\nMove your Save folder now?", "Save Folder Location", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
{
this.LastFileName = string.Empty;
string defaultSaveFolder = this.DefaultSaveFolderOverride;
@@ -513,17 +461,13 @@ void LoadOverrides()
}
}
- public class RawSaveResult
- {
- public int Length { get; set; }
- public int Hash { get; set; }
- }
public static (bool, T) LoadRawMhd(ISerialize serializer, string fn)
{
if (!File.Exists(fn))
return (false, default);
return (true, serializer.Deserialize(File.ReadAllText(fn)));
}
+
public static RawSaveResult SaveRawMhd(ISerialize serializer, object o, string fn, RawSaveResult lastSaveInfo)
{
try
@@ -539,11 +483,7 @@ public static RawSaveResult SaveRawMhd(ISerialize serializer, object o, string f
if (lastSaveInfo != null)
Console.WriteLine("Writing out updated file: " + fn);
File.WriteAllText(path, contents: text);
- return new RawSaveResult()
- {
- Length = text?.Length ?? 0,
- Hash = text?.GetHashCode() ?? 0
- };
+ return new RawSaveResult(length: text?.Length ?? 0, hash: text?.GetHashCode() ?? 0);
}
catch (Exception ex)
{
@@ -605,53 +545,59 @@ public enum PrintOptionProfile
MultiPage,
}
- public struct SDamageMath
+ public class SDamageMath
{
- public ConfigData.EDamageMath Calculate;
- public ConfigData.EDamageReturn ReturnValue;
+ public EDamageMath Calculate { get; set; }
+ public EDamageReturn ReturnValue { get; set; }
+ public SDamageMath() { }
+ public SDamageMath(EDamageMath dmgMath, EDamageReturn dmgRet)
+ {
+ this.Calculate = dmgMath;
+ this.ReturnValue = dmgRet;
+ }
}
- public struct IncludeExclude
+ public class IncludeExclude
{
- public bool PvE;
+ public bool DisablePvE { get; set; }
}
- public struct Si9
+ public class Si9
{
- public int DefaultIOLevel;
- public bool DisplayIOLevels;
- public bool CalculateEnahncementFX;
- public bool CalculateSetBonusFX;
- public bool PrintIOLevels;
- public bool ExportIOLevels;
- public bool ExportStripSetNames;
- public bool ExportStripEnh;
- public bool ExportDataChunk;
- public bool ExportCompress;
- public bool ExportExtraSep;
+ public int DefaultIOLevel { get; set; }
+ public bool HideIOLevels { get; set; }
+ public bool IgnoreEnhFX { get; set; }
+ public bool IgnoreSetBonusFX { get; set; }
+ public bool DisablePrintIOLevels { get; set; }
+ public bool ExportIOLevels { get; set; }
+ public bool ExportStripSetNames { get; set; }
+ public bool ExportStripEnh { get; set; }
+ public bool DisableExportDataChunk { get; set; }
+ public bool DisableExportCompress { get; set; }
+ public bool ExportExtraSep { get; set; }
}
- public struct FontSettings
+ public class FontSettings
{
- public int RTFBase;
- public bool RTFBold;
- public Color ColorBackgroundHero;
- public Color ColorBackgroundVillain;
- public Color ColorText;
- public Color ColorInvention;
- public Color ColorInventionInv;
- public Color ColorFaded;
- public Color ColorEnhancement;
- public Color ColorWarning;
- public Color ColorPlName;
- public Color ColorPlSpecial;
- public Color ColorPowerAvailable;
- public Color ColorPowerTaken;
- public Color ColorPowerTakenDark;
- public Color ColorPowerHighlight;
- public Color ColorPowerDisabled;
- public bool PairedBold;
- public float PairedBase;
+ public int RTFBase { get; set; }
+ public bool RTFBold { get; set; }
+ public Color ColorBackgroundHero { get; set; }
+ public Color ColorBackgroundVillain { get; set; }
+ public Color ColorText { get; set; }
+ public Color ColorInvention { get; set; }
+ public Color ColorInventionInv { get; set; }
+ public Color ColorFaded { get; set; }
+ public Color ColorEnhancement { get; set; }
+ public Color ColorWarning { get; set; }
+ public Color ColorPlName { get; set; }
+ public Color ColorPlSpecial { get; set; }
+ public Color ColorPowerAvailable { get; set; }
+ public Color ColorPowerTaken { get; set; }
+ public Color ColorPowerTakenDark { get; set; }
+ public Color ColorPowerHighlight { get; set; }
+ public Color ColorPowerDisabled { get; set; }
+ public bool PairedBold { get; set; }
+ public float PairedBase { get; set; }
public void Assign(ConfigData.FontSettings iFs)
{
diff --git a/Base/DatabaseAPI.cs b/Base/DatabaseAPI.cs
index 970909ef..16edbfcb 100644
--- a/Base/DatabaseAPI.cs
+++ b/Base/DatabaseAPI.cs
@@ -8,6 +8,7 @@
using System.Linq;
using System.Windows.Forms;
using Base;
+using HeroDesigner.Schema;
public static class DatabaseAPI
{
@@ -498,37 +499,30 @@ public static int NidFromUidioSet(string uidSet)
public static int NidFromUidRecipe(string uidRecipe, ref int subIndex)
{
- bool flag = subIndex > -1 & uidRecipe.Contains("_");
+ bool isSub = subIndex > -1 & uidRecipe.Contains("_");
subIndex = -1;
- string b = flag ? uidRecipe.Substring(0, uidRecipe.LastIndexOf("_", StringComparison.Ordinal)) : uidRecipe;
- for (int index1 = 0; index1 < Database.Recipes.Length; ++index1)
+ string uid = isSub ? uidRecipe.Substring(0, uidRecipe.LastIndexOf("_", StringComparison.Ordinal)) : uidRecipe;
+ for (int recipeIdx = 0; recipeIdx < Database.Recipes.Length; ++recipeIdx)
{
- if (string.Equals(Database.Recipes[index1].InternalName, b, StringComparison.OrdinalIgnoreCase))
+ if (string.Equals(Database.Recipes[recipeIdx].InternalName, uid, StringComparison.OrdinalIgnoreCase))
{
- int num;
- if (!flag)
- {
- num = index1;
- }
- else
+ if (!isSub)
+ return recipeIdx;
+ int startIndex = uidRecipe.LastIndexOf("_", StringComparison.Ordinal) + 1;
+ if (!(startIndex < 0 || startIndex > uidRecipe.Length - 1))
{
- int startIndex = uidRecipe.LastIndexOf("_", StringComparison.Ordinal) + 1;
- if (!(startIndex < 0 | startIndex > uidRecipe.Length - 1))
+ uid = uidRecipe.Substring(startIndex);
+ for (int index2 = 0; index2 < Database.Recipes[recipeIdx].Item.Length; ++index2)
{
- b = uidRecipe.Substring(startIndex);
- for (int index2 = 0; index2 < Database.Recipes[index1].Item.Length; ++index2)
+ if (Database.Recipes[recipeIdx].Item[index2].Level == startIndex)
{
- if (Database.Recipes[index1].Item[index2].Level == startIndex)
- {
- subIndex = index2;
- return index1;
- }
+ subIndex = index2;
+ return recipeIdx;
}
- continue;
}
- num = -1;
+ continue;
}
- return num;
+ return -1;
}
}
return -1;
@@ -546,31 +540,17 @@ public static int NidFromUidEnh(string uidEnh)
public static int NidFromUidEnhExtended(string uidEnh)
{
- int num;
if (!uidEnh.StartsWith("BOOSTS", true, CultureInfo.CurrentCulture))
+ return NidFromUidEnh(uidEnh);
+ for (int index = 0; index < Database.Enhancements.Length; ++index)
{
- num = NidFromUidEnh(uidEnh);
- }
- else
- {
- for (int index = 0; index < Database.Enhancements.Length; ++index)
- {
- if (string.Equals("BOOSTS." + Database.Enhancements[index].UID + "." + Database.Enhancements[index].UID, uidEnh, StringComparison.OrdinalIgnoreCase))
- return index;
- }
- num = -1;
+ if (string.Equals("BOOSTS." + Database.Enhancements[index].UID + "." + Database.Enhancements[index].UID, uidEnh, StringComparison.OrdinalIgnoreCase))
+ return index;
}
- return num;
+ return -1;
}
- const string MainDbName = "Mids' Hero Designer Database MK II";
- public class FHash
- {
- public string Archetype { get; set; }
- public string Fullname { get; set; }
- public int Hash { get; set; }
- public int Length { get; set; }
- }
+ const string MainDbName = "Mids' Hero Designer Database MK II";
static void SaveMainDbRaw(ISerialize serializer, string fn, string name)
{
@@ -628,15 +608,14 @@ static void SaveMainDbRaw(ISerialize serializer, string fn, string name)
continue;
}
var psPrevious = hasPrevious ? prev.FirstOrDefault(psm => psm.Fullname == ps.FullName && psm.Archetype == ps.ATClass) : null;
- var lastSaveResult = hasPrevious && psPrevious != null ? new ConfigData.RawSaveResult() { Hash = psPrevious.Hash, Length = psPrevious.Length } : null;
+ var lastSaveResult = hasPrevious && psPrevious != null ? new RawSaveResult(hash: psPrevious.Hash, length: psPrevious.Length) : null;
var saveresult = ConfigData.SaveRawMhd(serializer, ps, psFn, lastSaveResult);
- toWrite.Add(new FHash()
- {
- Fullname = ps.FullName,
- Archetype = ps.ATClass,
- Hash = saveresult.Hash,
- Length = saveresult.Length
- });
+ toWrite.Add(new FHash(
+ fullname: ps.FullName,
+ archetype: ps.ATClass,
+ hash: saveresult.Hash,
+ length: saveresult.Length
+ ));
}
ConfigData.SaveRawMhd(serializer, toWrite, metadataPath, null);
}
@@ -651,8 +630,9 @@ public static void SaveMainDatabase(ISerialize serializer)
fileStream = new FileStream(path, FileMode.Create);
writer = new BinaryWriter(fileStream);
}
- catch
+ catch (Exception ex)
{
+ MessageBox.Show("Main db save failed: " + ex.Message);
return;
}
try
@@ -1870,36 +1850,36 @@ public static void MatchSummonIDs()
public static void AssignStaticIndexValues(ISerialize serializer, bool save)
{
- int num1 = -2;
+ int lastStaticPowerIdx = -2;
for (int index = 0; index <= Database.Power.Length - 1; ++index)
{
- if (Database.Power[index].StaticIndex > -1 && Database.Power[index].StaticIndex > num1)
- num1 = Database.Power[index].StaticIndex;
+ if (Database.Power[index].StaticIndex > -1 && Database.Power[index].StaticIndex > lastStaticPowerIdx)
+ lastStaticPowerIdx = Database.Power[index].StaticIndex;
}
- if (num1 < -1)
- num1 = -1;
+ if (lastStaticPowerIdx < -1)
+ lastStaticPowerIdx = -1;
for (int index = 0; index <= Database.Power.Length - 1; ++index)
{
if (Database.Power[index].StaticIndex < 0)
{
- ++num1;
- Database.Power[index].StaticIndex = num1;
+ ++lastStaticPowerIdx;
+ Database.Power[index].StaticIndex = lastStaticPowerIdx;
}
}
- int num2 = -2;
+ int lastStaticEnhIdx = -2;
for (int index = 1; index <= Database.Enhancements.Length - 1; ++index)
{
- if (Database.Enhancements[index].StaticIndex > -1 && Database.Enhancements[index].StaticIndex > num2)
- num2 = Database.Enhancements[index].StaticIndex;
+ if (Database.Enhancements[index].StaticIndex > -1 && Database.Enhancements[index].StaticIndex > lastStaticEnhIdx)
+ lastStaticEnhIdx = Database.Enhancements[index].StaticIndex;
}
- if (num2 < -1)
- num2 = -1;
+ if (lastStaticEnhIdx < -1)
+ lastStaticEnhIdx = -1;
for (int index = 1; index <= Database.Enhancements.Length - 1; ++index)
{
if (Database.Enhancements[index].StaticIndex < 1)
{
- ++num2;
- Database.Enhancements[index].StaticIndex = num2;
+ ++lastStaticEnhIdx;
+ Database.Enhancements[index].StaticIndex = lastStaticEnhIdx;
}
}
if (save)
diff --git a/Base/Enhancement.cs b/Base/Enhancement.cs
index 65a5c35e..77a83dbc 100644
--- a/Base/Enhancement.cs
+++ b/Base/Enhancement.cs
@@ -6,7 +6,6 @@ public class Enhancement : IEnhancement
{
IPower _power;
-
public bool IsModified { get; set; }
public bool IsNew { get; set; }
diff --git a/Base/EnhancementSetCollection.cs b/Base/EnhancementSetCollection.cs
index d2209f24..9e182ef1 100644
--- a/Base/EnhancementSetCollection.cs
+++ b/Base/EnhancementSetCollection.cs
@@ -11,10 +11,9 @@ public int GetSetBonusEnhCount(int sidx, int bonus)
public static string GetSetInfoLongRTF(int iSet, int enhCount = -1)
{
- string str1;
if (iSet < 0 | iSet > DatabaseAPI.Database.EnhancementSets.Count - 1)
{
- str1 = string.Empty;
+ return string.Empty;
}
else
{
@@ -31,7 +30,7 @@ public static string GetSetInfoLongRTF(int iSet, int enhCount = -1)
{
if (DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.PvP)
effectString += "(PvP)";
- if (enhCount >= DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].Slotted & (MidsContext.Config.Inc.PvE & DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.PvE | !MidsContext.Config.Inc.PvE & DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.PvP | DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.Any))
+ if (enhCount >= DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].Slotted & (!MidsContext.Config.Inc.DisablePvE & DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.PvE | MidsContext.Config.Inc.DisablePvE & DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.PvP | DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].PvMode == Enums.ePvX.Any))
str3 = str3 + RTF.Crlf() + RTF.Bold(RTF.Color(RTF.ElementID.Text) + " " + DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].Slotted + " Slotted: ") + RTF.Color(RTF.ElementID.Invention) + effectString + RTF.Color(RTF.ElementID.Text);
else
str3 = str3 + RTF.Crlf() + RTF.Bold(RTF.Color(RTF.ElementID.Text) + " " + DatabaseAPI.Database.EnhancementSets[iSet].Bonus[index].Slotted + " Slotted: ") + RTF.Color(RTF.ElementID.Faded) + effectString + RTF.Color(RTF.ElementID.Text);
@@ -43,8 +42,7 @@ public static string GetSetInfoLongRTF(int iSet, int enhCount = -1)
if (!string.IsNullOrEmpty(effectString))
str3 = str3 + RTF.Crlf() + RTF.Color(RTF.ElementID.Enhancement) + RTF.Bold(" " + DatabaseAPI.Database.Enhancements[DatabaseAPI.Database.EnhancementSets[iSet].Enhancements[index]].Name + ": ") + RTF.Color(RTF.ElementID.Faded) + effectString + RTF.Color(RTF.ElementID.Text);
}
- str1 = str3;
+ return str3;
}
- return str1;
}
}
diff --git a/Base/FileIO.cs b/Base/FileIO.cs
index 5f13c12f..5a60e152 100644
--- a/Base/FileIO.cs
+++ b/Base/FileIO.cs
@@ -1,4 +1,3 @@
-
using System;
using System.IO;
using System.Text;
@@ -6,20 +5,14 @@
public static class FileIO
{
- public static string AddSlash(string iPath)
- {
- return iPath.EndsWith("\\") ? iPath : iPath + "\\";
- }
+ public static string AddSlash(string iPath) => iPath.EndsWith("\\") ? iPath : iPath + "\\";
- public static string StripSlash(string iPath)
- {
- return iPath.EndsWith("\\") ? iPath.Substring(0, iPath.Length - 1) : iPath;
- }
+ public static string StripSlash(string iPath) => iPath.EndsWith("\\") ? iPath.Substring(0, iPath.Length - 1) : iPath;
public static string StripPath(string iFileName)
{
- int num = iFileName.LastIndexOf("\\", StringComparison.Ordinal);
- return num <= -1 ? iFileName : iFileName.Substring(num + 1);
+ int lastIdx = iFileName.LastIndexOf("\\", StringComparison.Ordinal);
+ return lastIdx <= -1 ? iFileName : iFileName.Substring(lastIdx + 1);
}
public static string StripFileName(string iFileName)
@@ -30,25 +23,16 @@ public static string StripFileName(string iFileName)
public static string[] IOGrab(StreamReader iStream)
{
- string[] strArray1;
if (iStream == null)
- {
- strArray1 = new string[0];
- }
- else
- {
- string str = iStream.ReadLine();
- if (!string.IsNullOrEmpty(str))
- {
- string[] strArray2 = str.Split('\t');
- for (int index = 0; index <= strArray2.Length - 1; ++index)
- strArray2[index] = FileIO.IOStrip(strArray2[index]);
- strArray1 = strArray2;
- }
- else
- strArray1 = new string[0];
- }
- return strArray1;
+ return Array.Empty();
+
+ string str = iStream.ReadLine();
+ if (string.IsNullOrEmpty(str))
+ return Array.Empty();
+ string[] strArray2 = str.Split('\t');
+ for (int index = 0; index <= strArray2.Length - 1; ++index)
+ strArray2[index] = FileIO.IOStrip(strArray2[index]);
+ return strArray2;
}
public static string IOStrip(string iString)
@@ -79,74 +63,63 @@ public static string IOSeekReturn(StreamReader istream, string iString)
public static bool IOSeek(StreamReader iStream, string iString)
{
- bool flag;
try
{
do
;
while (FileIO.IOGrab(iStream)[0] != iString);
- flag = true;
+ return true;
}
catch (Exception ex)
{
- int num = (int)MessageBox.Show("An error has occured when reading the stream. Error: " + ex.Message);
- flag = false;
+ MessageBox.Show("An error has occured when reading the stream. Error: " + ex.Message);
+ return false;
}
- return flag;
}
public static bool CopyFolder(string src, string dest)
{
bool flag;
if (!Directory.Exists(src))
+ return false;
+
+ if (!Directory.Exists(dest))
{
- flag = false;
+ try
+ {
+ Directory.CreateDirectory(dest);
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
+ return false;
+ }
}
- else
+ if (!FileIO.FolderCopy(new DirectoryInfo(src), dest))
+ return false;
+ try
{
- if (!Directory.Exists(dest))
+ string str = FileIO.StripSlash(src) + ".old";
+ src = FileIO.StripSlash(src);
+ int num = 0;
+ while (Directory.Exists(str))
{
- try
- {
- Directory.CreateDirectory(dest);
- }
- catch (Exception ex)
- {
- int num = (int)MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
+ ++num;
+ str = src + ".old." + num;
+ if (num > 100)
return false;
- }
}
- if (FileIO.FolderCopy(new DirectoryInfo(src), dest))
- {
- try
- {
- string str = FileIO.StripSlash(src) + ".old";
- src = FileIO.StripSlash(src);
- int num = 0;
- while (Directory.Exists(str))
- {
- ++num;
- str = src + ".old." + num;
- if (num > 100)
- return false;
- }
- Directory.Move(src, str);
- }
- catch (Exception ex)
- {
- int num = (int)MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
- return true;
- }
- flag = true;
- }
- else
- flag = false;
+ Directory.Move(src, str);
}
- return flag;
+ catch (Exception ex)
+ {
+ MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
+ return true;
+ }
+ return true;
}
static bool FolderCopy(DirectoryInfo iDi, string dest)
-
{
DirectoryInfo[] directories = iDi.GetDirectories();
FileInfo[] files = iDi.GetFiles();
@@ -158,7 +131,7 @@ static bool FolderCopy(DirectoryInfo iDi, string dest)
}
catch (Exception ex)
{
- int num = (int)MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
+ MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
return false;
}
}
@@ -176,7 +149,7 @@ static bool FolderCopy(DirectoryInfo iDi, string dest)
}
catch (Exception ex)
{
- int num = (int)MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
+ MessageBox.Show("An error has occured when copying the folder. Error: " + ex.Message);
return false;
}
}
diff --git a/Base/Files.cs b/Base/Files.cs
index 2719df20..6612fd6e 100644
--- a/Base/Files.cs
+++ b/Base/Files.cs
@@ -1,4 +1,3 @@
-
using System;
using System.IO;
using System.Windows.Forms;
@@ -68,24 +67,10 @@ static string FNameJsonConfig
}
}
- static string FNameConfig
- {
- get
- {
- //var fp = Path.Combine(Application.StartupPath, Path.Combine("Data", MxdbFileConfig));
- //var fnamep = System.Diagnostics.Debugger.IsAttached ? SearchUp("Data", fp) : fp;
- return SelectDataFileLoad(MxdbFileConfig);
- //return fnamep;
- }
- }
- public static string FPathAppData
- {
- get
- {
- return Path.Combine(Application.StartupPath, "Data");
- }
- }
+ static string FNameConfig => SelectDataFileLoad(MxdbFileConfig);
+
+ public static string FPathAppData => Path.Combine(Application.StartupPath, "Data");
public static string SelectDataFileLoad(string iDataFile)
{
diff --git a/Base/HistoryMap.cs b/Base/HistoryMap.cs
deleted file mode 100644
index 2525e47f..00000000
--- a/Base/HistoryMap.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-
-public class HistoryMap
-{
- public int Level = -1;
- public int HID = -1;
- public int SID = -1;
- public string Text = string.Empty;
-}
diff --git a/Base/I9Gfx.cs b/Base/I9Gfx.cs
index e341922b..19ceed24 100644
--- a/Base/I9Gfx.cs
+++ b/Base/I9Gfx.cs
@@ -59,9 +59,9 @@ public static void LoadPowersetImages()
using (ExtendedBitmap extendedBitmap = new ExtendedBitmap(str))
{
if (extendedBitmap.Size.Height > 16 | extendedBitmap.Size.Width > 16)
- I9Gfx.Powersets.Graphics.DrawImage((Image)extendedBitmap.Bitmap, x, 0, 16, 16);
+ I9Gfx.Powersets.Graphics.DrawImage(extendedBitmap.Bitmap, x, 0, 16, 16);
else
- I9Gfx.Powersets.Graphics.DrawImage((Image)extendedBitmap.Bitmap, x, 0);
+ I9Gfx.Powersets.Graphics.DrawImage(extendedBitmap.Bitmap, x, 0);
}
}
}
diff --git a/Base/MidsCharacterFileFormat.cs b/Base/MidsCharacterFileFormat.cs
index 294f0fb9..8fe180ff 100644
--- a/Base/MidsCharacterFileFormat.cs
+++ b/Base/MidsCharacterFileFormat.cs
@@ -428,10 +428,10 @@ public static MidsCharacterFileFormat.eLoadReturnCode MxDExtractAndLoad(
}
string[] strArray1 = new string[4]
{
- "ABCD",
- "0",
- "0",
- "0"
+ "ABCD",
+ "0",
+ "0",
+ "0"
};
string a = "";
MidsCharacterFileFormat.eLoadReturnCode eLoadReturnCode;
@@ -454,7 +454,7 @@ public static MidsCharacterFileFormat.eLoadReturnCode MxDExtractAndLoad(
if (startIndex < 0)
startIndex = strArray2[index].IndexOf(MagicCompressed, StringComparison.Ordinal);
if (startIndex < 0)
- startIndex = strArray2[index].IndexOf("MHDz", StringComparison.OrdinalIgnoreCase);
+ startIndex = strArray2[index].IndexOf(Files.Headers.Save.Compressed, StringComparison.OrdinalIgnoreCase);
if (startIndex > -1)
{
strArray1 = strArray2[index].Substring(startIndex).Split(';');
@@ -465,14 +465,14 @@ public static MidsCharacterFileFormat.eLoadReturnCode MxDExtractAndLoad(
}
if (num1 < 0)
{
- int num2 = (int)MessageBox.Show("Unable to locate data header - Magic Number not found!", "ExtractAndLoad Failed");
+ MessageBox.Show("Unable to locate data header - Magic Number not found!", "ExtractAndLoad Failed");
eLoadReturnCode = MidsCharacterFileFormat.eLoadReturnCode.Failure;
}
- else if (string.Equals(a, "MHDz", StringComparison.OrdinalIgnoreCase))
+ else if (string.Equals(a, Files.Headers.Save.Compressed, StringComparison.OrdinalIgnoreCase))
eLoadReturnCode = MidsCharacterFileFormat.eLoadReturnCode.IsOldFormat;
else if (num1 + 1 == strArray2.Length)
{
- int num2 = (int)MessageBox.Show("Unable to locate data - Nothing beyond header!", "ExtractAndLoad Failed");
+ MessageBox.Show("Unable to locate data - Nothing beyond header!", "ExtractAndLoad Failed");
eLoadReturnCode = MidsCharacterFileFormat.eLoadReturnCode.Failure;
}
else
@@ -490,7 +490,7 @@ public static MidsCharacterFileFormat.eLoadReturnCode MxDExtractAndLoad(
streamReader.Close();
if (iBytes.Length < int32_3)
{
- int num2 = (int)MessageBox.Show("Data chunk was incomplete! Check that the entire chunk was copied to the clipboard.", "ExtractAndLoad Failed");
+ MessageBox.Show("Data chunk was incomplete! Check that the entire chunk was copied to the clipboard.", "ExtractAndLoad Failed");
eLoadReturnCode = MidsCharacterFileFormat.eLoadReturnCode.Failure;
}
else
diff --git a/Base/Tips.cs b/Base/Tips.cs
index be2fc9b6..a8c7bd02 100644
--- a/Base/Tips.cs
+++ b/Base/Tips.cs
@@ -13,9 +13,10 @@ public Tips()
{
this._tipStatus = new int[Enum.GetValues(Tips.TipType.TotalsTab.GetType()).Length];
for (int index = 0; index <= this._tipStatus.Length - 1; ++index)
- this._tipStatus[index] = 0;
+ this._tipStatus[index] = 1;
}
+ // legacy for migration only
public Tips(BinaryReader reader)
{
this._tipStatus = new int[Enum.GetValues(Tips.TipType.TotalsTab.GetType()).Length];
@@ -23,19 +24,12 @@ public Tips(BinaryReader reader)
if (num > this._tipStatus.Length - 1)
num = this._tipStatus.Length - 1;
for (int index = 0; index <= num; ++index)
- this._tipStatus[index] = reader.ReadInt32();
+ this._tipStatus[index] = reader.ReadInt32() == 0 ? 1 : 0;
}
- public void StoreTo(BinaryWriter writer)
+ public void Show(TipType tip)
{
- writer.Write(this._tipStatus.Length - 1);
- for (int index = 0; index <= this._tipStatus.Length - 1; ++index)
- writer.Write(this._tipStatus[index]);
- }
-
- public void Show(Tips.TipType tip)
- {
- if (this._tipStatus[(int)tip] > 0)
+ if (this._tipStatus[(int)tip] == 0)
return;
StringBuilder stringBuilder = new StringBuilder();
switch (tip)
@@ -60,8 +54,8 @@ public void Show(Tips.TipType tip)
stringBuilder.AppendLine("the number into the enhancement picker before clicking on the enhancement.");
break;
}
- this._tipStatus[(int)tip] = 1;
- stringBuilder.AppendLine("\nThis message will not appear again.");
+ this._tipStatus[(int)tip] = 0;
+ stringBuilder.AppendLine("\nThis message should not appear again.");
MessageBox.Show(stringBuilder.ToString(), "Instructions");
}
@@ -70,6 +64,7 @@ public enum TipType
TotalsTab,
FirstPower,
FirstEnh,
+ // nothing from here on out is used, but old config files may expect it to exist, so leave them for migration
Tip3,
Tip4,
Tip5,
diff --git a/Base/packages.config b/Base/packages.config
index 3299dfcf..979bd2ac 100644
--- a/Base/packages.config
+++ b/Base/packages.config
@@ -1,2 +1,4 @@
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/Hero Designer.sln b/Hero Designer.sln
index 4ab5b654..39832945 100644
--- a/Hero Designer.sln
+++ b/Hero Designer.sln
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
CleanInitialize.fsx = CleanInitialize.fsx
CreateDesigner.fsx = CreateDesigner.fsx
DesignerVarClean.fsx = DesignerVarClean.fsx
+ LICENSE.txt = LICENSE.txt
Reusable.fsx = Reusable.fsx
EndProjectSection
EndProject
@@ -19,6 +20,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "midsControls", "midsControl
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "HeroDesigner.Installer", "HeroDesigner.Installer\HeroDesigner.Installer.fsproj", "{C2DE9468-6937-4B3C-A6F0-E0952A097534}"
EndProject
+Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "HeroDesigner.Schema", "HeroDesigner.Schema\HeroDesigner.Schema.fsproj", "{7B1C2FFF-0399-4A7A-82EF-126660356121}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -41,6 +44,10 @@ Global
{C2DE9468-6937-4B3C-A6F0-E0952A097534}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C2DE9468-6937-4B3C-A6F0-E0952A097534}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C2DE9468-6937-4B3C-A6F0-E0952A097534}.Release|Any CPU.Build.0 = Release|Any CPU
+ {7B1C2FFF-0399-4A7A-82EF-126660356121}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {7B1C2FFF-0399-4A7A-82EF-126660356121}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {7B1C2FFF-0399-4A7A-82EF-126660356121}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {7B1C2FFF-0399-4A7A-82EF-126660356121}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Hero Designer/Data/Config.json b/Hero Designer/Data/Config.json
deleted file mode 100644
index 19bd6b86..00000000
--- a/Hero Designer/Data/Config.json
+++ /dev/null
@@ -1,455 +0,0 @@
-{
- "BaseAcc": 0.75,
- "UpdatePath": "http://repo.cohtitan.com/mids_updates/",
- "CalcEnhOrigin": 3,
- "CalcEnhLevel": 4,
- "ExempHigh": 50,
- "TeamSize": 1,
- "ExempLow": 50,
- "ForceLevel": 50,
- "ExportScheme": 1,
- "ExportTarget": 1,
- "DataDamageGraph": true,
- "DataGraphType": 2,
- "ShowVillainColours": true,
- "Columns": 3,
- "LastSize": "1072, 835",
- "StatGraphStyle": 1,
- "CompOverride": [
- {
- "Powerset": "Electrical Blast",
- "Power": "Tesla Cage",
- "Override": "Ranged, Foe Hold, Foe Disorient"
- },
- {
- "Powerset": "Electrical Blast",
- "Power": "Short Circuit",
- "Override": "PBAoE, Cone Moderate DoT(Energy), Foe -End, -Recovery "
- },
- {
- "Powerset": "Assault Rifle",
- "Power": "Burst",
- "Override": "Ranged, minor DMG(Lethal), Foe -DEF "
- },
- {
- "Powerset": "Assault Rifle",
- "Power": "Slug",
- "Override": "Ranged, moderate DMG(Lethal), Foe Knockback "
- },
- {
- "Powerset": "Electrical Blast",
- "Power": "Charged Bolts",
- "Override": "Ranged, minor DMG(Energy), Foe -End "
- },
- {
- "Powerset": "Electrical Blast",
- "Power": "Lightning Bolt",
- "Override": "Ranged, moderate DMG(Energy), Foe -End "
- },
- {
- "Powerset": "Archery",
- "Power": "Rain of Arrows",
- "Override": "Ranged (Location AoE), Extreme DoT(Lethal) Self -Recovery "
- },
- {
- "Powerset": "Assault Rifle",
- "Power": "Full Auto",
- "Override": "Ranged (Cone), extreme DMG(Lethal), +Special Self -Recovery "
- },
- {
- "Powerset": "Sonic Attack",
- "Power": "Shockwave",
- "Override": "Ranged Minor DMG(Smashing/Energy), Foe Knockback "
- },
- {
- "Powerset": "Sonic Attack",
- "Power": "Shout",
- "Override": "close high DMG(Smashing/Energy), Foe -Res(All) "
- },
- {
- "Powerset": "Illusion Control",
- "Power": "Blind",
- "Override": "Ranged , Moderate DMG(Psionic), Foe Hold"
- },
- {
- "Powerset": "Illusion Control",
- "Power": "Phantom Army",
- "Override": "Decoys: Ranged Minor DMG(Energy/Special) "
- },
- {
- "Powerset": "Illusion Control",
- "Power": "Spectral Terror",
- "Override": "Terror: Ranged Fear "
- }
- ],
- "PrintProfile": 16843009,
- "PrintProfileEnh": true,
- "LastPrinter": "\u0001",
- "LoadLastFileOnStart": true,
- "LastFileName": "",
- "DNickName": "",
- "DSelServer": "",
- "DChannel": "",
- "DesaturateInherent": true,
- "BuildMode": 1,
- "BuildOption": 2,
- "ShowPopup": true,
- "ShowAlphaPopup": true,
- "ReapeatOnMiddleClick": true,
- "ExportHex": true,
- "DragDropScenarioAction": [
- 3,
- 0,
- 5,
- 0,
- 3,
- 5,
- 0,
- 0,
- 5,
- 0,
- 2,
- 3,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- "SpeedFormat": 16843009,
- "UseArcanaTime": true,
- "DamageMath": {
- "Calculate": 1
- },
- "Inc": {
- "PvE": true
- },
- "Export": {
- "ColorSchemes": [
- {
- "SchemeName": "Navy",
- "Title": "MediumBlue",
- "Heading": "Navy",
- "Level": "DarkSlateBlue",
- "Slots": "DarkSlateBlue",
- "Power": "Black",
- "IOColor": "MediumBlue",
- "SetColor": "MediumBlue",
- "HOColor": "DarkSlateBlue"
- },
- {
- "SchemeName": "Light Blue (US)",
- "Title": "177, 201, 245",
- "Heading": "72, 154, 255",
- "Level": "79, 167, 255",
- "Slots": "94, 174, 255",
- "Power": "179, 202, 247",
- "IOColor": "139, 175, 241",
- "SetColor": "122, 164, 239",
- "HOColor": "74, 165, 255"
- },
- {
- "SchemeName": "Purple",
- "Title": "Purple",
- "Heading": "DarkViolet",
- "Level": "MediumOrchid",
- "Slots": "DarkViolet",
- "Power": "Black",
- "IOColor": "Purple",
- "SetColor": "Purple",
- "HOColor": "DarkViolet"
- },
- {
- "SchemeName": "Purple (US)",
- "Title": "207, 179, 255",
- "Heading": "188, 155, 255",
- "Level": "175, 138, 253",
- "Slots": "194, 180, 252",
- "Power": "227, 218, 254",
- "IOColor": "184, 160, 252",
- "SetColor": "179, 154, 252",
- "HOColor": "205, 193, 253"
- },
- {
- "SchemeName": "Orange",
- "Title": "DarkOrange",
- "Heading": "Orange",
- "Level": "OrangeRed",
- "Slots": "DarkGoldenrod",
- "Power": "Black",
- "IOColor": "DarkOrange",
- "SetColor": "DarkOrange",
- "HOColor": "DarkGoldenrod"
- },
- {
- "SchemeName": "Olive Drab",
- "Title": "DarkOliveGreen",
- "Heading": "Green",
- "Level": "OliveDrab",
- "Slots": "OliveDrab",
- "Power": "Black",
- "IOColor": "DarkOliveGreen",
- "SetColor": "DarkOliveGreen",
- "HOColor": "OliveDrab"
- },
- {
- "SchemeName": "Reds",
- "Title": "Maroon",
- "Heading": "168, 0, 0",
- "Level": "132, 63, 60",
- "Slots": "111, 0, 0",
- "Power": "Black",
- "IOColor": "155, 0, 0",
- "SetColor": "130, 0, 0",
- "HOColor": "147, 22, 0"
- },
- {
- "SchemeName": "Reds (US)",
- "Title": "255, 106, 106",
- "Heading": "Red",
- "Level": "255, 108, 108",
- "Slots": "255, 128, 128",
- "Power": "255, 183, 183",
- "IOColor": "255, 102, 102",
- "SetColor": "255, 74, 74",
- "HOColor": "255, 151, 151"
- },
- {
- "SchemeName": "Fruit Salad (US)",
- "Title": "Orange",
- "Heading": "DodgerBlue",
- "Level": "LimeGreen",
- "Slots": "Gold",
- "Power": "DodgerBlue",
- "IOColor": "255, 192, 0",
- "SetColor": "255, 230, 0",
- "HOColor": "255, 195, 75"
- },
- {
- "SchemeName": "Pink (US)",
- "Title": "255, 128, 192",
- "Heading": "255, 128, 255",
- "Level": "255, 128, 255",
- "Slots": "255, 174, 255",
- "Power": "255, 204, 230",
- "IOColor": "233, 174, 255",
- "SetColor": "255, 174, 213",
- "HOColor": "223, 174, 255"
- }
- ],
- "FormatCode": [
- {
- "Name": "No Codes",
- "Notes": "Unformatted plain text",
- "ColourOn": "",
- "ColourOff": "",
- "SizeOn": "",
- "SizeOff": "",
- "BoldOn": "",
- "BoldOff": "",
- "ItalicOn": "",
- "ItalicOff": "",
- "UnderlineOn": "",
- "UnderlineOff": "",
- "Space": 1
- },
- {
- "Name": "Official Forums (vBulletin)",
- "Notes": "Used by the official CoX foums.",
- "ColourOn": "[color=%VAL%]",
- "ColourOff": "[/color]",
- "SizeOn": "[code]",
- "SizeOff": "[/code]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "HTML Export",
- "Notes": "Exports HTML codes instead of BBCode.",
- "ColourOn": "",
- "ColourOff": "",
- "SizeOn": "",
- "SizeOff": "
",
- "BoldOn": "",
- "BoldOff": "",
- "ItalicOn": "",
- "ItalicOff": "",
- "UnderlineOn": "",
- "UnderlineOff": ""
- },
- {
- "Name": "LiveJournal HTML",
- "Notes": "As HTML export, but with no
tags",
- "ColourOn": "",
- "ColourOff": "",
- "SizeOn": "",
- "SizeOff": "
",
- "BoldOn": "",
- "BoldOff": "",
- "ItalicOn": "",
- "ItalicOff": "",
- "UnderlineOn": "",
- "UnderlineOff": ""
- },
- {
- "Name": "Titan Forums (SMF)",
- "Notes": "Simple Machines Forum",
- "ColourOn": "[color=%VAL%]",
- "ColourOff": "[/color]",
- "SizeOn": "[code]",
- "SizeOff": "[/code]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "phpBB / Zetaboards",
- "Notes": "Format of choice for Honourable United and the Elflings",
- "ColourOn": "[color=%VAL%]",
- "ColourOff": "[/color]",
- "SizeOn": "[code]",
- "SizeOff": "[/code]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "Universal Codes",
- "Notes": "No font size or colour attributes",
- "ColourOn": "",
- "ColourOff": "",
- "SizeOn": "",
- "SizeOff": "",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "AkBBS/Runboard",
- "Notes": "These codes work with Runboard",
- "ColourOn": "[col=%VAL%]",
- "ColourOff": "[/col]",
- "SizeOn": "[small][code]",
- "SizeOff": "[/code][/small]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "EZBoard",
- "Notes": "",
- "ColourOn": "[font color=%VAL%]",
- "ColourOff": "[/font]",
- "SizeOn": "[font size=1][code]",
- "SizeOff": "[/code][/font]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- },
- {
- "Name": "UNB Forum Export",
- "Notes": "Support for UNB forums which use an alternate list style.",
- "ColourOn": "[color=%VAL%]",
- "ColourOff": "[/color]",
- "SizeOn": "[code]",
- "SizeOff": "[/code]",
- "BoldOn": "[b]",
- "BoldOff": "[/b]",
- "ItalicOn": "[i]",
- "ItalicOff": "[/i]",
- "UnderlineOn": "[u]",
- "UnderlineOff": "[/u]"
- }
- ]
- },
- "I9": {
- "DefaultIOLevel": 49,
- "DisplayIOLevels": true,
- "CalculateEnahncementFX": true,
- "CalculateSetBonusFX": true,
- "PrintIOLevels": true,
- "ExportDataChunk": true,
- "ExportCompress": true
- },
- "RtFont": {
- "RTFBase": 20,
- "ColorBackgroundHero": "0, 0, 32",
- "ColorBackgroundVillain": "32, 0, 0",
- "ColorText": "White",
- "ColorInvention": "Cyan",
- "ColorInventionInv": "Navy",
- "ColorFaded": "Silver",
- "ColorEnhancement": "Lime",
- "ColorWarning": "Red",
- "ColorPlName": "192, 192, 255",
- "ColorPlSpecial": "128, 128, 255",
- "ColorPowerAvailable": "Yellow",
- "ColorPowerTaken": "Lime",
- "ColorPowerTakenDark": "0, 192, 0",
- "ColorPowerHighlight": "64, 64, 96",
- "ColorPowerDisabled": "128, 128, 192",
- "PairedBase": 9.0
- },
- "PrintHistory": true,
- "SaveFolderChecked": true,
- "ShowSlotLevels": true,
- "Tips": {
- "TipStatus": [
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- },
- "ShoppingListIncludesRecipes": true,
- "PopupRecipes": true
-}
\ No newline at end of file
diff --git a/Hero Designer/Data/EnhDB.json b/Hero Designer/Data/EnhDB.json
index 490f485d..2ac4fc40 100644
--- a/Hero Designer/Data/EnhDB.json
+++ b/Hero Designer/Data/EnhDB.json
@@ -43243,8 +43243,8 @@
"ProcsPerMinute": 3.5,
"CancelOnMiss": true,
"Probability": 0.2,
- "Mag": -0.2,
- "MagPercent": -20.0,
+ "Mag": -0.125,
+ "MagPercent": -12.5,
"DisplayPercentage": true,
"BaseProbability": 0.2,
"Reward": "",
@@ -43258,7 +43258,7 @@
"nIDClassName": -1,
"isEnhancementEffect": true,
"ToWho": 1,
- "Scale": -0.2,
+ "Scale": -0.125,
"nMagnitude": 1.0,
"Aspect": 4,
"ModifierTable": "Melee_Ones",
@@ -44666,6 +44666,7 @@
"LongName": "Superior Defiant Barrage: RechargeTime/+Status"
},
{
+ "IsModified": true,
"StaticIndex": 1030,
"Name": "Accuracy/Damage",
"ShortName": "Acc/Dmg",
@@ -44695,6 +44696,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 2,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_A",
@@ -44702,6 +44704,7 @@
"LongName": "Unrelenting Fury: Accuracy/Damage"
},
{
+ "IsModified": true,
"StaticIndex": 1031,
"Name": "Damage/RechargeTime",
"ShortName": "Dmg/Rchg",
@@ -44731,6 +44734,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 3,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_B",
@@ -44738,6 +44742,7 @@
"LongName": "Unrelenting Fury: Damage/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1032,
"Name": "Accuracy/Damage/RechargeTime",
"ShortName": "Acc/Dmg/Rchg",
@@ -44774,6 +44779,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 4,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_C",
@@ -44781,6 +44787,7 @@
"LongName": "Unrelenting Fury: Accuracy/Damage/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1033,
"Name": "Damage/Endurance/RechargeTime",
"ShortName": "Dmg/EndRdx/Rchg",
@@ -44817,6 +44824,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 5,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_D",
@@ -44824,6 +44832,7 @@
"LongName": "Unrelenting Fury: Damage/Endurance/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1034,
"Name": "Accuracy/Damage/Endurance/RechargeTime",
"ShortName": "Acc/Dmg/EndRdx/Rchg",
@@ -44867,6 +44876,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 6,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_E",
@@ -44874,6 +44884,7 @@
"LongName": "Unrelenting Fury: Accuracy/Damage/Endurance/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1035,
"Name": "RechargeTime/+Regen/+End",
"ShortName": "Rchg/+Regen/+End",
@@ -44931,6 +44942,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 7,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Attuned_Unrelenting_Fury_F",
@@ -44940,6 +44952,7 @@
"LongName": "Unrelenting Fury: RechargeTime/+Regen/+End"
},
{
+ "IsModified": true,
"StaticIndex": 1036,
"Name": "Accuracy/Damage",
"ShortName": "Acc/Dmg",
@@ -44969,6 +44982,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 2,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_A",
@@ -44977,6 +44991,7 @@
"LongName": "Superior Unrelenting Fury: Accuracy/Damage"
},
{
+ "IsModified": true,
"StaticIndex": 1037,
"Name": "Damage/RechargeTime",
"ShortName": "Dmg/Rchg",
@@ -45006,6 +45021,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 3,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_B",
@@ -45014,6 +45030,7 @@
"LongName": "Superior Unrelenting Fury: Damage/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1038,
"Name": "Accuracy/Damage/RechargeTime",
"ShortName": "Acc/Dmg/Rchg",
@@ -45050,6 +45067,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 4,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_C",
@@ -45058,6 +45076,7 @@
"LongName": "Superior Unrelenting Fury: Accuracy/Damage/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1039,
"Name": "Damage/Endurance/RechargeTime",
"ShortName": "Dmg/EndRdx/Rchg",
@@ -45094,6 +45113,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 5,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_D",
@@ -45102,6 +45122,7 @@
"LongName": "Superior Unrelenting Fury: Damage/Endurance/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1040,
"Name": "Accuracy/Damage/Endurance/RechargeTime",
"ShortName": "Acc/Dmg/EndRdx/Rchg",
@@ -45145,6 +45166,7 @@
"EffectChance": 1.0,
"LevelMax": -1,
"Unique": true,
+ "MutExID": 6,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_E",
@@ -45153,6 +45175,7 @@
"LongName": "Superior Unrelenting Fury: Accuracy/Damage/Endurance/RechargeTime"
},
{
+ "IsModified": true,
"StaticIndex": 1041,
"Name": "RechargeTime/+Regen/+End",
"ShortName": "Rchg/+Regen/+End",
@@ -45257,6 +45280,7 @@
"EffectChance": 1.0,
"LevelMax": 49,
"Unique": true,
+ "MutExID": 7,
"RecipeName": "Alt",
"RecipeIDX": 1072,
"UID": "Superior_Attuned_Superior_Unrelenting_Fury_F",
@@ -54965,7 +54989,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 2
@@ -54976,7 +55000,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -55042,7 +55066,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -55053,7 +55077,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_1"
],
"Index": [
- 8037
+ 8047
],
"AltString": "",
"Slotted": 3
@@ -55120,7 +55144,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -55131,7 +55155,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -55198,7 +55222,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 2
@@ -55209,7 +55233,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_1"
],
"Index": [
- 8037
+ 8047
],
"AltString": "",
"Slotted": 3
@@ -55220,7 +55244,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 4
@@ -55288,7 +55312,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 2
@@ -55299,7 +55323,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -55310,7 +55334,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_2"
],
"Index": [
- 8108
+ 8118
],
"AltString": "",
"Slotted": 4
@@ -55378,7 +55402,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 2
@@ -55389,7 +55413,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -55400,7 +55424,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_5"
],
"Index": [
- 8111
+ 8121
],
"AltString": "",
"Slotted": 4
@@ -55411,7 +55435,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 5
@@ -55480,7 +55504,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 2
@@ -55491,7 +55515,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 3
@@ -55502,7 +55526,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_2"
],
"Index": [
- 8024
+ 8034
],
"AltString": "",
"Slotted": 4
@@ -55513,7 +55537,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_2"
],
"Index": [
- 8129
+ 8139
],
"AltString": "",
"Slotted": 5
@@ -55582,7 +55606,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -55593,7 +55617,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -55604,7 +55628,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -55615,7 +55639,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -55626,7 +55650,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_5"
],
"Index": [
- 8125
+ 8135
],
"AltString": "",
"Slotted": 6
@@ -55696,7 +55720,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -55707,7 +55731,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -55718,7 +55742,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 4
@@ -55729,7 +55753,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -55740,7 +55764,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -55810,7 +55834,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -55821,7 +55845,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -55832,7 +55856,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -55843,7 +55867,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -55854,7 +55878,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -55924,7 +55948,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -55935,7 +55959,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_1"
],
"Index": [
- 8037
+ 8047
],
"AltString": "",
"Slotted": 3
@@ -55946,7 +55970,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_1"
],
"Index": [
- 8016
+ 8026
],
"AltString": "",
"Slotted": 4
@@ -56014,7 +56038,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 2
@@ -56025,7 +56049,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_4"
],
"Index": [
- 8040
+ 8050
],
"AltString": "",
"Slotted": 3
@@ -56036,7 +56060,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 4
@@ -56047,7 +56071,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 5
@@ -56058,7 +56082,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 6
@@ -56128,7 +56152,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -56139,7 +56163,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -56150,7 +56174,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 4
@@ -56161,7 +56185,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -56172,7 +56196,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_2"
],
"Index": [
- 8122
+ 8132
],
"AltString": "",
"Slotted": 6
@@ -56242,7 +56266,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -56253,7 +56277,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 3
@@ -56264,7 +56288,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -56275,7 +56299,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 5
@@ -56286,7 +56310,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_4"
],
"Index": [
- 8166
+ 8176
],
"AltString": "",
"Slotted": 6
@@ -56356,7 +56380,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 2
@@ -56367,7 +56391,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 3
@@ -56378,7 +56402,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -56389,7 +56413,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -56400,7 +56424,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_5"
],
"Index": [
- 8125
+ 8135
],
"AltString": "",
"Slotted": 6
@@ -56470,7 +56494,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -56481,7 +56505,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -56548,7 +56572,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -56559,7 +56583,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 3
@@ -56626,7 +56650,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -56637,7 +56661,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -56704,7 +56728,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -56715,7 +56739,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 3
@@ -56726,7 +56750,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 4
@@ -56794,7 +56818,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_2"
],
"Index": [
- 8129
+ 8139
],
"AltString": "",
"Slotted": 2
@@ -56805,7 +56829,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_2"
],
"Index": [
- 8052
+ 8062
],
"AltString": "",
"Slotted": 3
@@ -56816,7 +56840,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 4
@@ -56884,7 +56908,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -56895,7 +56919,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 3
@@ -56906,7 +56930,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 4
@@ -56917,7 +56941,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -56986,7 +57010,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -56997,7 +57021,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -57008,7 +57032,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 4
@@ -57019,7 +57043,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -57088,7 +57112,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -57099,7 +57123,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -57110,7 +57134,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 4
@@ -57121,7 +57145,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -57132,7 +57156,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -57202,7 +57226,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -57213,7 +57237,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_3"
],
"Index": [
- 8039
+ 8049
],
"AltString": "",
"Slotted": 3
@@ -57224,7 +57248,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 4
@@ -57235,7 +57259,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_3"
],
"Index": [
- 8130
+ 8140
],
"AltString": "",
"Slotted": 5
@@ -57246,7 +57270,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 6
@@ -57316,7 +57340,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 2
@@ -57327,7 +57351,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 3
@@ -57338,7 +57362,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -57349,7 +57373,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 5
@@ -57360,7 +57384,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_5"
],
"Index": [
- 8167
+ 8177
],
"AltString": "",
"Slotted": 6
@@ -57430,7 +57454,7 @@
"Set_Bonus.Set_Bonus.Improved_Knockback_1"
],
"Index": [
- 7932
+ 7942
],
"AltString": "",
"Slotted": 2
@@ -57441,7 +57465,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -57452,7 +57476,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 4
@@ -57520,7 +57544,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -57531,7 +57555,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 3
@@ -57542,7 +57566,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 4
@@ -57553,7 +57577,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -57564,7 +57588,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -57634,7 +57658,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -57645,7 +57669,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 3
@@ -57656,7 +57680,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -57667,7 +57691,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -57678,7 +57702,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -57748,7 +57772,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_1"
],
"Index": [
- 8128
+ 8138
],
"AltString": "",
"Slotted": 2
@@ -57759,7 +57783,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_2"
],
"Index": [
- 8052
+ 8062
],
"AltString": "",
"Slotted": 3
@@ -57770,7 +57794,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 4
@@ -57838,7 +57862,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -57849,7 +57873,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_2"
],
"Index": [
- 8038
+ 8048
],
"AltString": "",
"Slotted": 3
@@ -57860,7 +57884,7 @@
"Set_Bonus.Set_Bonus.Accuracy_2"
],
"Index": [
- 7804
+ 7814
],
"AltString": "",
"Slotted": 4
@@ -57871,7 +57895,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -57882,7 +57906,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 6
@@ -57952,7 +57976,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -57963,7 +57987,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 3
@@ -57974,7 +57998,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -57985,7 +58009,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -57996,7 +58020,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -58066,7 +58090,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -58077,7 +58101,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -58088,7 +58112,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 4
@@ -58099,7 +58123,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 5
@@ -58110,7 +58134,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 6
@@ -58180,7 +58204,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 2
@@ -58191,7 +58215,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 3
@@ -58202,7 +58226,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -58213,7 +58237,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 5
@@ -58224,7 +58248,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -58294,7 +58318,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 2
@@ -58305,7 +58329,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -58316,7 +58340,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_1"
],
"Index": [
- 8023
+ 8033
],
"AltString": "",
"Slotted": 4
@@ -58384,7 +58408,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -58395,7 +58419,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -58406,7 +58430,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_2"
],
"Index": [
- 8024
+ 8034
],
"AltString": "",
"Slotted": 4
@@ -58417,7 +58441,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_1"
],
"Index": [
- 7995
+ 8005
],
"AltString": "",
"Slotted": 5
@@ -58454,7 +58478,7 @@
"Set_Bonus.Set_Bonus.Commanding_Presence"
],
"Index": [
- 7822
+ 7832
],
"AltString": ""
},
@@ -58490,7 +58514,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -58501,7 +58525,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_1"
],
"Index": [
- 7824
+ 7834
],
"AltString": "",
"Slotted": 3
@@ -58512,7 +58536,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 4
@@ -58523,7 +58547,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_1"
],
"Index": [
- 8128
+ 8138
],
"AltString": "",
"Slotted": 5
@@ -58534,7 +58558,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -58604,7 +58628,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_3"
],
"Index": [
- 8130
+ 8140
],
"AltString": "",
"Slotted": 2
@@ -58615,7 +58639,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -58626,7 +58650,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_3"
],
"Index": [
- 8250
+ 8260
],
"AltString": "",
"Slotted": 4
@@ -58637,7 +58661,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 5
@@ -58648,7 +58672,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -58691,7 +58715,7 @@
"Set_Bonus.Set_Bonus.Edict_of_the_Master"
],
"Index": [
- 7850
+ 7860
],
"AltString": ""
}
@@ -58722,7 +58746,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -58733,7 +58757,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_2"
],
"Index": [
- 8052
+ 8062
],
"AltString": "",
"Slotted": 3
@@ -58744,7 +58768,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 4
@@ -58755,7 +58779,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 5
@@ -58766,7 +58790,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -58836,7 +58860,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 2
@@ -58847,7 +58871,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 3
@@ -58858,7 +58882,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 4
@@ -58869,7 +58893,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 5
@@ -58880,7 +58904,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 6
@@ -58923,7 +58947,7 @@
"Set_Bonus.Set_Bonus.Sovereign_Right"
],
"Index": [
- 8290
+ 8300
],
"AltString": ""
}
@@ -58954,7 +58978,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_2"
],
"Index": [
- 8024
+ 8034
],
"AltString": "",
"Slotted": 2
@@ -58965,7 +58989,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -58990,7 +59014,7 @@
"Set_Bonus.Set_Bonus.Karma"
],
"Index": [
- 8238
+ 8248
],
"AltString": ""
},
@@ -59036,7 +59060,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -59047,7 +59071,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 3
@@ -59058,7 +59082,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 4
@@ -59069,7 +59093,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_2"
],
"Index": [
- 7940
+ 7950
],
"AltString": "",
"Slotted": 5
@@ -59138,7 +59162,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -59149,7 +59173,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -59160,7 +59184,7 @@
"Set_Bonus.Set_Bonus.Accuracy_1"
],
"Index": [
- 7803
+ 7813
],
"AltString": "",
"Slotted": 4
@@ -59171,7 +59195,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_1"
],
"Index": [
- 7995
+ 8005
],
"AltString": "",
"Slotted": 5
@@ -59182,7 +59206,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -59252,7 +59276,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -59263,7 +59287,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 3
@@ -59274,7 +59298,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 4
@@ -59285,7 +59309,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 5
@@ -59296,7 +59320,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -59339,7 +59363,7 @@
"Set_Bonus.Set_Bonus.Gift_of_the_Ancients"
],
"Index": [
- 7892
+ 7902
],
"AltString": ""
}
@@ -59370,7 +59394,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -59381,7 +59405,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -59392,7 +59416,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 4
@@ -59403,7 +59427,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -59414,7 +59438,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 6
@@ -59484,7 +59508,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -59495,7 +59519,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -59506,7 +59530,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -59517,7 +59541,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -59528,7 +59552,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -59571,7 +59595,7 @@
"Set_Bonus.Set_Bonus.Luck_of_the_Gambler"
],
"Index": [
- 8255
+ 8265
],
"AltString": ""
}
@@ -59602,7 +59626,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -59613,7 +59637,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -59632,7 +59656,7 @@
"Set_Bonus.Set_Bonus.Steadfast_Protection_Def"
],
"Index": [
- 8293
+ 8303
],
"AltString": ""
},
@@ -59642,7 +59666,7 @@
"Set_Bonus.Set_Bonus.Steadfast_Protection_KB"
],
"Index": [
- 8294
+ 8304
],
"AltString": ""
},
@@ -59688,7 +59712,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -59699,7 +59723,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -59710,7 +59734,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 4
@@ -59721,7 +59745,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -59758,7 +59782,7 @@
"Set_Bonus.Set_Bonus.Impervious_Skin"
],
"Index": [
- 7923
+ 7933
],
"AltString": ""
},
@@ -59794,7 +59818,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -59805,7 +59829,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_1"
],
"Index": [
- 8037
+ 8047
],
"AltString": "",
"Slotted": 3
@@ -59816,7 +59840,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_1"
],
"Index": [
- 8107
+ 8117
],
"AltString": "",
"Slotted": 4
@@ -59827,7 +59851,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_1"
],
"Index": [
- 7995
+ 8005
],
"AltString": "",
"Slotted": 5
@@ -59838,7 +59862,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -59908,7 +59932,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -59919,7 +59943,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_2"
],
"Index": [
- 8164
+ 8174
],
"AltString": "",
"Slotted": 3
@@ -59930,7 +59954,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 4
@@ -59941,7 +59965,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 5
@@ -59952,7 +59976,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -59995,7 +60019,7 @@
"Set_Bonus.Set_Bonus.Impervium_Armor"
],
"Index": [
- 7924
+ 7934
],
"AltString": ""
}
@@ -60026,7 +60050,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -60037,7 +60061,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -60048,7 +60072,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_3"
],
"Index": [
- 8250
+ 8260
],
"AltString": "",
"Slotted": 4
@@ -60059,7 +60083,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 5
@@ -60070,7 +60094,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 6
@@ -60140,7 +60164,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -60151,7 +60175,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_4"
],
"Index": [
- 8054
+ 8064
],
"AltString": "",
"Slotted": 3
@@ -60162,7 +60186,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_3"
],
"Index": [
- 8250
+ 8260
],
"AltString": "",
"Slotted": 4
@@ -60173,7 +60197,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 5
@@ -60184,7 +60208,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -60227,7 +60251,7 @@
"Set_Bonus.Set_Bonus.Aegis"
],
"Index": [
- 7811
+ 7821
],
"AltString": ""
}
@@ -60258,7 +60282,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -60269,7 +60293,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -60280,7 +60304,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_1"
],
"Index": [
- 7925
+ 7935
],
"AltString": "",
"Slotted": 4
@@ -60348,7 +60372,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_3"
],
"Index": [
- 8130
+ 8140
],
"AltString": "",
"Slotted": 2
@@ -60359,7 +60383,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -60370,7 +60394,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_3"
],
"Index": [
- 7927
+ 7937
],
"AltString": "",
"Slotted": 4
@@ -60381,7 +60405,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -60450,7 +60474,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -60461,7 +60485,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -60472,7 +60496,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_2"
],
"Index": [
- 7926
+ 7936
],
"AltString": "",
"Slotted": 4
@@ -60483,7 +60507,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -60494,7 +60518,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -60564,7 +60588,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -60575,7 +60599,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -60586,7 +60610,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_4"
],
"Index": [
- 7928
+ 7938
],
"AltString": "",
"Slotted": 4
@@ -60597,7 +60621,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -60608,7 +60632,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_2"
],
"Index": [
- 8164
+ 8174
],
"AltString": "",
"Slotted": 6
@@ -60678,7 +60702,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -60689,7 +60713,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -60700,7 +60724,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_3"
],
"Index": [
- 7927
+ 7937
],
"AltString": "",
"Slotted": 4
@@ -60711,7 +60735,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -60722,7 +60746,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -60792,7 +60816,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 2
@@ -60803,7 +60827,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -60814,7 +60838,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_5"
],
"Index": [
- 7929
+ 7939
],
"AltString": "",
"Slotted": 4
@@ -60825,7 +60849,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -60836,7 +60860,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -60906,7 +60930,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -60917,7 +60941,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 3
@@ -60928,7 +60952,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_1"
],
"Index": [
- 8023
+ 8033
],
"AltString": "",
"Slotted": 4
@@ -60939,7 +60963,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_1"
],
"Index": [
- 7895
+ 7905
],
"AltString": "",
"Slotted": 5
@@ -61008,7 +61032,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 2
@@ -61019,7 +61043,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -61030,7 +61054,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 4
@@ -61041,7 +61065,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_3"
],
"Index": [
- 7897
+ 7907
],
"AltString": "",
"Slotted": 5
@@ -61052,7 +61076,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 6
@@ -61122,7 +61146,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_3"
],
"Index": [
- 8039
+ 8049
],
"AltString": "",
"Slotted": 2
@@ -61133,7 +61157,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 3
@@ -61144,7 +61168,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 4
@@ -61155,7 +61179,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 5
@@ -61166,7 +61190,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 6
@@ -61236,7 +61260,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -61247,7 +61271,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -61258,7 +61282,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 4
@@ -61269,7 +61293,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_2"
],
"Index": [
- 7896
+ 7906
],
"AltString": "",
"Slotted": 5
@@ -61280,7 +61304,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_2"
],
"Index": [
- 8185
+ 8195
],
"AltString": "",
"Slotted": 6
@@ -61350,7 +61374,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -61361,7 +61385,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -61372,7 +61396,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 4
@@ -61383,7 +61407,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_4"
],
"Index": [
- 7898
+ 7908
],
"AltString": "",
"Slotted": 5
@@ -61394,7 +61418,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -61464,7 +61488,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 2
@@ -61475,7 +61499,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_4"
],
"Index": [
- 7898
+ 7908
],
"AltString": "",
"Slotted": 3
@@ -61486,7 +61510,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 4
@@ -61497,7 +61521,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 5
@@ -61508,7 +61532,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -61578,7 +61602,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_1"
],
"Index": [
- 8128
+ 8138
],
"AltString": "",
"Slotted": 2
@@ -61589,7 +61613,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_1"
],
"Index": [
- 8051
+ 8061
],
"AltString": "",
"Slotted": 3
@@ -61600,7 +61624,7 @@
"Set_Bonus.Set_Bonus.Stun_Dur_1"
],
"Index": [
- 8295
+ 8305
],
"AltString": "",
"Slotted": 4
@@ -61611,7 +61635,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -61680,7 +61704,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -61691,7 +61715,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -61702,7 +61726,7 @@
"Set_Bonus.Set_Bonus.Stun_Dur_3"
],
"Index": [
- 8297
+ 8307
],
"AltString": "",
"Slotted": 4
@@ -61713,7 +61737,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 5
@@ -61724,7 +61748,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 6
@@ -61794,7 +61818,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 2
@@ -61805,7 +61829,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_1"
],
"Index": [
- 7882
+ 7892
],
"AltString": "",
"Slotted": 3
@@ -61816,7 +61840,7 @@
"Set_Bonus.Set_Bonus.Stun_Dur_3"
],
"Index": [
- 8297
+ 8307
],
"AltString": "",
"Slotted": 4
@@ -61827,7 +61851,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_3"
],
"Index": [
- 8250
+ 8260
],
"AltString": "",
"Slotted": 5
@@ -61838,7 +61862,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_2"
],
"Index": [
- 8164
+ 8174
],
"AltString": "",
"Slotted": 6
@@ -61908,7 +61932,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -61919,7 +61943,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -61930,7 +61954,7 @@
"Set_Bonus.Set_Bonus.Stun_Dur_5"
],
"Index": [
- 8299
+ 8309
],
"AltString": "",
"Slotted": 4
@@ -61941,7 +61965,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -61952,7 +61976,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -62022,7 +62046,7 @@
"Set_Bonus.Set_Bonus.Immob_Dur_1"
],
"Index": [
- 7909
+ 7919
],
"AltString": "",
"Slotted": 2
@@ -62033,7 +62057,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -62044,7 +62068,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_1"
],
"Index": [
- 8016
+ 8026
],
"AltString": "",
"Slotted": 4
@@ -62055,7 +62079,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -62124,7 +62148,7 @@
"Set_Bonus.Set_Bonus.Immob_Dur_3"
],
"Index": [
- 7911
+ 7921
],
"AltString": "",
"Slotted": 2
@@ -62135,7 +62159,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 3
@@ -62146,7 +62170,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 4
@@ -62157,7 +62181,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 5
@@ -62168,7 +62192,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -62238,7 +62262,7 @@
"Set_Bonus.Set_Bonus.Immob_Dur_2"
],
"Index": [
- 7910
+ 7920
],
"AltString": "",
"Slotted": 2
@@ -62249,7 +62273,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 3
@@ -62260,7 +62284,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_3"
],
"Index": [
- 8109
+ 8119
],
"AltString": "",
"Slotted": 4
@@ -62271,7 +62295,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_2"
],
"Index": [
- 7940
+ 7950
],
"AltString": "",
"Slotted": 5
@@ -62282,7 +62306,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 6
@@ -62352,7 +62376,7 @@
"Set_Bonus.Set_Bonus.Immob_Dur_4"
],
"Index": [
- 7912
+ 7922
],
"AltString": "",
"Slotted": 2
@@ -62363,7 +62387,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -62374,7 +62398,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -62385,7 +62409,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -62396,7 +62420,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -62466,7 +62490,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -62477,7 +62501,7 @@
"Set_Bonus.Set_Bonus.Improved_Slow_3"
],
"Index": [
- 7969
+ 7979
],
"AltString": "",
"Slotted": 3
@@ -62488,7 +62512,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_1"
],
"Index": [
- 8107
+ 8117
],
"AltString": "",
"Slotted": 4
@@ -62499,7 +62523,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -62568,7 +62592,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -62579,7 +62603,7 @@
"Set_Bonus.Set_Bonus.Improved_Slow_5"
],
"Index": [
- 7971
+ 7981
],
"AltString": "",
"Slotted": 3
@@ -62590,7 +62614,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 4
@@ -62601,7 +62625,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 5
@@ -62612,7 +62636,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 6
@@ -62682,7 +62706,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -62693,7 +62717,7 @@
"Set_Bonus.Set_Bonus.Improved_Slow_2"
],
"Index": [
- 7968
+ 7978
],
"AltString": "",
"Slotted": 3
@@ -62704,7 +62728,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_1"
],
"Index": [
- 8023
+ 8033
],
"AltString": "",
"Slotted": 4
@@ -62715,7 +62739,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_2"
],
"Index": [
- 7940
+ 7950
],
"AltString": "",
"Slotted": 5
@@ -62726,7 +62750,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_2"
],
"Index": [
- 8185
+ 8195
],
"AltString": "",
"Slotted": 6
@@ -62796,7 +62820,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_2"
],
"Index": [
- 8323
+ 8333
],
"AltString": "",
"Slotted": 2
@@ -62807,7 +62831,7 @@
"Set_Bonus.Set_Bonus.Improved_Slow_4"
],
"Index": [
- 7970
+ 7980
],
"AltString": "",
"Slotted": 3
@@ -62818,7 +62842,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -62829,7 +62853,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 5
@@ -62840,7 +62864,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -62910,7 +62934,7 @@
"Set_Bonus.Set_Bonus.Sleep_Dur_3"
],
"Index": [
- 8272
+ 8282
],
"AltString": "",
"Slotted": 2
@@ -62921,7 +62945,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -62932,7 +62956,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 4
@@ -62943,7 +62967,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -63012,7 +63036,7 @@
"Set_Bonus.Set_Bonus.Sleep_Dur_5"
],
"Index": [
- 8274
+ 8284
],
"AltString": "",
"Slotted": 2
@@ -63023,7 +63047,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -63034,7 +63058,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -63045,7 +63069,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_2"
],
"Index": [
- 8129
+ 8139
],
"AltString": "",
"Slotted": 5
@@ -63056,7 +63080,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_3"
],
"Index": [
- 8123
+ 8133
],
"AltString": "",
"Slotted": 6
@@ -63126,7 +63150,7 @@
"Set_Bonus.Set_Bonus.Sleep_Dur_3"
],
"Index": [
- 8272
+ 8282
],
"AltString": "",
"Slotted": 2
@@ -63137,7 +63161,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_2"
],
"Index": [
- 8038
+ 8048
],
"AltString": "",
"Slotted": 3
@@ -63148,7 +63172,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_2"
],
"Index": [
- 8108
+ 8118
],
"AltString": "",
"Slotted": 4
@@ -63159,7 +63183,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -63170,7 +63194,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -63240,7 +63264,7 @@
"Set_Bonus.Set_Bonus.Sleep_Dur_4"
],
"Index": [
- 8273
+ 8283
],
"AltString": "",
"Slotted": 2
@@ -63251,7 +63275,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -63262,7 +63286,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 4
@@ -63273,7 +63297,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -63284,7 +63308,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -63354,7 +63378,7 @@
"Set_Bonus.Set_Bonus.Fear_Dur_1"
],
"Index": [
- 7868
+ 7878
],
"AltString": "",
"Slotted": 2
@@ -63365,7 +63389,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -63376,7 +63400,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 4
@@ -63387,7 +63411,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -63456,7 +63480,7 @@
"Set_Bonus.Set_Bonus.Fear_Dur_3"
],
"Index": [
- 7870
+ 7880
],
"AltString": "",
"Slotted": 2
@@ -63467,7 +63491,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 3
@@ -63478,7 +63502,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 4
@@ -63489,7 +63513,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -63500,7 +63524,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -63570,7 +63594,7 @@
"Set_Bonus.Set_Bonus.Fear_Dur_2"
],
"Index": [
- 7869
+ 7879
],
"AltString": "",
"Slotted": 2
@@ -63581,7 +63605,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_2"
],
"Index": [
- 8038
+ 8048
],
"AltString": "",
"Slotted": 3
@@ -63592,7 +63616,7 @@
"Set_Bonus.Set_Bonus.Accuracy_2"
],
"Index": [
- 7804
+ 7814
],
"AltString": "",
"Slotted": 4
@@ -63603,7 +63627,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 5
@@ -63614,7 +63638,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -63684,7 +63708,7 @@
"Set_Bonus.Set_Bonus.Fear_Dur_4"
],
"Index": [
- 7871
+ 7881
],
"AltString": "",
"Slotted": 2
@@ -63695,7 +63719,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -63706,7 +63730,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -63717,7 +63741,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -63728,7 +63752,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -63798,7 +63822,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -63809,7 +63833,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_1"
],
"Index": [
- 7824
+ 7834
],
"AltString": "",
"Slotted": 3
@@ -63820,7 +63844,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_2"
],
"Index": [
- 8323
+ 8333
],
"AltString": "",
"Slotted": 4
@@ -63831,7 +63855,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_1"
],
"Index": [
- 7939
+ 7949
],
"AltString": "",
"Slotted": 5
@@ -63900,7 +63924,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -63911,7 +63935,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_2"
],
"Index": [
- 7825
+ 7835
],
"AltString": "",
"Slotted": 3
@@ -63922,7 +63946,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_3"
],
"Index": [
- 8324
+ 8334
],
"AltString": "",
"Slotted": 4
@@ -63933,7 +63957,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 5
@@ -63944,7 +63968,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 6
@@ -64014,7 +64038,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 2
@@ -64025,7 +64049,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_2"
],
"Index": [
- 7825
+ 7835
],
"AltString": "",
"Slotted": 3
@@ -64036,7 +64060,7 @@
"Set_Bonus.Set_Bonus.Accuracy_2"
],
"Index": [
- 7804
+ 7814
],
"AltString": "",
"Slotted": 4
@@ -64047,7 +64071,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -64058,7 +64082,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -64128,7 +64152,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -64139,7 +64163,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_4"
],
"Index": [
- 7827
+ 7837
],
"AltString": "",
"Slotted": 3
@@ -64150,7 +64174,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -64161,7 +64185,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 5
@@ -64172,7 +64196,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -64242,7 +64266,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -64253,7 +64277,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -64320,7 +64344,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 2
@@ -64331,7 +64355,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -64398,7 +64422,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_1"
],
"Index": [
- 8128
+ 8138
],
"AltString": "",
"Slotted": 2
@@ -64409,7 +64433,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -64476,7 +64500,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_3"
],
"Index": [
- 8130
+ 8140
],
"AltString": "",
"Slotted": 2
@@ -64487,7 +64511,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -64554,7 +64578,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -64565,7 +64589,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -64632,7 +64656,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 2
@@ -64643,7 +64667,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -64710,7 +64734,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -64721,7 +64745,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_1"
],
"Index": [
- 8086
+ 8096
],
"AltString": "",
"Slotted": 3
@@ -64788,7 +64812,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 2
@@ -64799,7 +64823,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -64866,7 +64890,7 @@
"Set_Bonus.Set_Bonus.Accuracy_1"
],
"Index": [
- 7803
+ 7813
],
"AltString": "",
"Slotted": 2
@@ -64877,7 +64901,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_1"
],
"Index": [
- 8121
+ 8131
],
"AltString": "",
"Slotted": 3
@@ -64944,7 +64968,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_2"
],
"Index": [
- 8017
+ 8027
],
"AltString": "",
"Slotted": 2
@@ -64955,7 +64979,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 3
@@ -65022,7 +65046,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -65033,7 +65057,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 3
@@ -65044,7 +65068,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 4
@@ -65055,7 +65079,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 5
@@ -65066,7 +65090,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 6
@@ -65136,7 +65160,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -65147,7 +65171,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 3
@@ -65158,7 +65182,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_3"
],
"Index": [
- 7955
+ 7965
],
"AltString": "",
"Slotted": 4
@@ -65169,7 +65193,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 5
@@ -65180,7 +65204,7 @@
"Set_Bonus.Set_Bonus.Accuracy_5"
],
"Index": [
- 7807
+ 7817
],
"AltString": "",
"Slotted": 6
@@ -65250,7 +65274,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -65261,7 +65285,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -65328,7 +65352,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 2
@@ -65339,7 +65363,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 3
@@ -65406,7 +65430,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 2
@@ -65417,7 +65441,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_2"
],
"Index": [
- 7947
+ 7957
],
"AltString": "",
"Slotted": 3
@@ -65428,7 +65452,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -65439,7 +65463,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -65450,7 +65474,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 6
@@ -65520,7 +65544,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -65531,7 +65555,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -65542,7 +65566,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 4
@@ -65553,7 +65577,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -65564,7 +65588,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 6
@@ -65634,7 +65658,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 2
@@ -65645,7 +65669,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -65712,7 +65736,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_2"
],
"Index": [
- 8017
+ 8027
],
"AltString": "",
"Slotted": 2
@@ -65723,7 +65747,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_2"
],
"Index": [
- 8185
+ 8195
],
"AltString": "",
"Slotted": 3
@@ -65790,7 +65814,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_2"
],
"Index": [
- 8129
+ 8139
],
"AltString": "",
"Slotted": 2
@@ -65801,7 +65825,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 3
@@ -65812,7 +65836,7 @@
"Set_Bonus.Set_Bonus.Knockback_Protection_2"
],
"Index": [
- 8241
+ 8251
],
"AltString": "",
"Slotted": 4
@@ -65823,7 +65847,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 5
@@ -65834,7 +65858,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 6
@@ -65904,7 +65928,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -65915,7 +65939,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 3
@@ -65926,7 +65950,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -65937,7 +65961,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -65948,7 +65972,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 6
@@ -66018,7 +66042,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_1"
],
"Index": [
- 7953
+ 7963
],
"AltString": "",
"Slotted": 2
@@ -66029,7 +66053,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_1"
],
"Index": [
- 8107
+ 8117
],
"AltString": "",
"Slotted": 3
@@ -66096,7 +66120,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_1"
],
"Index": [
- 7946
+ 7956
],
"AltString": "",
"Slotted": 2
@@ -66107,7 +66131,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_2"
],
"Index": [
- 8108
+ 8118
],
"AltString": "",
"Slotted": 3
@@ -66174,7 +66198,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 2
@@ -66185,7 +66209,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 3
@@ -66196,7 +66220,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_3"
],
"Index": [
- 8109
+ 8119
],
"AltString": "",
"Slotted": 4
@@ -66207,7 +66231,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_4"
],
"Index": [
- 8054
+ 8064
],
"AltString": "",
"Slotted": 5
@@ -66218,7 +66242,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 6
@@ -66288,7 +66312,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_2"
],
"Index": [
- 8323
+ 8333
],
"AltString": "",
"Slotted": 2
@@ -66299,7 +66323,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 3
@@ -66310,7 +66334,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 4
@@ -66321,7 +66345,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -66332,7 +66356,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_4"
],
"Index": [
- 8110
+ 8120
],
"AltString": "",
"Slotted": 6
@@ -66402,7 +66426,7 @@
"Set_Bonus.Set_Bonus.Accuracy_2"
],
"Index": [
- 7804
+ 7814
],
"AltString": "",
"Slotted": 2
@@ -66413,7 +66437,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_2"
],
"Index": [
- 8017
+ 8027
],
"AltString": "",
"Slotted": 3
@@ -66480,7 +66504,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_2"
],
"Index": [
- 8108
+ 8118
],
"AltString": "",
"Slotted": 2
@@ -66491,7 +66515,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_2"
],
"Index": [
- 7954
+ 7964
],
"AltString": "",
"Slotted": 3
@@ -66516,7 +66540,7 @@
"Set_Bonus.Set_Bonus.Rectified_Reticle"
],
"Index": [
- 8266
+ 8276
],
"AltString": ""
},
@@ -66562,7 +66586,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -66573,7 +66597,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 3
@@ -66584,7 +66608,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -66595,7 +66619,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -66606,7 +66630,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 6
@@ -66676,7 +66700,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -66687,7 +66711,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -66698,7 +66722,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 4
@@ -66709,7 +66733,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -66722,9 +66746,9 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 8123,
- 8186,
- 7997
+ 8133,
+ 8196,
+ 8007
],
"AltString": "",
"Slotted": 6
@@ -66794,7 +66818,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_1"
],
"Index": [
- 8322
+ 8332
],
"AltString": "",
"Slotted": 2
@@ -66805,7 +66829,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_1"
],
"Index": [
- 8107
+ 8117
],
"AltString": "",
"Slotted": 3
@@ -66872,7 +66896,7 @@
"Set_Bonus.Set_Bonus.Accuracy_1"
],
"Index": [
- 7803
+ 7813
],
"AltString": "",
"Slotted": 2
@@ -66883,7 +66907,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_2"
],
"Index": [
- 8017
+ 8027
],
"AltString": "",
"Slotted": 3
@@ -66950,7 +66974,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -66961,7 +66985,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 3
@@ -66972,7 +66996,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_3"
],
"Index": [
- 7860
+ 7870
],
"AltString": "",
"Slotted": 4
@@ -66983,7 +67007,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 5
@@ -66994,7 +67018,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 6
@@ -67064,7 +67088,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -67075,7 +67099,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 3
@@ -67086,7 +67110,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_3"
],
"Index": [
- 7941
+ 7951
],
"AltString": "",
"Slotted": 4
@@ -67097,7 +67121,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 5
@@ -67108,7 +67132,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 6
@@ -67178,7 +67202,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67189,7 +67213,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67200,7 +67224,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -67211,7 +67235,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67222,7 +67246,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -67292,7 +67316,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67303,7 +67327,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67314,7 +67338,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -67325,7 +67349,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67336,7 +67360,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -67406,7 +67430,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 2
@@ -67417,7 +67441,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -67428,7 +67452,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -67439,7 +67463,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67450,7 +67474,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_7"
],
"Index": [
- 8169
+ 8179
],
"AltString": "",
"Slotted": 6
@@ -67520,7 +67544,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67531,7 +67555,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67542,7 +67566,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -67553,7 +67577,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67564,7 +67588,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -67634,7 +67658,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 2
@@ -67645,7 +67669,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -67656,7 +67680,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -67667,7 +67691,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 5
@@ -67678,7 +67702,7 @@
"Set_Bonus.Set_Bonus.Increased_Psionic_Def_7"
],
"Index": [
- 8169
+ 8179
],
"AltString": "",
"Slotted": 6
@@ -67748,7 +67772,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67759,7 +67783,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67770,7 +67794,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -67781,7 +67805,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67792,7 +67816,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -67862,7 +67886,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67873,7 +67897,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67884,7 +67908,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -67895,7 +67919,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -67906,7 +67930,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -67976,7 +68000,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -67987,7 +68011,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -67998,7 +68022,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -68009,7 +68033,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -68020,7 +68044,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -68090,7 +68114,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -68101,7 +68125,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -68112,7 +68136,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -68123,7 +68147,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -68134,7 +68158,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -68204,7 +68228,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -68215,7 +68239,7 @@
"Set_Bonus.Set_Bonus.Confuse_Dur_7"
],
"Index": [
- 7830
+ 7840
],
"AltString": "",
"Slotted": 3
@@ -68226,7 +68250,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -68237,7 +68261,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -68248,7 +68272,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 6
@@ -68318,7 +68342,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -68329,7 +68353,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 3
@@ -68340,7 +68364,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 4
@@ -68351,7 +68375,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -68362,7 +68386,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 6
@@ -68405,7 +68429,7 @@
"Set_Bonus.Set_Bonus.Call_to_Arms"
],
"Index": [
- 7821
+ 7831
],
"AltString": ""
}
@@ -68436,7 +68460,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_1"
],
"Index": [
- 7858
+ 7868
],
"AltString": "",
"Slotted": 2
@@ -68447,7 +68471,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 3
@@ -68458,7 +68482,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 4
@@ -68469,7 +68493,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 5
@@ -68480,7 +68504,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -68523,7 +68547,7 @@
"Set_Bonus.Set_Bonus.Expedient_Reinforcement"
],
"Index": [
- 7867
+ 7877
],
"AltString": ""
}
@@ -68554,7 +68578,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -68565,7 +68589,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 3
@@ -68576,7 +68600,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_4"
],
"Index": [
- 7928
+ 7938
],
"AltString": "",
"Slotted": 4
@@ -68587,7 +68611,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 5
@@ -68598,7 +68622,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_5"
],
"Index": [
- 7862
+ 7872
],
"AltString": "",
"Slotted": 6
@@ -68668,7 +68692,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 2
@@ -68679,7 +68703,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 3
@@ -68690,7 +68714,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_4"
],
"Index": [
- 7928
+ 7938
],
"AltString": "",
"Slotted": 4
@@ -68701,7 +68725,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 5
@@ -68712,7 +68736,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_5"
],
"Index": [
- 7862
+ 7872
],
"AltString": "",
"Slotted": 6
@@ -68782,7 +68806,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_1"
],
"Index": [
- 8184
+ 8194
],
"AltString": "",
"Slotted": 2
@@ -68793,7 +68817,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 3
@@ -68818,7 +68842,7 @@
"Set_Bonus.Set_Bonus.Blessing_of_the_Zephyr"
],
"Index": [
- 7819
+ 7829
],
"AltString": ""
},
@@ -68864,7 +68888,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 2
@@ -68875,7 +68899,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_5"
],
"Index": [
- 8132
+ 8142
],
"AltString": "",
"Slotted": 3
@@ -68900,7 +68924,7 @@
"Set_Bonus.Set_Bonus.Winters_Gift"
],
"Index": [
- 8332
+ 8342
],
"AltString": ""
},
@@ -68946,7 +68970,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -68957,7 +68981,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 3
@@ -68968,7 +68992,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_3"
],
"Index": [
- 7997
+ 8007
],
"AltString": "",
"Slotted": 4
@@ -68979,7 +69003,7 @@
"Set_Bonus.Set_Bonus.Accuracy_5"
],
"Index": [
- 7807
+ 7817
],
"AltString": "",
"Slotted": 5
@@ -68990,7 +69014,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 6
@@ -69060,7 +69084,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -69071,7 +69095,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 3
@@ -69082,7 +69106,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -69093,7 +69117,7 @@
"Set_Bonus.Set_Bonus.Accuracy_5"
],
"Index": [
- 7807
+ 7817
],
"AltString": "",
"Slotted": 5
@@ -69104,7 +69128,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_5"
],
"Index": [
- 8252
+ 8262
],
"AltString": "",
"Slotted": 6
@@ -69174,7 +69198,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 2
@@ -69185,7 +69209,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 3
@@ -69196,7 +69220,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 4
@@ -69207,7 +69231,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 5
@@ -69218,7 +69242,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 6
@@ -69288,7 +69312,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_3"
],
"Index": [
- 8130
+ 8140
],
"AltString": "",
"Slotted": 2
@@ -69299,7 +69323,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 3
@@ -69310,7 +69334,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -69321,7 +69345,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_5"
],
"Index": [
- 8111
+ 8121
],
"AltString": "",
"Slotted": 5
@@ -69332,7 +69356,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 6
@@ -69402,7 +69426,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -69413,7 +69437,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 7531
+ 7541
],
"AltString": "",
"PvMode": 2,
@@ -69425,7 +69449,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_2"
],
"Index": [
- 8087
+ 8097
],
"AltString": "",
"Slotted": 3
@@ -69436,7 +69460,7 @@
"Set_Bonus.PVP_Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7375
+ 7385
],
"AltString": "",
"PvMode": 2,
@@ -69448,7 +69472,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -69459,7 +69483,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Lethal_Smash_Melee_Def_4"
],
"Index": [
- 7615
+ 7625
],
"AltString": "",
"PvMode": 2,
@@ -69471,7 +69495,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 5
@@ -69482,7 +69506,7 @@
"Set_Bonus.PVP_Set_Bonus.Repel_Resist_4"
],
"Index": [
- 7760
+ 7770
],
"AltString": "",
"PvMode": 2,
@@ -69494,7 +69518,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 6
@@ -69505,7 +69529,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -69576,7 +69600,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7885
+ 7895
],
"AltString": "",
"Slotted": 2
@@ -69587,7 +69611,7 @@
"Set_Bonus.PVP_Set_Bonus.Slow_Resist_3"
],
"Index": [
- 7778
+ 7788
],
"AltString": "",
"PvMode": 2,
@@ -69599,7 +69623,7 @@
"Set_Bonus.Set_Bonus.Knockback_Protection_2"
],
"Index": [
- 8241
+ 8251
],
"AltString": "",
"Slotted": 3
@@ -69610,7 +69634,7 @@
"Set_Bonus.PVP_Set_Bonus.Repel_Resist_3"
],
"Index": [
- 7759
+ 7769
],
"AltString": "",
"PvMode": 2,
@@ -69622,7 +69646,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -69633,7 +69657,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Fire_Cold_AoE_Def_4"
],
"Index": [
- 7559
+ 7569
],
"AltString": "",
"PvMode": 2,
@@ -69645,7 +69669,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 5
@@ -69656,7 +69680,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Health_5"
],
"Index": [
- 7595
+ 7605
],
"AltString": "",
"PvMode": 2,
@@ -69668,7 +69692,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 6
@@ -69679,7 +69703,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -69750,7 +69774,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -69761,7 +69785,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Range_2"
],
"Index": [
- 7697
+ 7707
],
"AltString": "",
"PvMode": 2,
@@ -69773,7 +69797,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 3
@@ -69784,7 +69808,7 @@
"Set_Bonus.PVP_Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 7749
+ 7759
],
"AltString": "",
"PvMode": 2,
@@ -69796,7 +69820,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -69807,7 +69831,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Energy_Neg_Ranged_Def_4"
],
"Index": [
- 7545
+ 7555
],
"AltString": "",
"PvMode": 2,
@@ -69819,7 +69843,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_3"
],
"Index": [
- 8286
+ 8296
],
"AltString": "",
"Slotted": 5
@@ -69830,7 +69854,7 @@
"Set_Bonus.PVP_Set_Bonus.Fire_Cold_Mez_Res_4"
],
"Index": [
- 7398
+ 7408
],
"AltString": "",
"PvMode": 2,
@@ -69842,7 +69866,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 6
@@ -69853,7 +69877,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -69924,7 +69948,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 2
@@ -69935,7 +69959,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7454
+ 7464
],
"AltString": "",
"PvMode": 2,
@@ -69947,7 +69971,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 3
@@ -69958,7 +69982,7 @@
"Set_Bonus.PVP_Set_Bonus.Repel_Resist_3"
],
"Index": [
- 7759
+ 7769
],
"AltString": "",
"PvMode": 2,
@@ -69970,7 +69994,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_5"
],
"Index": [
- 7862
+ 7872
],
"AltString": "",
"Slotted": 4
@@ -69981,7 +70005,7 @@
"Set_Bonus.PVP_Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 7751
+ 7761
],
"AltString": "",
"PvMode": 2,
@@ -69993,7 +70017,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 5
@@ -70004,7 +70028,7 @@
"Set_Bonus.PVP_Set_Bonus.Slow_Resist_3"
],
"Index": [
- 7778
+ 7788
],
"AltString": "",
"PvMode": 2,
@@ -70016,7 +70040,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 6
@@ -70027,7 +70051,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -70071,7 +70095,7 @@
"Set_Bonus.Set_Bonus.Shield_Wall_Res"
],
"Index": [
- 8267
+ 8277
],
"AltString": ""
}
@@ -70102,7 +70126,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -70113,7 +70137,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 7531
+ 7541
],
"AltString": "",
"PvMode": 2,
@@ -70125,7 +70149,7 @@
"Set_Bonus.Set_Bonus.Knockback_Protection_2"
],
"Index": [
- 8241
+ 8251
],
"AltString": "",
"Slotted": 3
@@ -70136,7 +70160,7 @@
"Set_Bonus.PVP_Set_Bonus.Repel_Resist_4"
],
"Index": [
- 7760
+ 7770
],
"AltString": "",
"PvMode": 2,
@@ -70148,7 +70172,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 4
@@ -70159,7 +70183,7 @@
"Set_Bonus.PVP_Set_Bonus.Lethal_Smash_Mez_Res_3"
],
"Index": [
- 7750
+ 7760
],
"AltString": "",
"PvMode": 2,
@@ -70171,7 +70195,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 5
@@ -70182,7 +70206,7 @@
"Set_Bonus.PVP_Set_Bonus.Slow_Resist_3"
],
"Index": [
- 7778
+ 7788
],
"AltString": "",
"PvMode": 2,
@@ -70194,7 +70218,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_3"
],
"Index": [
- 8186
+ 8196
],
"AltString": "",
"Slotted": 6
@@ -70205,7 +70229,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -70237,7 +70261,7 @@
"Set_Bonus.Set_Bonus.Gladiators_Armor_Def"
],
"Index": [
- 7893
+ 7903
],
"AltString": ""
},
@@ -70280,7 +70304,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -70291,7 +70315,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Range_2"
],
"Index": [
- 7697
+ 7707
],
"AltString": "",
"PvMode": 2,
@@ -70303,7 +70327,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -70314,7 +70338,7 @@
"Set_Bonus.PVP_Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 7749
+ 7759
],
"AltString": "",
"PvMode": 2,
@@ -70326,7 +70350,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -70337,7 +70361,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Energy_Neg_Ranged_Def_4"
],
"Index": [
- 7545
+ 7555
],
"AltString": "",
"PvMode": 2,
@@ -70349,7 +70373,7 @@
"Set_Bonus.Set_Bonus.Knockback_Protection_2"
],
"Index": [
- 8241
+ 8251
],
"AltString": "",
"Slotted": 5
@@ -70360,7 +70384,7 @@
"Set_Bonus.PVP_Set_Bonus.Energy_Neg_Mez_Res_5"
],
"Index": [
- 7378
+ 7388
],
"AltString": "",
"PvMode": 2,
@@ -70372,7 +70396,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 6
@@ -70383,7 +70407,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"PvMode": 2,
@@ -70454,7 +70478,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 2
@@ -70465,7 +70489,7 @@
"Set_Bonus.PVP_Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 7749
+ 7759
],
"AltString": "",
"PvMode": 2,
@@ -70477,7 +70501,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 3
@@ -70488,7 +70512,7 @@
"Set_Bonus.PVP_Set_Bonus.Repel_Resist_4"
],
"Index": [
- 7760
+ 7770
],
"AltString": "",
"PvMode": 2,
@@ -70500,7 +70524,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 4
@@ -70511,7 +70535,7 @@
"Set_Bonus.PVP_Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7397
+ 7407
],
"AltString": "",
"PvMode": 2,
@@ -70523,7 +70547,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 5
@@ -70534,7 +70558,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Range_2"
],
"Index": [
- 7697
+ 7707
],
"AltString": "",
"PvMode": 2,
@@ -70546,7 +70570,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_5"
],
"Index": [
- 7929
+ 7939
],
"AltString": "",
"Slotted": 6
@@ -70557,7 +70581,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 7629
+ 7639
],
"AltString": "",
"PvMode": 2,
@@ -70628,7 +70652,7 @@
"Set_Bonus.Set_Bonus.Hold_Dur_4"
],
"Index": [
- 7898
+ 7908
],
"AltString": "",
"Slotted": 2
@@ -70639,7 +70663,7 @@
"Set_Bonus.PVP_Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7396
+ 7406
],
"AltString": "",
"PvMode": 2,
@@ -70651,7 +70675,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 3
@@ -70662,7 +70686,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Range_3"
],
"Index": [
- 7698
+ 7708
],
"AltString": "",
"PvMode": 2,
@@ -70674,7 +70698,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -70685,7 +70709,7 @@
"Set_Bonus.PVP_Set_Bonus.Slow_Resist_3"
],
"Index": [
- 7778
+ 7788
],
"AltString": "",
"PvMode": 2,
@@ -70697,7 +70721,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 5
@@ -70708,7 +70732,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Health_5"
],
"Index": [
- 7595
+ 7605
],
"AltString": "",
"PvMode": 2,
@@ -70720,7 +70744,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_4"
],
"Index": [
- 7998
+ 8008
],
"AltString": "",
"Slotted": 6
@@ -70731,7 +70755,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7455
+ 7465
],
"AltString": "",
"PvMode": 2,
@@ -70802,7 +70826,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 2
@@ -70813,7 +70837,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -70824,7 +70848,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -70835,7 +70859,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -70846,7 +70870,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_6"
],
"Index": [
- 8327
+ 8337
],
"AltString": "",
"Slotted": 6
@@ -70916,7 +70940,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 2
@@ -70927,7 +70951,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_2"
],
"Index": [
- 8192
+ 8202
],
"AltString": "",
"Slotted": 3
@@ -70938,7 +70962,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -70949,7 +70973,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -70960,7 +70984,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -71030,7 +71054,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -71041,7 +71065,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_3"
],
"Index": [
- 8109
+ 8119
],
"AltString": "",
"Slotted": 3
@@ -71052,7 +71076,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -71063,7 +71087,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -71074,7 +71098,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 6
@@ -71117,7 +71141,7 @@
"Set_Bonus.Set_Bonus.Brutes_Fury"
],
"Index": [
- 7820
+ 7830
],
"AltString": ""
}
@@ -71148,7 +71172,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 2
@@ -71164,12 +71188,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_5"
],
"Index": [
- 7913,
- 8274,
- 7872,
- 7828,
- 7899,
- 8299
+ 7923,
+ 8284,
+ 7882,
+ 7838,
+ 7909,
+ 8309
],
"AltString": "",
"Slotted": 3
@@ -71180,7 +71204,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -71191,7 +71215,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -71202,7 +71226,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -71272,7 +71296,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -71283,7 +71307,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_2"
],
"Index": [
- 8192
+ 8202
],
"AltString": "",
"Slotted": 3
@@ -71294,7 +71318,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -71305,7 +71329,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 5
@@ -71316,7 +71340,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -71386,7 +71410,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -71397,7 +71421,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_2"
],
"Index": [
- 8192
+ 8202
],
"AltString": "",
"Slotted": 3
@@ -71408,7 +71432,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_5"
],
"Index": [
- 7929
+ 7939
],
"AltString": "",
"Slotted": 4
@@ -71419,7 +71443,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_5"
],
"Index": [
- 8188
+ 8198
],
"AltString": "",
"Slotted": 5
@@ -71430,7 +71454,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -71500,7 +71524,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 2
@@ -71516,12 +71540,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_5"
],
"Index": [
- 7913,
- 8274,
- 7872,
- 7828,
- 7899,
- 8299
+ 7923,
+ 8284,
+ 7882,
+ 7838,
+ 7909,
+ 8309
],
"AltString": "",
"Slotted": 3
@@ -71532,7 +71556,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 4
@@ -71543,7 +71567,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -71554,7 +71578,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 6
@@ -71624,7 +71648,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -71635,7 +71659,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -71646,7 +71670,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 4
@@ -71657,7 +71681,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 5
@@ -71668,7 +71692,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 6
@@ -71711,7 +71735,7 @@
"Set_Bonus.Set_Bonus.Command_of_the_Mastermind"
],
"Index": [
- 7823
+ 7833
],
"AltString": ""
}
@@ -71742,7 +71766,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 2
@@ -71753,7 +71777,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_3"
],
"Index": [
- 8109
+ 8119
],
"AltString": "",
"Slotted": 3
@@ -71764,7 +71788,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -71775,7 +71799,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -71786,7 +71810,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 6
@@ -71829,7 +71853,7 @@
"Set_Bonus.Set_Bonus.Small_Critical_Hit_Bonus"
],
"Index": [
- 8289
+ 8299
],
"AltString": ""
}
@@ -71860,7 +71884,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 2
@@ -71871,7 +71895,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_3"
],
"Index": [
- 8109
+ 8119
],
"AltString": "",
"Slotted": 3
@@ -71882,7 +71906,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 4
@@ -71893,7 +71917,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -71904,7 +71928,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 6
@@ -71974,7 +71998,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -71985,7 +72009,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -71996,7 +72020,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 4
@@ -72007,7 +72031,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_5"
],
"Index": [
- 8326
+ 8336
],
"AltString": "",
"Slotted": 5
@@ -72018,7 +72042,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 6
@@ -72088,7 +72112,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 2
@@ -72099,7 +72123,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_4"
],
"Index": [
- 8251
+ 8261
],
"AltString": "",
"Slotted": 3
@@ -72110,7 +72134,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -72121,7 +72145,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 5
@@ -72132,7 +72156,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_6"
],
"Index": [
- 8327
+ 8337
],
"AltString": "",
"Slotted": 6
@@ -72175,7 +72199,7 @@
"Set_Bonus.Set_Bonus.Kheldians_Grace"
],
"Index": [
- 8239
+ 8249
],
"AltString": ""
}
@@ -72206,7 +72230,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 2
@@ -72217,7 +72241,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -72228,7 +72252,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -72239,7 +72263,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -72250,7 +72274,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -72320,7 +72344,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 2
@@ -72331,7 +72355,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_3"
],
"Index": [
- 8193
+ 8203
],
"AltString": "",
"Slotted": 3
@@ -72342,7 +72366,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -72353,7 +72377,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -72364,7 +72388,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 6
@@ -72434,7 +72458,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 2
@@ -72445,7 +72469,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_7"
],
"Index": [
- 8113
+ 8123
],
"AltString": "",
"Slotted": 3
@@ -72456,7 +72480,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -72467,7 +72491,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -72478,7 +72502,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 6
@@ -72521,7 +72545,7 @@
"Set_Bonus.Set_Bonus.Superior_Brutes_Fury"
],
"Index": [
- 8311
+ 8321
],
"AltString": ""
}
@@ -72552,7 +72576,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -72568,12 +72592,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_7"
],
"Index": [
- 7915,
- 8276,
- 7874,
- 7830,
- 7901,
- 8301
+ 7925,
+ 8286,
+ 7884,
+ 7840,
+ 7911,
+ 8311
],
"AltString": "",
"Slotted": 3
@@ -72584,7 +72608,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -72595,7 +72619,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -72606,7 +72630,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 6
@@ -72676,7 +72700,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 2
@@ -72687,7 +72711,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_3"
],
"Index": [
- 8193
+ 8203
],
"AltString": "",
"Slotted": 3
@@ -72698,7 +72722,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -72709,7 +72733,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 5
@@ -72720,7 +72744,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 6
@@ -72790,7 +72814,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 2
@@ -72801,7 +72825,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_3"
],
"Index": [
- 8193
+ 8203
],
"AltString": "",
"Slotted": 3
@@ -72812,7 +72836,7 @@
"Set_Bonus.Set_Bonus.Improved_Heal_7"
],
"Index": [
- 7931
+ 7941
],
"AltString": "",
"Slotted": 4
@@ -72823,7 +72847,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 5
@@ -72834,7 +72858,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 6
@@ -72904,7 +72928,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -72920,12 +72944,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_7"
],
"Index": [
- 7915,
- 8276,
- 7874,
- 7830,
- 7901,
- 8301
+ 7925,
+ 8286,
+ 7884,
+ 7840,
+ 7911,
+ 8311
],
"AltString": "",
"Slotted": 3
@@ -72936,7 +72960,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -72947,7 +72971,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -72958,7 +72982,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 6
@@ -73028,7 +73052,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 2
@@ -73039,7 +73063,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 3
@@ -73050,7 +73074,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -73061,7 +73085,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -73072,7 +73096,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 6
@@ -73115,7 +73139,7 @@
"Set_Bonus.Set_Bonus.Superior_Kheldians_Grace"
],
"Index": [
- 8317
+ 8327
],
"AltString": ""
}
@@ -73146,7 +73170,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -73157,7 +73181,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -73168,7 +73192,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 4
@@ -73179,7 +73203,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 5
@@ -73190,7 +73214,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 6
@@ -73233,7 +73257,7 @@
"Set_Bonus.Set_Bonus.Superior_Command_of_the_Mastermind"
],
"Index": [
- 8312
+ 8322
],
"AltString": ""
}
@@ -73264,7 +73288,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 2
@@ -73275,7 +73299,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_7"
],
"Index": [
- 8113
+ 8123
],
"AltString": "",
"Slotted": 3
@@ -73286,7 +73310,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -73297,7 +73321,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -73308,7 +73332,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 6
@@ -73351,7 +73375,7 @@
"Set_Bonus.Set_Bonus.Large_Critical_Hit_Bonus"
],
"Index": [
- 8247
+ 8257
],
"AltString": ""
}
@@ -73382,7 +73406,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 2
@@ -73393,7 +73417,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_7"
],
"Index": [
- 8113
+ 8123
],
"AltString": "",
"Slotted": 3
@@ -73404,7 +73428,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -73415,7 +73439,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -73426,7 +73450,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 6
@@ -73496,7 +73520,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -73507,7 +73531,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -73518,7 +73542,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 4
@@ -73529,7 +73553,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_7"
],
"Index": [
- 8328
+ 8338
],
"AltString": "",
"Slotted": 5
@@ -73540,7 +73564,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 6
@@ -73610,7 +73634,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 2
@@ -73621,7 +73645,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 3
@@ -73632,7 +73656,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_3"
],
"Index": [
- 8088
+ 8098
],
"AltString": "",
"Slotted": 4
@@ -73643,7 +73667,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_3"
],
"Index": [
- 8039
+ 8049
],
"AltString": "",
"Slotted": 5
@@ -73654,7 +73678,7 @@
"Set_Bonus.Set_Bonus.Knockback_Protection_3"
],
"Index": [
- 8242
+ 8252
],
"AltString": "",
"Slotted": 6
@@ -73723,7 +73747,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_2"
],
"Index": [
- 8024
+ 8034
],
"AltString": "",
"Slotted": 2
@@ -73734,7 +73758,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 3
@@ -73745,7 +73769,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -73756,7 +73780,7 @@
"Set_Bonus.Set_Bonus.Endurance_Discount_4"
],
"Index": [
- 7854
+ 7864
],
"AltString": "",
"Slotted": 5
@@ -73767,7 +73791,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 6
@@ -73837,7 +73861,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_2"
],
"Index": [
- 8249
+ 8259
],
"AltString": "",
"Slotted": 2
@@ -73848,7 +73872,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -73859,7 +73883,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 4
@@ -73870,7 +73894,7 @@
"Set_Bonus.Set_Bonus.Endurance_Discount_5"
],
"Index": [
- 7855
+ 7865
],
"AltString": "",
"Slotted": 5
@@ -73881,7 +73905,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -73924,7 +73948,7 @@
"Set_Bonus.Set_Bonus.Preventive_Medicine"
],
"Index": [
- 8263
+ 8273
],
"AltString": ""
}
@@ -73955,7 +73979,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_1"
],
"Index": [
- 8248
+ 8258
],
"AltString": "",
"Slotted": 2
@@ -73966,7 +73990,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -73977,7 +74001,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 4
@@ -73988,7 +74012,7 @@
"Set_Bonus.Set_Bonus.Endurance_Discount_5"
],
"Index": [
- 7855
+ 7865
],
"AltString": "",
"Slotted": 5
@@ -73999,7 +74023,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -74042,7 +74066,7 @@
"Set_Bonus.Set_Bonus.Reactive_Defenses"
],
"Index": [
- 8265
+ 8275
],
"AltString": ""
}
@@ -74073,7 +74097,7 @@
"Set_Bonus.Set_Bonus.Endurance_Discount_3"
],
"Index": [
- 7853
+ 7863
],
"AltString": "",
"Slotted": 2
@@ -74084,7 +74108,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_2"
],
"Index": [
- 7859
+ 7869
],
"AltString": "",
"Slotted": 3
@@ -74095,7 +74119,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 4
@@ -74106,7 +74130,7 @@
"Set_Bonus.Set_Bonus.Toxic_Psi_Mez_Res_4"
],
"Index": [
- 8325
+ 8335
],
"AltString": "",
"Slotted": 5
@@ -74117,7 +74141,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_6"
],
"Index": [
- 7887
+ 7897
],
"AltString": "",
"Slotted": 6
@@ -74160,7 +74184,7 @@
"Set_Bonus.Set_Bonus.Unbreakable_Guard"
],
"Index": [
- 8329
+ 8339
],
"AltString": ""
}
@@ -74191,7 +74215,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -74202,7 +74226,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 3
@@ -74213,7 +74237,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 4
@@ -74224,7 +74248,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 5
@@ -74235,7 +74259,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_5"
],
"Index": [
- 8041
+ 8051
],
"AltString": "",
"Slotted": 6
@@ -74305,7 +74329,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -74316,7 +74340,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 3
@@ -74327,7 +74351,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 4
@@ -74338,7 +74362,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -74349,7 +74373,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 6
@@ -74419,7 +74443,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_3"
],
"Index": [
- 8018
+ 8028
],
"AltString": "",
"Slotted": 2
@@ -74430,7 +74454,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 3
@@ -74441,7 +74465,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7950
+ 7960
],
"AltString": "",
"Slotted": 4
@@ -74452,7 +74476,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_5"
],
"Index": [
- 8125
+ 8135
],
"AltString": "",
"Slotted": 5
@@ -74465,9 +74489,9 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_5"
],
"Index": [
- 7862,
- 8252,
- 7886
+ 7872,
+ 8262,
+ 7896
],
"AltString": "",
"Slotted": 6
@@ -74537,7 +74561,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -74548,7 +74572,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 3
@@ -74559,7 +74583,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 4
@@ -74570,7 +74594,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 5
@@ -74583,9 +74607,9 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7864,
- 8254,
- 7888
+ 7874,
+ 8264,
+ 7898
],
"AltString": "",
"Slotted": 6
@@ -74660,12 +74684,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_3"
],
"Index": [
- 7911,
- 8272,
- 7870,
- 7826,
- 7897,
- 8297
+ 7921,
+ 8282,
+ 7880,
+ 7836,
+ 7907,
+ 8307
],
"AltString": "",
"Slotted": 2
@@ -74676,7 +74700,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -74687,7 +74711,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_5"
],
"Index": [
- 8252
+ 8262
],
"AltString": "",
"Slotted": 4
@@ -74698,7 +74722,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7950
+ 7960
],
"AltString": "",
"Slotted": 5
@@ -74709,7 +74733,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_5"
],
"Index": [
- 8041
+ 8051
],
"AltString": "",
"Slotted": 6
@@ -74784,12 +74808,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_7"
],
"Index": [
- 7915,
- 8276,
- 7874,
- 7830,
- 7901,
- 8301
+ 7925,
+ 8286,
+ 7884,
+ 7840,
+ 7911,
+ 8311
],
"AltString": "",
"Slotted": 2
@@ -74800,7 +74824,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -74811,7 +74835,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 4
@@ -74822,7 +74846,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 5
@@ -74833,7 +74857,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 6
@@ -74903,7 +74927,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 2
@@ -74914,7 +74938,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 3
@@ -74925,7 +74949,7 @@
"Set_Bonus.Set_Bonus.Accuracy_5"
],
"Index": [
- 7807
+ 7817
],
"AltString": "",
"Slotted": 4
@@ -74936,7 +74960,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7950
+ 7960
],
"AltString": "",
"Slotted": 5
@@ -74947,7 +74971,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 6
@@ -75017,7 +75041,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 2
@@ -75028,7 +75052,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 3
@@ -75039,7 +75063,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -75050,7 +75074,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 5
@@ -75061,7 +75085,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_7"
],
"Index": [
- 8001
+ 8011
],
"AltString": "",
"Slotted": 6
@@ -75131,7 +75155,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 2
@@ -75142,7 +75166,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 3
@@ -75153,7 +75177,7 @@
"Set_Bonus.Set_Bonus.Accuracy_5"
],
"Index": [
- 7807
+ 7817
],
"AltString": "",
"Slotted": 4
@@ -75164,7 +75188,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 5
@@ -75175,7 +75199,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 6
@@ -75245,7 +75269,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 2
@@ -75256,7 +75280,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 3
@@ -75267,7 +75291,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 4
@@ -75278,7 +75302,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 5
@@ -75289,7 +75313,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_7"
],
"Index": [
- 8001
+ 8011
],
"AltString": "",
"Slotted": 6
@@ -75364,12 +75388,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_5"
],
"Index": [
- 7913,
- 8274,
- 7872,
- 7828,
- 7899,
- 8299
+ 7923,
+ 8284,
+ 7882,
+ 7838,
+ 7909,
+ 8309
],
"AltString": "",
"Slotted": 2
@@ -75380,7 +75404,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 3
@@ -75391,7 +75415,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_6"
],
"Index": [
- 8253
+ 8263
],
"AltString": "",
"Slotted": 4
@@ -75402,7 +75426,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7950
+ 7960
],
"AltString": "",
"Slotted": 5
@@ -75413,7 +75437,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_5"
],
"Index": [
- 8041
+ 8051
],
"AltString": "",
"Slotted": 6
@@ -75488,12 +75512,12 @@
"Set_Bonus.Set_Bonus.Stun_Dur_7"
],
"Index": [
- 7915,
- 8276,
- 7874,
- 7830,
- 7901,
- 8301
+ 7925,
+ 8286,
+ 7884,
+ 7840,
+ 7911,
+ 8311
],
"AltString": "",
"Slotted": 2
@@ -75504,7 +75528,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -75515,7 +75539,7 @@
"Set_Bonus.Set_Bonus.Lethal_Smash_Mez_Res_7"
],
"Index": [
- 8254
+ 8264
],
"AltString": "",
"Slotted": 4
@@ -75526,7 +75550,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 5
@@ -75537,7 +75561,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 6
@@ -75607,7 +75631,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_4"
],
"Index": [
- 8089
+ 8099
],
"AltString": "",
"Slotted": 2
@@ -75618,7 +75642,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 3
@@ -75629,7 +75653,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_4"
],
"Index": [
- 8187
+ 8197
],
"AltString": "",
"Slotted": 4
@@ -75640,7 +75664,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_5"
],
"Index": [
- 7957
+ 7967
],
"AltString": "",
"Slotted": 5
@@ -75651,7 +75675,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_5"
],
"Index": [
- 8125
+ 8135
],
"AltString": "",
"Slotted": 6
@@ -75721,7 +75745,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 2
@@ -75732,7 +75756,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 3
@@ -75743,7 +75767,7 @@
"Set_Bonus.Set_Bonus.Increased_Ranged_Energy_Neg_Def_7"
],
"Index": [
- 8190
+ 8200
],
"AltString": "",
"Slotted": 4
@@ -75754,7 +75778,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 5
@@ -75765,7 +75789,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 6
@@ -75835,7 +75859,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_4"
],
"Index": [
- 7942
+ 7952
],
"AltString": "",
"Slotted": 2
@@ -75846,7 +75870,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 3
@@ -75857,7 +75881,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 4
@@ -75868,7 +75892,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_5"
],
"Index": [
- 7950
+ 7960
],
"AltString": "",
"Slotted": 5
@@ -75881,9 +75905,9 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_5"
],
"Index": [
- 7862,
- 8252,
- 7886
+ 7872,
+ 8262,
+ 7896
],
"AltString": "",
"Slotted": 6
@@ -75926,7 +75950,7 @@
"Set_Bonus.Set_Bonus.Mark_of_Supremacy"
],
"Index": [
- 8256
+ 8266
],
"AltString": ""
}
@@ -75957,7 +75981,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 2
@@ -75968,7 +75992,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 3
@@ -75979,7 +76003,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 4
@@ -75990,7 +76014,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 5
@@ -76003,9 +76027,9 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7864,
- 8254,
- 7888
+ 7874,
+ 8264,
+ 7898
],
"AltString": "",
"Slotted": 6
@@ -76048,7 +76072,7 @@
"Set_Bonus.Set_Bonus.Superior_Mark_of_Supremacy"
],
"Index": [
- 8318
+ 8328
],
"AltString": ""
}
@@ -76079,7 +76103,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -76090,7 +76114,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 3
@@ -76101,7 +76125,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 4
@@ -76112,7 +76136,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_6"
],
"Index": [
- 8021
+ 8031
],
"AltString": "",
"Slotted": 5
@@ -76123,7 +76147,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -76193,7 +76217,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -76204,7 +76228,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 3
@@ -76215,7 +76239,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_7"
],
"Index": [
- 8001
+ 8011
],
"AltString": "",
"Slotted": 4
@@ -76226,7 +76250,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 5
@@ -76237,7 +76261,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 6
@@ -76307,7 +76331,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_4"
],
"Index": [
- 8019
+ 8029
],
"AltString": "",
"Slotted": 2
@@ -76318,7 +76342,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 3
@@ -76329,7 +76353,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 4
@@ -76340,7 +76364,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_6"
],
"Index": [
- 7958
+ 7968
],
"AltString": "",
"Slotted": 5
@@ -76351,7 +76375,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_6"
],
"Index": [
- 8028
+ 8038
],
"AltString": "",
"Slotted": 6
@@ -76394,7 +76418,7 @@
"Set_Bonus.Set_Bonus.Spiders_Bite"
],
"Index": [
- 8291
+ 8301
],
"AltString": ""
}
@@ -76425,7 +76449,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 2
@@ -76436,7 +76460,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 3
@@ -76447,7 +76471,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 4
@@ -76458,7 +76482,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 5
@@ -76469,7 +76493,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 6
@@ -76512,7 +76536,7 @@
"Set_Bonus.Set_Bonus.Superior_Spiders_Bite"
],
"Index": [
- 8320
+ 8330
],
"AltString": ""
}
@@ -76543,7 +76567,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 2
@@ -76554,7 +76578,7 @@
"Set_Bonus.Set_Bonus.Accuracy_4"
],
"Index": [
- 7806
+ 7816
],
"AltString": "",
"Slotted": 3
@@ -76565,7 +76589,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_5"
],
"Index": [
- 7999
+ 8009
],
"AltString": "",
"Slotted": 4
@@ -76576,7 +76600,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_6"
],
"Index": [
- 8021
+ 8031
],
"AltString": "",
"Slotted": 5
@@ -76587,7 +76611,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -76657,7 +76681,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 2
@@ -76668,7 +76692,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 3
@@ -76679,7 +76703,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_7"
],
"Index": [
- 8001
+ 8011
],
"AltString": "",
"Slotted": 4
@@ -76690,7 +76714,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 5
@@ -76701,7 +76725,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 6
@@ -76771,7 +76795,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_3"
],
"Index": [
- 8025
+ 8035
],
"AltString": "",
"Slotted": 2
@@ -76782,7 +76806,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_4"
],
"Index": [
- 7861
+ 7871
],
"AltString": "",
"Slotted": 3
@@ -76793,7 +76817,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_4"
],
"Index": [
- 7956
+ 7966
],
"AltString": "",
"Slotted": 4
@@ -76804,7 +76828,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 5
@@ -76816,8 +76840,8 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_6"
],
"Index": [
- 8253,
- 7887
+ 8263,
+ 7897
],
"AltString": "",
"Slotted": 6
@@ -76887,7 +76911,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 2
@@ -76898,7 +76922,7 @@
"Set_Bonus.Set_Bonus.Energy_Neg_Mez_Res_7"
],
"Index": [
- 7864
+ 7874
],
"AltString": "",
"Slotted": 3
@@ -76909,7 +76933,7 @@
"Set_Bonus.Set_Bonus.Improved_Regeneration_7"
],
"Index": [
- 7959
+ 7969
],
"AltString": "",
"Slotted": 4
@@ -76920,7 +76944,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 5
@@ -76932,8 +76956,8 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 8254,
- 7888
+ 8264,
+ 7898
],
"AltString": "",
"Slotted": 6
@@ -77003,7 +77027,7 @@
"Set_Bonus.PVP_Set_Bonus.Slow_Resist_3"
],
"Index": [
- 7778
+ 7788
],
"AltString": "",
"Slotted": 2
@@ -77014,7 +77038,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7453
+ 7463
],
"AltString": "",
"Slotted": 3
@@ -77025,7 +77049,7 @@
"Set_Bonus.PVP_Set_Bonus.Fire_Cold_Mez_Res_5"
],
"Index": [
- 7399
+ 7409
],
"AltString": "",
"Slotted": 4
@@ -77036,7 +77060,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Lethal_Smash_Melee_Def_2"
],
"Index": [
- 7613
+ 7623
],
"AltString": "",
"Slotted": 5
@@ -77047,7 +77071,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Fire_Cold_AoE_Def_5"
],
"Index": [
- 7560
+ 7570
],
"AltString": "",
"Slotted": 6
@@ -77117,7 +77141,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_5"
],
"Index": [
- 8288
+ 8298
],
"AltString": "",
"Slotted": 2
@@ -77128,7 +77152,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 3
@@ -77139,7 +77163,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 4
@@ -77150,7 +77174,7 @@
"Set_Bonus.Set_Bonus.Increased_Lethal_Smash_Melee_Def_7"
],
"Index": [
- 8113
+ 8123
],
"AltString": "",
"Slotted": 5
@@ -77161,7 +77185,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_7"
],
"Index": [
- 8057
+ 8067
],
"AltString": "",
"Slotted": 6
@@ -77231,7 +77255,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 2
@@ -77242,7 +77266,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_3"
],
"Index": [
- 8286
+ 8296
],
"AltString": "",
"Slotted": 3
@@ -77253,7 +77277,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 4
@@ -77264,7 +77288,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_2"
],
"Index": [
- 8038
+ 8048
],
"AltString": "",
"Slotted": 5
@@ -77275,7 +77299,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_5"
],
"Index": [
- 8055
+ 8065
],
"AltString": "",
"Slotted": 6
@@ -77345,7 +77369,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 2
@@ -77356,7 +77380,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_5"
],
"Index": [
- 8288
+ 8298
],
"AltString": "",
"Slotted": 3
@@ -77367,7 +77391,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 4
@@ -77378,7 +77402,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 5
@@ -77389,7 +77413,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_7"
],
"Index": [
- 8057
+ 8067
],
"AltString": "",
"Slotted": 6
@@ -77459,7 +77483,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_3"
],
"Index": [
- 8286
+ 8296
],
"AltString": "",
"Slotted": 2
@@ -77470,7 +77494,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 3
@@ -77481,7 +77505,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_4"
],
"Index": [
- 7949
+ 7959
],
"AltString": "",
"Slotted": 4
@@ -77492,7 +77516,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_2"
],
"Index": [
- 7996
+ 8006
],
"AltString": "",
"Slotted": 5
@@ -77503,7 +77527,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_5"
],
"Index": [
- 8055
+ 8065
],
"AltString": "",
"Slotted": 6
@@ -77573,7 +77597,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_5"
],
"Index": [
- 8288
+ 8298
],
"AltString": "",
"Slotted": 2
@@ -77584,7 +77608,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -77595,7 +77619,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 4
@@ -77606,7 +77630,7 @@
"Set_Bonus.Set_Bonus.Increased_AoE_Fire_Cold_Def_7"
],
"Index": [
- 8001
+ 8011
],
"AltString": "",
"Slotted": 5
@@ -77617,7 +77641,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_7"
],
"Index": [
- 8057
+ 8067
],
"AltString": "",
"Slotted": 6
@@ -77687,7 +77711,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_3"
],
"Index": [
- 8286
+ 8296
],
"AltString": "",
"Slotted": 2
@@ -77698,7 +77722,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_3"
],
"Index": [
- 7884
+ 7894
],
"AltString": "",
"Slotted": 3
@@ -77709,7 +77733,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 4
@@ -77720,7 +77744,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_2"
],
"Index": [
- 8122
+ 8132
],
"AltString": "",
"Slotted": 5
@@ -77731,7 +77755,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_5"
],
"Index": [
- 8055
+ 8065
],
"AltString": "",
"Slotted": 6
@@ -77801,7 +77825,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_5"
],
"Index": [
- 8288
+ 8298
],
"AltString": "",
"Slotted": 2
@@ -77812,7 +77836,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 3
@@ -77823,7 +77847,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 4
@@ -77834,7 +77858,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 5
@@ -77845,7 +77869,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_7"
],
"Index": [
- 8057
+ 8067
],
"AltString": "",
"Slotted": 6
@@ -77915,7 +77939,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_2"
],
"Index": [
- 7883
+ 7893
],
"AltString": "",
"Slotted": 2
@@ -77926,7 +77950,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_3"
],
"Index": [
- 8286
+ 8296
],
"AltString": "",
"Slotted": 3
@@ -77937,7 +77961,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_3"
],
"Index": [
- 7948
+ 7958
],
"AltString": "",
"Slotted": 4
@@ -77948,7 +77972,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_2"
],
"Index": [
- 8038
+ 8048
],
"AltString": "",
"Slotted": 5
@@ -77959,7 +77983,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_5"
],
"Index": [
- 8055
+ 8065
],
"AltString": "",
"Slotted": 6
@@ -78029,7 +78053,7 @@
"Set_Bonus.Set_Bonus.Fire_Cold_Mez_Res_7"
],
"Index": [
- 7888
+ 7898
],
"AltString": "",
"Slotted": 2
@@ -78040,7 +78064,7 @@
"Set_Bonus.Set_Bonus.Slow_Resist_5"
],
"Index": [
- 8288
+ 8298
],
"AltString": "",
"Slotted": 3
@@ -78051,7 +78075,7 @@
"Set_Bonus.Set_Bonus.Improved_Recovery_7"
],
"Index": [
- 7952
+ 7962
],
"AltString": "",
"Slotted": 4
@@ -78062,7 +78086,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 5
@@ -78073,7 +78097,7 @@
"Set_Bonus.Set_Bonus.Increased_Fire_Cold_AoE_Def_7"
],
"Index": [
- 8057
+ 8067
],
"AltString": "",
"Slotted": 6
@@ -78143,7 +78167,7 @@
"Set_Bonus.Set_Bonus.Accuracy_3"
],
"Index": [
- 7805
+ 7815
],
"AltString": "",
"Slotted": 2
@@ -78154,7 +78178,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_2"
],
"Index": [
- 8192
+ 8202
],
"AltString": "",
"Slotted": 3
@@ -78165,7 +78189,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_5"
],
"Index": [
- 8090
+ 8100
],
"AltString": "",
"Slotted": 4
@@ -78176,7 +78200,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_4"
],
"Index": [
- 8124
+ 8134
],
"AltString": "",
"Slotted": 5
@@ -78187,7 +78211,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_6"
],
"Index": [
- 7944
+ 7954
],
"AltString": "",
"Slotted": 6
@@ -78257,7 +78281,7 @@
"Set_Bonus.Set_Bonus.Accuracy_7"
],
"Index": [
- 7809
+ 7819
],
"AltString": "",
"Slotted": 2
@@ -78268,7 +78292,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_3"
],
"Index": [
- 8193
+ 8203
],
"AltString": "",
"Slotted": 3
@@ -78279,7 +78303,7 @@
"Set_Bonus.Set_Bonus.Increased_Health_7"
],
"Index": [
- 8092
+ 8102
],
"AltString": "",
"Slotted": 4
@@ -78290,7 +78314,7 @@
"Set_Bonus.Set_Bonus.Increased_Melee_Lethal_Smash_Def_7"
],
"Index": [
- 8127
+ 8137
],
"AltString": "",
"Slotted": 5
@@ -78301,7 +78325,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 6
@@ -78371,7 +78395,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_2"
],
"Index": [
- 8192
+ 8202
],
"AltString": "",
"Slotted": 2
@@ -78382,7 +78406,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 8026
+ 8036
],
"AltString": "",
"Slotted": 3
@@ -78393,7 +78417,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_5"
],
"Index": [
- 8020
+ 8030
],
"AltString": "",
"Slotted": 4
@@ -78404,7 +78428,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7943
+ 7953
],
"AltString": "",
"Slotted": 5
@@ -78415,7 +78439,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_5"
],
"Index": [
- 8041
+ 8051
],
"AltString": "",
"Slotted": 6
@@ -78485,7 +78509,7 @@
"Set_Bonus.Set_Bonus.Increased_Range_3"
],
"Index": [
- 8193
+ 8203
],
"AltString": "",
"Slotted": 2
@@ -78496,7 +78520,7 @@
"Set_Bonus.Set_Bonus.Increased_Endurance_7"
],
"Index": [
- 8029
+ 8039
],
"AltString": "",
"Slotted": 3
@@ -78507,7 +78531,7 @@
"Set_Bonus.Set_Bonus.Increased_Damage_7"
],
"Index": [
- 8022
+ 8032
],
"AltString": "",
"Slotted": 4
@@ -78518,7 +78542,7 @@
"Set_Bonus.Set_Bonus.Improved_Recharge_Time_7"
],
"Index": [
- 7945
+ 7955
],
"AltString": "",
"Slotted": 5
@@ -78529,7 +78553,7 @@
"Set_Bonus.Set_Bonus.Increased_Energy_Neg_Ranged_Def_7"
],
"Index": [
- 8043
+ 8053
],
"AltString": "",
"Slotted": 6
@@ -78599,7 +78623,7 @@
"Set_Bonus.Set_Bonus.Increased_Move_4"
],
"Index": [
- 8131
+ 8141
],
"AltString": "",
"Slotted": 2
@@ -78610,7 +78634,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Endurance_4"
],
"Index": [
- 7531
+ 7541
],
"AltString": "",
"Slotted": 3
@@ -78621,7 +78645,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Damage_4"
],
"Index": [
- 7524
+ 7534
],
"AltString": "",
"Slotted": 4
@@ -78632,7 +78656,7 @@
"Set_Bonus.PVP_Set_Bonus.Increased_Health_5"
],
"Index": [
- 7595
+ 7605
],
"AltString": "",
"Slotted": 5
@@ -78643,7 +78667,7 @@
"Set_Bonus.PVP_Set_Bonus.Improved_Recharge_Time_5"
],
"Index": [
- 7448
+ 7458
],
"AltString": "",
"Slotted": 6
diff --git a/Hero Designer/Data/EnhDB.mhd b/Hero Designer/Data/EnhDB.mhd
index 25ff850b..c725b7f9 100644
Binary files a/Hero Designer/Data/EnhDB.mhd and b/Hero Designer/Data/EnhDB.mhd differ
diff --git a/Hero Designer/Data/I12.json b/Hero Designer/Data/I12.json
index 1542ab33..64b52e87 100644
--- a/Hero Designer/Data/I12.json
+++ b/Hero Designer/Data/I12.json
@@ -1,10 +1,10 @@
{
"name": "Mids' Hero Designer Database MK II",
"Version": 25.0,
- "Date": "2016-05-19T03:03:12.3122507-04:00",
+ "Date": "2019-07-31T16:49:45.137603-05:00",
"Issue": 25,
"ArchetypeVersion": {
- "RevisionDate": "2014-05-01T04:01:23.5767113-04:00",
+ "RevisionDate": "2014-05-01T03:01:23.5767113-05:00",
"SourceFile": "classes.csv",
"Revision": 1
},
@@ -4069,28 +4069,28 @@
}
],
"PowersetVersion": {
- "RevisionDate": "2014-08-18T07:10:09.269-04:00",
+ "RevisionDate": "2014-08-18T06:10:09.269-05:00",
"SourceFile": "powersets.csv",
"Revision": 1
},
"Powers": {
"PowerVersion": {
- "RevisionDate": "2014-08-18T06:41:34.623-04:00",
+ "RevisionDate": "2014-08-18T05:41:34.623-05:00",
"SourceFile": "powers.csv",
"Revision": 1
},
"PowerLevelVersion": {
- "RevisionDate": "2013-05-10T08:03:20.6124566-04:00",
+ "RevisionDate": "2013-05-10T07:03:20.6124566-05:00",
"SourceFile": "powersets2.csv",
"Revision": 1
},
"PowerEffectVersion": {
- "RevisionDate": "2014-12-21T15:01:20.1582104-05:00",
+ "RevisionDate": "2014-12-21T14:01:20.1582104-06:00",
"SourceFile": "effects.csv",
"Revision": 2
},
"IOAssignmentVersion": {
- "RevisionDate": "2014-05-05T07:40:38.9213542-04:00",
+ "RevisionDate": "2014-05-05T06:40:38.9213542-05:00",
"SourceFile": "boostsets2.csv",
"Revision": 1
},
diff --git a/Hero Designer/Data/I12.mhd b/Hero Designer/Data/I12.mhd
index 2e1b134b..14d95423 100644
Binary files a/Hero Designer/Data/I12.mhd and b/Hero Designer/Data/I12.mhd differ
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_A.json
index 85b6d0b7..4d8fcdc0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Achilles_Heel_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_B.json
index c3cb521a..59452d8f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Achilles_Heel_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_C.json
index 14f72cf7..8d4dcccc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Achilles_Heel_C.json
@@ -326,7 +326,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Achilles_Heel_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_A.json
index 105da92b..e0bd2d6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_B.json
index 71bb9519..ccba0917 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_C.json
index 60995fa4..29ff5961 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_D.json
index 344e1ef4..6906abcd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_E.json
index 147657b0..70bdfd56 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_F.json
index 0df8dd3e..ce221fa1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adjusted_Targeting_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adjusted_Targeting_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_A.json
index f735c145..59fb6fce 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adrenal_Adjustment_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_B.json
index fc374337..ab3d709d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_B.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adrenal_Adjustment_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_C.json
index 7f36c552..e1b7a16d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Adrenal_Adjustment_C.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Adrenal_Adjustment_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_A.json
index e01a075e..17a7f5e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_B.json
index 544ae60b..38b936fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_C.json
index a29858b1..864fd435 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_D.json
index d874dd1d..f7c61967 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_E.json
index ab1a883e..a452bc27 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_F.json
index eb7bd1ce..c55001dd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Aegis_F.json
@@ -309,7 +309,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Aegis_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_A.json
index 2929d54d..924e72d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Air_Burst_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_B.json
index b8a15795..9e6902b5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Air_Burst_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_C.json
index d56bfcf4..d86146ce 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Air_Burst_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_D.json
index 6f6c0a81..9d0e40be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Air_Burst_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Air_Burst_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_A.json
index 0d16378f..2506563b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_B.json
index c83cc5fd..89db39e1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_C.json
index aca595ab..acdfde76 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_D.json
index ce47a4f9..7a43283c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_E.json
index 02e5e70c..aca43b0e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_F.json
index 7ef97546..494be78c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Analyze_Weakness_F.json
@@ -113,7 +113,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Analyze_Weakness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_A.json
index dcdb584d..79912c00 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_B.json
index 42354ce8..ae03c4ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_C.json
index 30e87cfb..41a90813 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_D.json
index cf73b55a..888eeee2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_E.json
index f78a02c6..01d9826f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_F.json
index 4316270a..3dc2550c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annihilation_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annihilation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_A.json
index 56f65824..f9839462 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annoyance_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_B.json
index 684ca86f..7379ac27 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annoyance_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_C.json
index c0460642..f6e586ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Annoyance_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Annoyance_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_A.json
index 3968d908..1db202e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_B.json
index af7e963a..0ab48c28 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_C.json
index ed292fb5..5bbe2e3b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_D.json
index b725105b..024ae7d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_E.json
index fd452d2f..dd196b12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_F.json
index e17ff0ab..02c4854f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ascendency_of_the_Dominator_F.json
@@ -158,7 +158,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ascendency_of_the_Dominator_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_A.json
index b22e4fae..d263915c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_B.json
index 486a7255..f3e70e63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_C.json
index 38e3589a..165f9f50 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_D.json
index 3647b2a2..30ca87bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_E.json
index 7991a45b..ec2757da 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_F.json
index 54de0791..6492f019 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Assassins_Mark_F.json
@@ -144,7 +144,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Assassins_Mark_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_A.json
index bbf0195b..eea3ece9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_B.json
index d903de3b..92acec74 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_C.json
index c80e7343..03f60812 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_D.json
index 1b8a159d..3144fbb6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_E.json
index 3aaff44b..3a8010e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_F.json
index bb1f3bcd..cae0cb84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Avalanche_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Avalanche_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_A.json
index 718f10ce..6c3890c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_A.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_B.json
index e063a79b..84db1e35 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_C.json
index da31b9d6..f82e6764 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_C.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_D.json
index 3c204795..73bc2090 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_D.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_E.json
index ef63abe5..5f4a5604 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_E.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_F.json
index d965be03..8efc3aa5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Basilisks_Gaze_F.json
@@ -110,7 +110,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Basilisks_Gaze_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_A.json
index 3228278e..a1456853 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Befuddling_Aura_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_B.json
index 5787332b..571ba5f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Befuddling_Aura_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_C.json
index e5fcc867..3ff3f50f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Befuddling_Aura_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_D.json
index 0004e2fe..701762b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Befuddling_Aura_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_E.json
index 642909ab..b49b8bab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Befuddling_Aura_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Befuddling_Aura_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_A.json
index 12b6b0d9..a8b512cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_B.json
index 65c6019d..b9151780 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_C.json
index b3b4a88b..38185668 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_D.json
index a562f3d2..fd896ac3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_E.json
index 36080e67..df84368d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_F.json
index b04aeee0..34edce0f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blasters_Wrath_F.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blasters_Wrath_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_A.json
index a22432e6..651640f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_A.json
@@ -254,7 +254,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blessing_of_the_Zephyr_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_B.json
index 8964e370..98bbd76a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_B.json
@@ -288,7 +288,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blessing_of_the_Zephyr_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_C.json
index f2fab913..ecb8526a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blessing_of_the_Zephyr_C.json
@@ -118,7 +118,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blessing_of_the_Zephyr_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_A.json
index dc05fa26..6ebfde2f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_B.json
index 61fd8904..2ff6511a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_C.json
index c02a4004..cabbb6c3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_D.json
index 80a01dd9..41f7e7ac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_E.json
index 1469bffb..df55e84f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_F.json
index e68016b6..d1036047 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blistering_Cold_F.json
@@ -188,7 +188,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blistering_Cold_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_A.json
index a86f97ca..a6eea498 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_B.json
index 7b3cd144..fd494a16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_C.json
index 4991ea38..668a2b18 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_D.json
index 1a7f5d92..40291c8e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_E.json
index d113660e..1ce7fcda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_F.json
index 080dc1c5..d307efa8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Blood_Mandate_F.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Blood_Mandate_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_A.json
index c215bfe2..2f51b9d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bonesnap_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_B.json
index 43bae013..5034f0bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bonesnap_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_C.json
index 50ef740a..b5777aa9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bonesnap_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bonesnap_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_A.json
index f63a3cc1..71102893 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_B.json
index 26665fe3..f264eaab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_C.json
index 9c6815c0..37d77369 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_D.json
index e01155ae..4ffce182 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_E.json
index 67888c27..3b9cfb63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_F.json
index e0707120..aafef0ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brilliant_Leadership_F.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brilliant_Leadership_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_A.json
index 598836c5..982c2e78 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bruising_Blow_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_B.json
index 2805a3c8..3dc33c1b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bruising_Blow_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_C.json
index 810dc6d9..4f53e259 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Bruising_Blow_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Bruising_Blow_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_A.json
index 6388af24..689578b1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_B.json
index 37c0685b..ccd2253c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_C.json
index 74f644e7..d8701af7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_D.json
index 3e659576..d83d3fd8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_E.json
index ac81849e..b435ff59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_F.json
index d5b541d2..831c13bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Brutes_Fury_F.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Brutes_Fury_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_A.json
index 24d005ce..0de9fe39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_B.json
index 07a2bc8e..677a2ed0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_C.json
index 8057c65e..0feb4252 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_D.json
index 4b9b3d8c..ed754d65 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_E.json
index 751570fd..7642cf67 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_F.json
index 5bcad5c4..ef08651d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cacophany_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cacophany_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_A.json
index 85a13771..ef8b92fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_B.json
index 62650dfb..811e9152 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_C.json
index fcfdc8f4..8c263bb8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_D.json
index 6684f272..f14614bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_E.json
index 623732f7..1d41a5a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_F.json
index e8c5bb7a..b882084e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Calibrated_Accuracy_F.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Calibrated_Accuracy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_A.json
index 3630f271..632a3b30 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_B.json
index 38965332..ea0eff1a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_C.json
index 8fe879a7..8ff75112 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_D.json
index 20cd1e51..184d7eac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_E.json
index 738cf2e9..c1257623 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_F.json
index c1d9dcbe..b4f90c84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_of_the_Sandman_F.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_of_the_Sandman_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_A.json
index 10e9a902..81d0ac27 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_B.json
index acec5fc4..361dc31e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_C.json
index 5b1bbff8..e1da9d1e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_D.json
index 7cafaccd..781e0edb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_E.json
index b1e8049b..e5c130e5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_F.json
index 2347d134..f07c241e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Call_to_Arms_F.json
@@ -111,7 +111,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Call_to_Arms_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_A.json
index 61c3c3a8..6c61fbbc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Celerity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_B.json
index 80901831..57678080 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Celerity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_C.json
index 9160c824..6345405b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Celerity_C.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Celerity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_A.json
index 87f6644b..c69fcd41 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cleaving_Blow_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_B.json
index 53492cb8..381b3b10 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cleaving_Blow_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_C.json
index 4d957b7d..2480eb24 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cleaving_Blow_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_D.json
index b0ce75a7..6fcea653 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cleaving_Blow_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cleaving_Blow_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_A.json
index 60d3388f..6938f0a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_B.json
index 723ad78d..1e14f023 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_C.json
index b20296f1..76348727 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_D.json
index d0c56128..1f9c67a6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_E.json
index b92c696e..caa402b7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_F.json
index e3bad27c..61cd6c37 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Cloud_Senses_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Cloud_Senses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_A.json
index b4be754b..8574a36a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_B.json
index fa9e9f86..ab73d036 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_C.json
index b6b34fef..d1a4b274 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_D.json
index f7b7d252..fcea8a27 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_E.json
index 95022482..5fc35e22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_F.json
index a0d31c6e..3e5d8814 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Command_of_the_Mastermind_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Command_of_the_Mastermind_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_A.json
index fb8cd95f..ff6df59c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Commanding_Presence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_B.json
index 9bbaf56c..c83af582 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Commanding_Presence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_C.json
index 352589cf..a3c17c8e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Commanding_Presence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_D.json
index 76529c00..bf206b5b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Commanding_Presence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_E.json
index f71a705d..ac0fc3a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Commanding_Presence_E.json
@@ -111,7 +111,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Commanding_Presence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_A.json
index ea5d485b..3d901eb2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_B.json
index a5c66b8b..c2f38eb1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_C.json
index fc0cf5e5..a8d3921b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_D.json
index 670a0c74..b33ab3f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_E.json
index ccd96f20..3fb1c718 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_F.json
index ddd22f9e..cd29fcab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Critical_Strikes_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Critical_Strikes_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_A.json
index 5eb01634..b3c26f96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_B.json
index 611bca0f..a1588278 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_C.json
index d13a4cfe..3e654501 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_D.json
index 9550d0e3..dc1b03ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_E.json
index 7a5ff9a2..0f01549f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_F.json
index 6f9e2323..a85b79b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Crushing_Impact_F.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Crushing_Impact_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_A.json
index 20624d81..fdab9826 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Curtail_Speed_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_B.json
index a75c5677..ef66ff7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_B.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Curtail_Speed_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_C.json
index 93b0e3e0..1af348ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Curtail_Speed_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_D.json
index b0592a5a..3181f6e1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_D.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Curtail_Speed_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_E.json
index 7d255b74..1309f12e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Curtail_Speed_E.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Curtail_Speed_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_A.json
index 5c676587..7a004289 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_B.json
index c5582ac2..061f25eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_C.json
index b9be45af..b885422b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_D.json
index ff57a86d..5cb8f92e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_E.json
index 33cf6156..e2005816 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_F.json
index 87012ea0..a12e351d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dampened_Spirits_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dampened_Spirits_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_A.json
index f0334081..2b1d4233 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_B.json
index 582116f0..08d8552b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_C.json
index bd61c04e..8b0dd47d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_D.json
index e6160f0b..de038db0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_E.json
index 47ec97d9..0708141c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_F.json
index 0f106340..37deec40 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dark_Watchers_Despair_F.json
@@ -110,7 +110,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dark_Watchers_Despair_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_A.json
index 29c2db78..dc47a2f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_B.json
index 50e4a375..af3bda06 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_C.json
index cb0909c7..ce5c4c89 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_D.json
index 6b9852d7..5bda4f72 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_E.json
index e97bb4ab..18bfd825 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_F.json
index 49a38c77..fe4f29a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Debiliative_Action_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Debiliative_Action_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_A.json
index bcbae30e..55f98147 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_B.json
index 2efdb011..43a3cb3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_C.json
index ef444493..76e79757 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_D.json
index 52c0bef3..ca5ab83b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_E.json
index 42137540..7d975c72 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_F.json
index 14580a25..e59f7fec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Decimation_F.json
@@ -113,7 +113,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Decimation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_A.json
index 45b75b52..52f63ec6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_B.json
index d9c327e7..48a6db70 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_C.json
index 72aef3d3..ec2acdf3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_D.json
index 58a234e1..602fd68b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_E.json
index 8ff5a471..147095bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_F.json
index 121ae643..2c2a0e39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defenders_Bastion_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defenders_Bastion_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_A.json
index 47dd5681..f39ff8c9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_B.json
index c35e02ae..47dcfd09 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_C.json
index 58f100fe..c18f2d84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_D.json
index b340ccb3..12d4f5de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_E.json
index 74f3eddf..92c7e09c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_F.json
index b2a4bf92..035c5bac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Defiant_Barrage_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Defiant_Barrage_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_A.json
index 6dfd7a8c..b1b5cc90 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Deflated_Ego_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_B.json
index cbb5db29..ebb28a6b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Deflated_Ego_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_C.json
index 12503884..ad612174 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Deflated_Ego_C.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Deflated_Ego_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_A.json
index d8c918b2..737fd782 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_B.json
index 6c895ca4..e85e8fe9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_C.json
index e916403c..da4b44a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_D.json
index c72cac52..63d39986 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_E.json
index 2c5ecc2d..5dadfb7d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_F.json
index c81cbd11..e76a1301 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Detonation_F.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Detonation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_A.json
index a8dd36be..1b0c8466 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_B.json
index fcdee93b..438136e3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_C.json
index cf7cb2a7..ebf8e708 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_D.json
index c61ad336..bc4d7761 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_E.json
index 32e746cf..6c9d243c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_F.json
index 3a13735f..16610b32 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Devastation_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Devastation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_A.json
index 9a3053ba..3c370316 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Discouraging_Words_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_B.json
index acc7a8f1..beac2469 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Discouraging_Words_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_C.json
index caf38682..acb9c913 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Discouraging_Words_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Discouraging_Words_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_A.json
index 714940be..dd5ef6b6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_B.json
index 4a3d3d8a..37f5ece7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_C.json
index fb40d251..3ff791fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_D.json
index 0ff15f86..6a891931 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_E.json
index 6939a278..b253d13d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_E.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_F.json
index 54fc5c9f..6d58df2b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Doctored_Wounds_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Doctored_Wounds_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_A.json
index 8589499d..d9867dd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_B.json
index 0e51edad..fff69384 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_C.json
index 31412d79..654d0651 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_D.json
index e9a07cea..6e1e62b0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_E.json
index 19c4d27a..fb295e3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_F.json
index f2c9afe3..450a215d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominating_Grasp_F.json
@@ -155,7 +155,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominating_Grasp_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_A.json
index 382c4899..19a569ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_B.json
index 5ab9aff0..d8e3a4ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_C.json
index 7e79c8d6..d9114d7a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_D.json
index ce2b72e7..4c92b4a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_E.json
index a1557d1d..2973cdae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_F.json
index 910fc349..e0a6fdce 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Dominion_of_Arachnos_F.json
@@ -441,7 +441,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Dominion_of_Arachnos_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_A.json
index bf4a648f..f122d488 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_B.json
index f4145486..340d552c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_C.json
index 8418b9c4..7abbe4ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_D.json
index f5d6834e..82b53b8b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_E.json
index a466edf9..81ccb8a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_F.json
index 7430d4c6..7d99aa28 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Edict_of_the_Master_F.json
@@ -111,7 +111,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Edict_of_the_Master_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_A.json
index c754056b..02cb954d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_B.json
index 5e550041..6d8dc6a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_B.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_C.json
index b544e7ef..d4f2e710 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_C.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_D.json
index 987c5d98..6321c28a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_E.json
index af03b60a..c47ba62e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_F.json
index 1b0231d7..18d072e3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Efficacy_Adaptor_F.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Efficacy_Adaptor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_A.json
index 639009ad..b932a7ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Encouraged_Accuracy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_B.json
index 5ff27a5e..829aa40b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Encouraged_Accuracy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_C.json
index 0c2fca63..c71d2870 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Encouraged_Accuracy_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Encouraged_Accuracy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_A.json
index 68a20a67..134dbfe7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Energy_Manipulator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_B.json
index 82ec42d5..dc5db27d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_B.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Energy_Manipulator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_C.json
index d77a9331..e28c57c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Energy_Manipulator_C.json
@@ -115,7 +115,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Energy_Manipulator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_A.json
index 9d932990..1c552c3a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_B.json
index 43c98f06..8e399bae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_C.json
index 814fb754..261d83b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_D.json
index 9b46e576..76ba3d56 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_E.json
index 57733c70..54efa766 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_F.json
index 88ad9a99..131fb5d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Enfeebled_Operation_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Enfeebled_Operation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_A.json
index 8fb428e3..d5f9113e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_A.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_B.json
index 7b0bef48..a530af92 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_C.json
index 0780de16..3ec332f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_D.json
index 0b222b7d..77a37d91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_D.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_E.json
index f31f0343..64599b3b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_E.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_F.json
index edceac31..d5ea44bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entomb_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entomb_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_A.json
index 41f3e73a..0959618b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entropic_Chaos_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_B.json
index ecf69809..d351c823 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entropic_Chaos_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_C.json
index 29c15db3..83afead2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entropic_Chaos_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_D.json
index 796abcfc..869755ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entropic_Chaos_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_E.json
index f4e2a330..8ca88f21 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Entropic_Chaos_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Entropic_Chaos_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_A.json
index 19e5173a..e5377591 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_B.json
index 0b778818..aa3dbe43 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_C.json
index 1a28642e..11071dd9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_D.json
index 1196e6d3..fad35f5d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_E.json
index b24e3d2d..fa0aa50e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_F.json
index 0f05cc8f..92ee530e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Eradication_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Eradication_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_A.json
index cbcf3f0b..62ea0e61 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_B.json
index 08c17882..9f1eabd4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_C.json
index 6eaf1ffc..d9cbc379 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_D.json
index 5288f338..373da442 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_E.json
index 222f6543..68d04153 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_F.json
index c8de7b48..4c07d3ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_Transfer_F.json
@@ -144,7 +144,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_Transfer_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_A.json
index 19b73064..6b4d6ba3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_B.json
index fc51bb0b..69458f36 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_C.json
index 8f534a94..5774b158 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_D.json
index 5711e154..d3e4b4fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_E.json
index cd1942c9..89d73bb8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_F.json
index 0ceb1810..0bfff4d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Essence_of_Curare_F.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Essence_of_Curare_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_A.json
index f9563070..28b9d6c8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_B.json
index a69fdb79..a54639ac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_C.json
index a63ed686..51e7f947 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_D.json
index dad8c628..ba0f4212 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_E.json
index 8e3c77be..a0c312f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_F.json
index 4080cfc0..9d42d35d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Executioners_Contract_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Executioners_Contract_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_A.json
index 736944c9..15ddcdd1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_B.json
index 025b05df..8e03141b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_C.json
index 69ba53ca..3176f4a2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_D.json
index 2e8786ac..4b75d4a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_E.json
index ff0d8fb7..f00fccb4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_F.json
index f9582645..138c458c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Expedient_Reinforcement_F.json
@@ -109,7 +109,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Expedient_Reinforcement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_A.json
index c7e821a2..1230a144 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploit_Weakness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_B.json
index 2356b51a..67e724b4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploit_Weakness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_D.json
index 2e616e57..29b75423 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploit_Weakness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_c.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_c.json
index a3156b09..773e4da4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_c.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploit_Weakness_c.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploit_Weakness_c",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_A.json
index 9306ca73..eabe1307 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploited_Vulnerability_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_B.json
index 39ee6225..1d8d6ace 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploited_Vulnerability_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_C.json
index d2d2c86b..7b20f447 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Exploited_Vulnerability_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Exploited_Vulnerability_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_A.json
index 75c72847..c16b8bd9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_A.json
@@ -420,7 +420,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Explosive_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_B.json
index 115afc30..f8998a16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_B.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Explosive_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_C.json
index 9b9c7887..5d9ca7bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Explosive_Strike_C.json
@@ -145,7 +145,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Explosive_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_A.json
index 954684fa..7965401a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_B.json
index 2b6f2a23..a6ec6260 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_C.json
index 2cb17118..b9894c4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_D.json
index 43030570..8cfce87b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_E.json
index 2dc97b48..4274dd13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_F.json
index 66e22424..ce0ea134 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Extreme_Measures_F.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Extreme_Measures_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_A.json
index 37ba072e..713dc58b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Far_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_B.json
index d36f4971..bd1f74f5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Far_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_C.json
index ab5bcd69..aaa29d3f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Far_Strike_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Far_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_A.json
index ea304e0c..5e941854 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Focused_Smite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_B.json
index 1951ec49..9741a676 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Focused_Smite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_C.json
index b54e9121..5b827573 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Focused_Smite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_D.json
index 3d8aa1df..ce443348 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Focused_Smite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_E.json
index e19f6620..33994e05 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Focused_Smite_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Focused_Smite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_A.json
index 238fab4f..afad37d3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_A.json
@@ -420,7 +420,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_B.json
index e5d5f79d..5ccf5f88 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_B.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_C.json
index d7b3363d..1cf9c6a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_C.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_D.json
index 2098cf15..865cea0a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_E.json
index f619f68c..22473d61 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_E.json
@@ -454,7 +454,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_F.json
index 406a77e9..80540a3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Force_Feedback_F.json
@@ -114,7 +114,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Force_Feedback_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_A.json
index eb50e8df..a6109af5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Freebird_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_B.json
index c18fa907..abd5a4db 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Freebird_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_C.json
index 9139b90d..111b78bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Freebird_C.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Freebird_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_A.json
index 65267b4b..f0809d4b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_B.json
index 4bfbc91a..cc304244 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_C.json
index 9563c9e3..d3eb7ab5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_D.json
index a2a55ec0..fc3caaf3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_E.json
index 8ac4e0fe..aec04e79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_F.json
index b9a1110d..822dc533 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Frozen_Blast_F.json
@@ -187,7 +187,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Frozen_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_A.json
index acf4d87d..ba7d5d21 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_B.json
index 2f66cf1e..12c06df8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_C.json
index 1ea9bb4c..fba304ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_D.json
index b6b4771e..34322215 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_E.json
index 330cfa2a..16d01eda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_F.json
index 74abdc46..5fef7456 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Fury_of_the_Gladiator_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Fury_of_the_Gladiator_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_A.json
index a56431ad..34a2480d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_B.json
index b8e9ca39..34681571 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_C.json
index 83158631..8f2371c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_D.json
index 9494bc43..da4887f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_E.json
index 81c9467a..44fabb5a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_F.json
index 221fa181..296a95ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gauntleted_Fist_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gauntleted_Fist_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_A.json
index ef18dad4..bf59b10d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_B.json
index 35e78dc9..3660db92 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_C.json
index b515e29e..5f37e494 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_D.json
index 46385937..55680577 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_E.json
index 2bf22dfa..df9c1ea7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_F.json
index 1d7b9897..c2fc58de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gaussians_Synchronized_FireControl_F.json
@@ -113,7 +113,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gaussians_Synchronized_FireControl_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_A.json
index 491de7a3..b73c1179 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_B.json
index 81c9f2f2..7414b718 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_C.json
index ce36150d..4e14e3e2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_D.json
index 9711141b..118f5cef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_E.json
index 1c474a05..0b290426 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_F.json
index a19db338..71540d85 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ghost_Widows_Embrace_F.json
@@ -149,7 +149,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ghost_Widows_Embrace_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_A.json
index a29c529b..13e5d216 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_B.json
index 6ecf3b00..bcf42f78 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_C.json
index 9a4304d2..5bca73e1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_D.json
index 111f94de..f5b58180 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_E.json
index 11d66ee7..51296c96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_E.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_F.json
index 456be917..80e50738 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gift_of_the_Ancients_F.json
@@ -497,7 +497,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gift_of_the_Ancients_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_A.json
index 5d133c91..cc8b2e44 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_B.json
index 9d239b14..bc3c5f87 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_C.json
index 50802ca9..d2b92b71 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_D.json
index f5a4406a..8d384886 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_E.json
index 7ca17992..e6f77ebf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_F.json
index 0b74671a..4ff146e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Armor_F.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_A.json
index eabdcbc1..08f1c60d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_B.json
index d9af7060..89934bd7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_C.json
index 88226867..b565068b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_D.json
index ea954e96..8d40cec6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_E.json
index 25f407a8..e8bbc3ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_F.json
index ae1a17cf..01ec2a2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Javelin_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Javelin_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_A.json
index cff75a25..0170edbe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_A.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_B.json
index f1e735eb..5ca336b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_C.json
index 6b3d17c6..40eabde6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_C.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_D.json
index 17b774ee..5b1cdb2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_D.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_E.json
index 96f021a8..03c58bb1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_E.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_F.json
index d9322b66..2c7afb2e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Net_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Net_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_A.json
index 34018d22..91d6f49a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_B.json
index 0803888e..cb684153 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_C.json
index 4e78adbc..52df55f5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_D.json
index d10a579b..4654b978 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_E.json
index 9876227a..e000a883 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_F.json
index 078d593e..99098075 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Gladiators_Strike_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Gladiators_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_A.json
index ff66bf6e..f539d4fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_B.json
index d503a70a..fa7f375f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_C.json
index f354d466..31415100 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_D.json
index a08a92e3..d13f7b81 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_E.json
index 35a378a7..ee5beb06 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_F.json
index 50433ffa..18582794 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Glimpse_of_the_Abyss_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Glimpse_of_the_Abyss_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_A.json
index 8930e3d0..74e11467 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_B.json
index 023b052c..fef41b22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_C.json
index d0907f7e..4280e5cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_D.json
index eea70788..86f3bda8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_E.json
index d0117fe0..125dd3cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_E.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_F.json
index ad3240a3..3b28ebd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Harmonized_Healing_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Harmonized_Healing_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_A.json
index 1fde1153..b0015c0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Hibernation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_B.json
index 506f0458..ef9ac349 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Hibernation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_C.json
index a45b3142..840acc26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Hibernation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_D.json
index 7d42aa6d..82261162 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Hibernation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_E.json
index 549e7d05..30e24deb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Hibernation_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Hibernation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_A.json
index 9a6e5646..1ec04384 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Horror_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_B.json
index 3af84716..7383a090 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Horror_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_C.json
index f692e283..bf5969aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Horror_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_D.json
index 65c3e179..2f111e1e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Horror_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_E.json
index a446bd00..aa696949 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Horror_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Horror_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_A.json
index efdbb80e..805a5dae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_B.json
index 66d7ea5c..5c79f1cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_B.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_C.json
index 15a0bb77..ca09ff97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_D.json
index b63a5505..9d976b9f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_D.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_E.json
index cdd8a271..35253dcd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_E.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_F.json
index 3a8f069f..e18d6987 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impeded_Swiftness_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impeded_Swiftness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_A.json
index 7a5a0064..54ba0895 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervious_Skin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_B.json
index d8dc4ce6..c3a494a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervious_Skin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_C.json
index 9b15e8ee..e66859f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervious_Skin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_D.json
index 3efa8b4c..611946cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervious_Skin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_E.json
index de8137ed..18fd7b72 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervious_Skin_E.json
@@ -143,7 +143,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervious_Skin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_A.json
index 2ce4345b..c42ab864 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_B.json
index 85209cd4..5ee19638 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_C.json
index f6960c2d..9ddfa5c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_D.json
index 51baf2ae..8cb0e38c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_E.json
index eaecd93e..f3f3a90d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_F.json
index 9c7aeae5..762647fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Impervium_Armor_F.json
@@ -110,7 +110,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Impervium_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_A.json
index b422002a..718c5b79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_B.json
index 91be591c..59bcdaeb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_C.json
index 3bb63063..41929bc8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_D.json
index d958c190..a43b439d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_E.json
index 049bcff2..edf5066e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_F.json
index e074e596..35c427d3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Induced_Coma_F.json
@@ -110,7 +110,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Induced_Coma_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_A.json
index 476942f4..fe4ac2af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Jaunt_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_B.json
index 9814f867..e8fbdc0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Jaunt_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_C.json
index 65c54fca..f54254cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Jaunt_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Jaunt_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_A.json
index eca9fc33..7e826760 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_B.json
index 398fb68c..5f87b1c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_C.json
index ef4a3e38..464feede 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_D.json
index 4d10284a..26c64090 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_E.json
index d1024ea9..8c0f6eca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_F.json
index 16be9d04..0a80a2a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Javelin_Volley_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Javelin_Volley_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_A.json
index 49b8c31a..e073e8a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Karma_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_B.json
index b78a463c..c1c62a40 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Karma_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_C.json
index f8a046b0..9257f905 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Karma_C.json
@@ -114,7 +114,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Karma_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_A.json
index 91728ce2..2da0e1b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_B.json
index fb820a91..f2f51d0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_C.json
index 54ec4be1..b4a2699d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_D.json
index 3206848c..dd2f9d65 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_E.json
index f8f26b8a..b0c6887a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_F.json
index 08157000..e1fc1005 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kheldians_Grace_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kheldians_Grace_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_A.json
index 0619684f..bbfd05cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Combat_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_B.json
index bc38bbd9..dda10113 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Combat_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_C.json
index 476af93f..bf6b25d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Combat_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_D.json
index 107c24b2..ac81b7e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Combat_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_E.json
index 5c24396c..967b3344 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Combat_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Combat_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_A.json
index 6fcbb3e5..5f1f5d48 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_A.json
@@ -420,7 +420,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_B.json
index 6fabfd06..5e013353 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_B.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_C.json
index e48cf1fa..ea3f2d6c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_C.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_D.json
index a510c34e..a62c6594 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_E.json
index d1e44c98..f86dc71a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_E.json
@@ -454,7 +454,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_F.json
index c98c4c7c..c1c254b6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kinetic_Crash_F.json
@@ -454,7 +454,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kinetic_Crash_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_A.json
index ffde77d1..69c5c13d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kismet_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_B.json
index b87370b6..b282001f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kismet_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_C.json
index 03b666d9..e4cac37e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kismet_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_D.json
index 83eac550..c8739fc1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kismet_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_E.json
index a2756411..edfad481 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Kismet_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Kismet_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_A.json
index a08a99c3..56f51973 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_B.json
index f8353533..10c44430 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_C.json
index f008ec5d..b90cf971 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_D.json
index 82e00083..4448ad65 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_E.json
index 10f17a4c..868612ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_F.json
index a1dd3d58..7c0fc949 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lethargic_Repose_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lethargic_Repose_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_A.json
index ddff046b..4696c9f0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_A.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_B.json
index c29a2a9c..95d52afb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_C.json
index 6b43aafa..266bf695 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_C.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_D.json
index c50d1442..6c96300b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_D.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_E.json
index 9abe3c9a..6e94dabb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_E.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_F.json
index bf5795e3..525e3e84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Lockdown_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Lockdown_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_A.json
index 3b96d783..dffd2f4c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_B.json
index 6a437cbe..c2c4af4f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_C.json
index cb03cba5..13bedc97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_D.json
index 6ceb4de5..90c24962 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_E.json
index b4db4685..4309a4ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_E.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_F.json
index 313528fd..d8a6a987 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Luck_of_the_Gambler_F.json
@@ -494,7 +494,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Luck_of_the_Gambler_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_A.json
index 57b5123a..890d3cb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Maelstroms_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_B.json
index 0e67e80d..988abe6c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Maelstroms_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_C.json
index 40a42f30..cd54d1c6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Maelstroms_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_D.json
index 659bffd3..d18e4c5f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Maelstroms_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Maelstroms_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_A.json
index 94255f74..488bc2ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_B.json
index e1b91749..de62724a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_C.json
index 9c42a00c..d84dddd9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_D.json
index 604d9d05..9b65fe16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_E.json
index 42b51180..db45a092 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_F.json
index 6f8956eb..528acccd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Makos_Bite_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Makos_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_A.json
index de916e94..0e323238 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_B.json
index e0fae313..78670c6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_C.json
index df56308f..2ffa4763 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_D.json
index 74859d42..5a3d571c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_E.json
index b14136b4..aa03b638 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_F.json
index 3ec3cc75..1eda61a9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malaises_Illusions_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malaises_Illusions_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_A.json
index 5d4e65f0..75c12cf4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_B.json
index a953d37c..867074c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_C.json
index 0ea0bad5..259f7ce0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_D.json
index 8c7a285d..c37ce427 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_E.json
index 5aff0913..532b1b5a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_F.json
index 28f440d9..4dd48f4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Malice_of_the_Corruptor_F.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Malice_of_the_Corruptor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_A.json
index 65449344..713db399 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_B.json
index 8d2c5b0d..5cd34a6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_C.json
index a297437b..c5dba71f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_D.json
index 787d2a15..3ef20e82 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_E.json
index c065b8c4..ac28851b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_F.json
index 4200feb8..0ecdb064 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mark_of_Supremacy_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mark_of_Supremacy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_A.json
index b6b07ef9..cbd2e3cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_B.json
index 6032d299..e83c830c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_C.json
index 2c808fc1..980c50be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_D.json
index 05ff38c1..4c0aaa79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_E.json
index a5b68e20..77c8ffec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_F.json
index c76a65a8..60450798 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Might_of_the_Tanker_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Might_of_the_Tanker_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_A.json
index 3a1d298a..b843147c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_B.json
index bf604fe9..96a45c96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_C.json
index f3e34422..b11e1d42 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_D.json
index be4f83c1..3dc40c9b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_E.json
index 52e92ab6..0fddb94a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_E.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_F.json
index 16f96b17..871a2898 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Miracle_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Miracle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_A.json
index f3ff5428..bd67f22f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_B.json
index 5beca180..3d7f41d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_C.json
index 566cba27..3b1fa621 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_D.json
index 0575f6f2..09854bd7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_E.json
index 31d90e44..ddd68615 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_F.json
index 41209939..6ba4bd58 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Mocking_Beratement_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Mocking_Beratement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_A.json
index 65052269..c70f5ab2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_B.json
index 02693e18..19595ecf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_C.json
index de5cba9f..65dfa328 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_D.json
index f6172dbb..af79a342 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_E.json
index e65877c3..e1ada5a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_F.json
index 523d02fd..47a86476 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Multi_Strike_F.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Multi_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_A.json
index 8b931058..3e165181 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_B.json
index 89602af3..92130e42 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_C.json
index cd046572..abad5b0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_D.json
index e048a18d..acacab73 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_E.json
index e26dde50..6dac8d26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_F.json
index 51711733..73147bb8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Neuronic_Shutdown_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Neuronic_Shutdown_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_A.json
index e58ba7a5..ad59a20e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_B.json
index ba01440c..77ce745d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_C.json
index e359c129..928f91bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_D.json
index 56109109..ab1b2a13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_E.json
index 877a623a..624e13fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_F.json
index a3c2f225..0086f17f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Nightmare_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Nightmare_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_A.json
index 0d8b33b1..7c1f9bf9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_B.json
index cad28b36..9e96ade7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_C.json
index 33fb46af..dc0f4011 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_D.json
index a40a2315..38316f34 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_E.json
index 056a4bea..a238adba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_E.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_F.json
index 796abfbd..accd90fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Numinas_Convalesence_F.json
@@ -144,7 +144,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Numinas_Convalesence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_A.json
index 0250351d..d0c7fb4b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_B.json
index 6f967186..f0bbdac0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_C.json
index c355fa93..c3145aa8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_D.json
index 8d916aa1..fdb5f0d7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_E.json
index 37690556..e011c820 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_F.json
index 983d5bf8..c974ec9d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Obliteration_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Obliteration_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_A.json
index f6598245..57a2750d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_B.json
index 01af7854..77969afd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_C.json
index f4899791..2cee46ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_D.json
index 2a573ac1..5664d7e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_E.json
index bdf6a6c2..ac80141a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_F.json
index 1dd0d623..b063ba8d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overpowering_Presence_F.json
@@ -155,7 +155,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overpowering_Presence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_A.json
index 65857df1..2de1a881 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_B.json
index 32edc30a..18537b8e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_C.json
index 080c9a1c..edf3500c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_D.json
index 2691e58c..b044334c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_E.json
index 326b91ee..0fbb77dd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_F.json
index e5d71161..970623aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Overwhelming_Force_F.json
@@ -517,7 +517,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Overwhelming_Force_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_A.json
index 927d4369..bd816275 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_B.json
index 41085a9c..ea6b4037 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_B.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_C.json
index 75a7cc53..ffef6f5a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_D.json
index 83e941cf..f5ea71bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_D.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_E.json
index 33872c06..0ec8b71e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_E.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_F.json
index 08917181..f6427f7d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pacing_of_the_Turtle_F.json
@@ -110,7 +110,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pacing_of_the_Turtle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_A.json
index a304d1e0..e1d9eb67 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_B.json
index 6ac55402..db0b6f67 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_C.json
index 5174c377..0df057ac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_D.json
index 8595fa11..86bd5da8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_E.json
index b2b4bb5d..7bf9ef02 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_E.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_F.json
index f368db9d..ab60e833 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Panacea_F.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Panacea_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_A.json
index 4a139fd6..4ad7927c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Paralytic_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_B.json
index 37da448b..8844352e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Paralytic_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_C.json
index 70b16010..ea3d9518 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Paralytic_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_D.json
index 3c5df558..515dbd64 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Paralytic_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_E.json
index 2a34d939..c54c45e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Paralytic_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Paralytic_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_A.json
index 373c24c3..20e103c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_B.json
index 2b79607f..219f5e01 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_C.json
index f8ce8243..58a66a9a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_D.json
index 1d920815..5c501787 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_E.json
index 6053013e..17e53b63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_F.json
index 7213ea66..6666a291 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perfect_Zinger_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perfect_Zinger_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_A.json
index 86695ed0..9a5cc1d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_B.json
index 27a494bf..590a7224 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_B.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_C.json
index 382a3fa5..8ab3b34c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_C.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_D.json
index e4439ea3..9d74020b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_E.json
index d26be821..ab27e903 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_F.json
index 3fa9527d..93033496 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Performance_Shifter_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Performance_Shifter_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_A.json
index 79c22586..79ef341a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_B.json
index 8932c7a2..6b3031e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_C.json
index 44d05c84..46df8836 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_D.json
index 2497fc24..a33226f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_E.json
index 3437bf4e..c9da3cba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_F.json
index 2cc88204..3605f808 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Perplex_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Perplex_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_A.json
index cc545240..70083bd8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_B.json
index 26ec369d..44558a4c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_C.json
index 7ba7b0dd..3b528d1a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_D.json
index e9a5cb1d..f987f513 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_E.json
index 35f65634..ae1450bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_F.json
index 9d20dfce..3a65c645 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Positrons_Blast_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Positrons_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_A.json
index 2cea1131..d1ccd905 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pounding_Slugfest_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_B.json
index ed40c7bb..501af5d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pounding_Slugfest_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_C.json
index 9a72319a..1dad2e49 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pounding_Slugfest_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_D.json
index 1ab23697..53907726 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pounding_Slugfest_D.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pounding_Slugfest_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_A.json
index ffc893ff..9826ab8f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_B.json
index 63efd1e5..a70d4da9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_B.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_C.json
index 401190da..7c280472 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_D.json
index 41c48d09..13684eea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_D.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_E.json
index c2dbda45..5ab2b3f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_E.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_F.json
index 26a9c859..18df248a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Preventive_Medicine_F.json
@@ -111,7 +111,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Preventive_Medicine_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_A.json
index b01df93a..c6d44615 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pulverizing_Fisticuffs_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_B.json
index ae6a7088..6c895a49 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_B.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pulverizing_Fisticuffs_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_C.json
index e6a5b9d0..c38d7550 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Pulverizing_Fisticuffs_C.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Pulverizing_Fisticuffs_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_A.json
index 94be7edc..940994b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Quickfoot_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_B.json
index 1bbe9c77..8d00c0c9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Quickfoot_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_C.json
index 397497c8..e0ae2b5b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Quickfoot_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Quickfoot_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_A.json
index 3b454dc3..572130f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_B.json
index 85a93315..dd5d260c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_C.json
index 0d4f35fa..a3160e3a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_D.json
index 3ba39c77..cd0d5449 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_E.json
index 9cdfa20d..72c902c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_F.json
index 798814c7..40337e8c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Razzle_Dazzle_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Razzle_Dazzle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_A.json
index 9cfa1505..c084574f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_B.json
index 10ec47b6..0f269cc5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_C.json
index c37f65ed..fcad7e09 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_D.json
index 299e5932..bdfe118a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_E.json
index 24a6ca8b..73bad1fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_F.json
index 61a19ca7..dd19bca2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Armor_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_A.json
index e374f37f..55e30a39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_A.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_B.json
index bf230a5b..429e966a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_C.json
index e2e9eb9e..9648d08d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_D.json
index a19eaed2..06a4518a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_D.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_E.json
index df5dd6fd..c1aba42d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_E.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_F.json
index 4b0b0a41..4a30fa59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Reactive_Defenses_F.json
@@ -178,7 +178,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Reactive_Defenses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_A.json
index 921c2cfd..66c81fd1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rectified_Reticle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_B.json
index 7e386b7d..977fc4d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rectified_Reticle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_C.json
index 565fd073..e9579f6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rectified_Reticle_C.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rectified_Reticle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_A.json
index cfc9a621..61ef7923 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_B.json
index a0b1b6c1..ed3b1fde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_C.json
index 599f6d5e..2d79728c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_D.json
index dbdaad92..9a836a6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_E.json
index 28bd7365..63b27748 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_E.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_F.json
index 0142c7db..5d2f889d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Red_Fortune_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Red_Fortune_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_A.json
index f4e3ae01..d22f15a6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Regenerative_Tissue_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_B.json
index ec3a0927..db4e495b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Regenerative_Tissue_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_C.json
index 626c2457..f5281048 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Regenerative_Tissue_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_D.json
index 9d792467..ee1c9b05 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Regenerative_Tissue_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_E.json
index 776ae8d7..54ce5bfe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Regenerative_Tissue_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Regenerative_Tissue_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_A.json
index 0982531d..0657592c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rooting_Grasp_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_B.json
index 775930ae..bffcb510 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rooting_Grasp_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_C.json
index e5689eb6..7becfd43 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rooting_Grasp_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_D.json
index 2ae2ccdb..2c1a83e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rooting_Grasp_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_E.json
index 144ec1e0..ecc66dd5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rooting_Grasp_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rooting_Grasp_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_A.json
index 8f02cd7c..5c85cb80 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_B.json
index 868c3030..c6a32c68 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_C.json
index feac796b..505a9aee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_D.json
index 4b963b4b..c06e2cf0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_E.json
index 91296229..cbaaba74 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_F.json
index 571bf262..6979d8bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Rope_A_Dope_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Rope_A_Dope_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_A.json
index 8b1cc474..72b3d90a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ruin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_B.json
index 01dca88a..04dd29f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ruin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_C.json
index 266cd73c..c814de37 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ruin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_D.json
index 6c4e7f02..317d9135 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ruin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_E.json
index 13707188..4d525a0b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Ruin_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Ruin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_A.json
index 79860e04..8d7c07a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Salvo_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_B.json
index 09dd3383..ff6990d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_B.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Salvo_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_C.json
index 6e2f9e82..3a104cf3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Salvo_C.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Salvo_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_A.json
index 16fc1756..614c7f89 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_B.json
index d382deed..2cfeb35c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_C.json
index 7edf1179..6074ce0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_D.json
index 6d3395a5..ab306d51 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_E.json
index 1a145305..7b82b66e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_F.json
index c8926855..0c5f6bbd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sciroccos_Dervish_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sciroccos_Dervish_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_A.json
index 3da6e8ca..7b0d93fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_B.json
index 6fa1afc3..629e13e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_C.json
index d9720df3..c1f7085b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_D.json
index f2284843..a408d98a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_E.json
index d68a8e89..010516be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_F.json
index 47994775..0b8d9832 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scourging_Blast_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scourging_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_A.json
index 98d51afe..422164e0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_B.json
index f1b7914e..cb416cfd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_C.json
index 32aa1069..6a2eff21 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_D.json
index 558c0baa..231e726d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_E.json
index ee01b0c8..45c76f39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_F.json
index 5cda01d2..d9b95aba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Scrappers_Strike_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Scrappers_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_A.json
index dc465165..5f96a5bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_B.json
index 36d128e1..3cb825a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_C.json
index 79307e94..eb6aa7af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_D.json
index 59e00eb7..d6763c11 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_E.json
index 595a84ef..7e0f9b30 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_E.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_F.json
index 9f4ec1e2..2b188486 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Serendipity_F.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Serendipity_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_A.json
index a5ad5dd2..ee89cf79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_B.json
index 696711a4..4a036d18 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_C.json
index 04806885..9525ccca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_D.json
index d9a3c9c6..ccc7dfa8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_E.json
index 3359bdc7..c42ef707 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_F.json
index cb83f793..53fa1c42 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Breaker_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Breaker_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_A.json
index 4d1caf0b..9603c029 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_A.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Wall_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_B.json
index 600c8fca..6ddade1c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_B.json
@@ -496,7 +496,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Wall_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_C.json
index 876d8507..4c11e616 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Wall_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_D.json
index 4ac6a79c..0eb04d6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_D.json
@@ -530,7 +530,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Wall_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_E.json
index a649073e..fa143f03 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_E.json
@@ -462,7 +462,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Shield_Wall_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_F.json
index 76069b2b..29d0b288 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Shield_Wall_F.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Attuned_Shield_Wall_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_A.json
index bc22b36c..ee216a59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_B.json
index 61ddffad..7ab6df01 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_C.json
index a2cb7fa6..8e645353 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_D.json
index d8a3d8bd..d224fa13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_D.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_E.json
index c3231a65..90f361ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_F.json
index 32a12077..bcd63d18 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Siphon_Insight_F.json
@@ -113,7 +113,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Siphon_Insight_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_A.json
index 4597540e..5aad4632 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Smashing_Haymaker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_B.json
index b771298e..0360c6a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Smashing_Haymaker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_C.json
index 04e8fffe..9bb4088a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Smashing_Haymaker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_D.json
index 5322aa74..e460b2c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Smashing_Haymaker_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Smashing_Haymaker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_A.json
index 93aa7acf..35054921 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Soaring_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_B.json
index f3c6beaf..150219f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Soaring_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_C.json
index c9298e3d..92c09c9f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Soaring_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Soaring_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_A.json
index e83a70d7..ff99678a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_B.json
index 9b8d8970..89cf85a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_C.json
index aff6a59c..8e4ef9ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_D.json
index 5d165ebd..6c578b22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_E.json
index 2ecfee64..414854ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_E.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_F.json
index 63acbb1b..667b01c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sovereign_Right_F.json
@@ -109,7 +109,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sovereign_Right_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_A.json
index 82ba1cad..f18b94fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_B.json
index 0b67b03e..5356d5df 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_C.json
index ab8826f4..e9d30bdc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_D.json
index 6e7db367..f9ad7bba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_E.json
index fe21ac08..b711dff4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_F.json
index bd587005..1781da31 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Spiders_Bite_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Spiders_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_A.json
index d437636c..7b40e09a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Springfoot_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_B.json
index 690be9aa..b9ae4bfc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Springfoot_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_C.json
index 723e1e2f..94daaa1f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Springfoot_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Springfoot_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_A.json
index 61a3aa38..58fae2ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stagger_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_B.json
index 33b1fab0..90ed13d6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stagger_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_C.json
index 3936af2f..3f80b5ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stagger_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_D.json
index 113ede67..94bc163f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stagger_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_E.json
index 62ced925..9637fdc6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stagger_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stagger_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_A.json
index daa0513d..1431f3e5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_B.json
index 0c8fae87..1ae916d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_C.json
index 14c80ce6..031e1df3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_D.json
index 4c98c5e2..4d8a2ac4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_E.json
index 31fc3a4a..e6c0a352 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_F.json
index 704caf30..754ba391 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stalkers_Guile_F.json
@@ -145,7 +145,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stalkers_Guile_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_A.json
index ab9aa18e..b8efcb04 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Steadfast_Protection_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_B.json
index b24d48d4..26feb60d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_B.json
@@ -383,7 +383,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Steadfast_Protection_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_C.json
index 0f0688b1..db458fcd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Steadfast_Protection_C.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Steadfast_Protection_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_A.json
index 77ca6cf4..0e974b7d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_B.json
index b619ed8f..d93f21b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_C.json
index d9f2483f..0aff5d66 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_D.json
index 1dfb48e1..59f188f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_E.json
index a83b0899..6d06b512 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_F.json
index a723036d..7f775c19 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Sting_of_the_Manticore_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Sting_of_the_Manticore_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_A.json
index c65503fa..865c2bec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_B.json
index 5fc617e8..15340644 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_C.json
index ceb5c78d..6693bf02 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_D.json
index 196dcea0..1df4c687 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_E.json
index cd5f41d7..9d0e8443 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_F.json
index 364597c3..5a265968 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Stupefy_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Stupefy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_A.json
index 05e36192..0a3a803e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_B.json
index 6aa5b34a..ab3d3b3f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_B.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_C.json
index a397ecb7..1a134849 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_D.json
index 68e8e2ed..232cf737 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_D.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_E.json
index ba04e877..8305d64a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_E.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_F.json
index 05391eeb..194e59bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempered_Readiness_F.json
@@ -486,7 +486,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempered_Readiness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_A.json
index e26dd79f..82b5ba18 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempest_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_B.json
index 52cc1fcd..615b693f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempest_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_C.json
index cfa55ef7..3ce184b1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempest_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_D.json
index 54618686..561d94ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Tempest_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Tempest_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_A.json
index 3328d9ad..72f36835 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_B.json
index 0cbecba4..60494ed8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_B.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_C.json
index 87a73e28..c631c601 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_D.json
index 4b200da3..a28fe396 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_E.json
index 18144f5b..2871ff04 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_F.json
index 72c7937c..102a455c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Theft_of_Essence_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Theft_of_Essence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_A.json
index 35470b05..873a67e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_B.json
index ed299e14..53050a8b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_C.json
index 6fb2ae38..e8220471 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_D.json
index d2d33924..1c89f1eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_E.json
index 13860d5c..d42e11ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_F.json
index b6886d93..2207a074 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Thunderstrike_F.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Thunderstrike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_A.json
index 31d181de..ad25c531 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_TimeSpace_Manipulation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_B.json
index d1e3f85f..294883e0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_B.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_TimeSpace_Manipulation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_C.json
index 7163c790..a9512f37 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_TimeSpace_Manipulation_C.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_TimeSpace_Manipulation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_A.json
index d6f5122d..75bbeefd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_B.json
index ef14059c..1164f73b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_C.json
index 482a1789..0c9b66b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_D.json
index ef6887f7..9a9dfc6a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_E.json
index 6b596971..36396ee4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_E.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_F.json
index 96d99599..f0a7ac63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Titanium_Coating_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Titanium_Coating_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_A.json
index e05d9f2b..434b90c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_B.json
index 4f2f2d6f..10062eff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_C.json
index ef176805..5a0bc163 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_D.json
index 4e9ff6f5..c5e929cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_E.json
index b95cdeb5..d92b6ed9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_F.json
index 7860f6d4..42cb96c1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Death_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Death_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_A.json
index 3456edfa..a070e9a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_B.json
index ff34beb5..2e5c94db 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_C.json
index f4f443dd..43e4236c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_D.json
index 3f61186a..4a476b88 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_E.json
index 2ae1adb2..2b999d02 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_F.json
index 01ec20cf..e841c7ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_Lady_Grey_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_Lady_Grey_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_A.json
index ea965d1b..fb108b84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_A.json
@@ -214,7 +214,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_B.json
index 7d85e6bf..0a6df3a2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_B.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_C.json
index 4a3f6168..2001decc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_D.json
index 75e319ac..05eda10c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_E.json
index e5f4d22b..fa9ba293 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_E.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_F.json
index 6f9b87fc..a3e8ae91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Touch_of_the_Nictus_F.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Touch_of_the_Nictus_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_A.json
index b5b71a24..23bdffb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_B.json
index 45c7281d..2b89bb33 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_C.json
index d757beea..1cee1524 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_D.json
index 0265b84c..dcf19e92 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_E.json
index b4978f9b..c76caa0a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_F.json
index 930b7a1a..c185591e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Trap_of_the_Hunter_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Trap_of_the_Hunter_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_A.json
index b1ee0dc6..2b9bea8b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_A.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triage_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_B.json
index 33c87a32..4fdc6009 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triage_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_C.json
index 8797ba20..bc31655b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_C.json
@@ -248,7 +248,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triage_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_D.json
index 72ff40af..84abec0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triage_D.json
@@ -282,7 +282,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triage_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_A.json
index 35af7b31..d46a9c3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triumphant_Insult_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_B.json
index 1700e5b8..6217ca6f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triumphant_Insult_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_C.json
index d78e679d..2025a21a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Triumphant_Insult_C.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Triumphant_Insult_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_A.json
index a919c4bd..f2d02b51 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbounded_Leap_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_B.json
index 83527f38..8bec0706 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbounded_Leap_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_C.json
index fee4f24d..716262dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbounded_Leap_C.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbounded_Leap_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_A.json
index 6b2fac1b..c78d9f55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_B.json
index 91c48fa2..02e336b8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_C.json
index 4b31e589..ac94e43c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_D.json
index 5bbb6484..ed43b464 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_D.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_E.json
index 8088749c..b161aab5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_F.json
index b742e6aa..d9ddb6b6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unbreakable_Guard_F.json
@@ -111,7 +111,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unbreakable_Guard_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_A.json
index e742e88c..c3a8b335 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_A.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_B.json
index 2d7d534c..2370c92e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_B.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_C.json
index 8395022f..a93f44af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_C.json
@@ -180,7 +180,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_D.json
index c309c20b..a6c566c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_E.json
index 59d2c4fe..1985f791 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_E.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_F.json
index b51afbf2..adab79a9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Undermined_Defenses_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Undermined_Defenses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_A.json
index 3440ec9f..bbcdc502 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unquestioning_Loyalty_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_B.json
index 8f5180f5..1ad3e7b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unquestioning_Loyalty_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_C.json
index 1cbaaf5b..d6a91573 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unquestioning_Loyalty_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_D.json
index 7ac6f33c..9aeea187 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unquestioning_Loyalty_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unquestioning_Loyalty_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_A.json
index 6d271152..19d4415b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_B.json
index 959781a6..f4eee472 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_C.json
index 71077932..d17e90c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_D.json
index dda26c67..c19d3cb3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_E.json
index 90c53327..8f28a258 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_F.json
index 778ec403..1df606df 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unrelenting_Fury_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unrelenting_Fury_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_A.json
index ef0c5ab3..9ab560d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_A.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_B.json
index d31f2642..a3edc3d6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_C.json
index 404fd8e8..511355a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_D.json
index 4f2358d2..3543c339 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_D.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_E.json
index 94374de3..31605c75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_E.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_F.json
index cb7dcbee..a6b3ddb1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Unspeakable_Terror_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Unspeakable_Terror_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_A.json
index 8d0a1be1..731b8442 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_B.json
index 2fe2ca68..0c4b8279 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_C.json
index b3e62b33..3a4e420e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_D.json
index a03291f1..55ec9ebc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_E.json
index bea5f029..e5ff4180 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_F.json
index f8420b87..65467907 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Vigilant_Assault_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Vigilant_Assault_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_A.json
index 0f0d29d0..79acc443 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_Fire_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_B.json
index b3635193..4cecf25f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_Fire_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_C.json
index b9b1eaa4..90894c11 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_Fire_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_Fire_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_A.json
index 5f77d04c..5567b920 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_A.json
@@ -420,7 +420,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_of_Velocity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_B.json
index 3cd16160..9a3b450f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_of_Velocity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_C.json
index 4cc728fb..92283f40 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Volley_of_Velocity_C.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Volley_of_Velocity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_A.json
index a9b08676..95344d2d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_B.json
index 29112a58..caabe112 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_C.json
index 43ff9751..90f7173d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_D.json
index 9bc6791e..05550721 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_E.json
index e13aff4f..327a2b13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_F.json
index e2129b66..452f1081 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Will_of_the_Controller_F.json
@@ -192,7 +192,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Will_of_the_Controller_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_A.json
index b7e65567..63e3bd10 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_B.json
index 79c946d3..afb3ae16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_C.json
index 75635d88..d81b70b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_D.json
index d4c7412f..4a4133ea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_E.json
index 453cf637..42e6183f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_F.json
index f66e4d2b..4c74f12b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Bite_F.json
@@ -272,7 +272,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_A.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_A.json
index 84be102b..a9e6f0a9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_A.json
@@ -254,7 +254,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Gift_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_B.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_B.json
index 1f54e615..4aafa060 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_B.json
@@ -288,7 +288,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Gift_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_C.json b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_C.json
index e31a7787..fe1d7321 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Attuned_Winters_Gift_C.json
@@ -118,7 +118,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Attuned_Winters_Gift_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_A.json
index e3686578..f84a442b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Absolute_Amazement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_B.json
index 40268e49..15264d24 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Absolute_Amazement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_C.json
index 4033c49e..b0db3137 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Absolute_Amazement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_D.json
index 882eab38..f67e165e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Absolute_Amazement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_E.json
index eadd434e..f7c5a9a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Absolute_Amazement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_F.json
index f3db199b..b747cf6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Absolute_Amazement_F.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Crafted_Absolute_Amazement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy.json
index dfd687bf..6cd8756a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_10.json
index 9892284a..2ecd4982 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_15.json
index 7807325c..179f8ae1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_20.json
index 65e1dae2..ab4de354 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_25.json
index 7f129647..98d74ee2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_30.json
index db7e1997..5d3719e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_35.json
index fa2ac707..03c60b3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_40.json
index 1ec6e2f7..a8833ce4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_45.json
index e480fea7..376af403 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_50.json
index f24410cb..28e738b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Accuracy_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Accuracy_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_A.json
index 77a882e2..6e9cdeaa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Achilles_Heel_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_B.json
index 6ec98954..ebe52283 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Achilles_Heel_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_C.json
index ac9778e2..5dadc370 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Achilles_Heel_C.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Achilles_Heel_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_A.json
index cd91111d..ef8aabe9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_B.json
index 4962aa22..9e1879bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_C.json
index f1ac97f6..7ae0f336 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_D.json
index e4ddd0cf..c69fa51a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_E.json
index 080ebef7..f65693a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_F.json
index 865a29b3..751f2c98 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adjusted_Targeting_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adjusted_Targeting_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_A.json
index dcabc504..855fa92e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adrenal_Adjustment_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_B.json
index 211b506f..e073ddcf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_B.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adrenal_Adjustment_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_C.json
index 6265c664..79c9a3ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Adrenal_Adjustment_C.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Adrenal_Adjustment_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_A.json
index 4c883c39..a37643a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Aegis_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_B.json
index 7ba4ef0f..43c61165 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Aegis_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_C.json
index 5f920ddb..520268a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Aegis_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_D.json
index 7c97a3a0..c4daf1df 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Aegis_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_E.json
index a5b032e3..6978fdd1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Aegis_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_F.json
index eb4ebfbf..a3b8e846 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Aegis_F.json
@@ -308,7 +308,6 @@
}
],
"FullSetName": "Boosts.Crafted_Aegis_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_A.json
index 92a152a1..190a070d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Air_Burst_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_B.json
index b7a2f449..0aa2f4ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Air_Burst_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_C.json
index cf806afa..3f4e3218 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Air_Burst_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_D.json
index 7de8640c..7474a6d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Air_Burst_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Air_Burst_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_A.json
index 50da23f4..f2321bc2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_B.json
index fd53e870..5cd15ab6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_C.json
index df2c5453..3c267275 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_D.json
index 8da71a72..ea842160 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_E.json
index 84960641..39aa8b68 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_F.json
index a71b74eb..c72a6210 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Analyze_Weakness_F.json
@@ -112,7 +112,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Analyze_Weakness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_A.json
index 178e91b1..ed03ae4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annihilation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_B.json
index 472fd97f..21d08ca6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annihilation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_C.json
index d51348bd..9fbcd826 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annihilation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_D.json
index 28142314..92c7a737 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annihilation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_E.json
index 14b46f10..a25eb64b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annihilation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_F.json
index 02fb5032..7c387158 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annihilation_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Annihilation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_A.json
index 1e5b31f2..794c5ace 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annoyance_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_B.json
index d12ffec7..7d7638d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annoyance_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_C.json
index 0ee43803..daaa14a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Annoyance_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Annoyance_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_A.json
index 7cd955d9..6c2c00e0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Apocalypse_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_B.json
index 9b6c5b34..fb24890f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Apocalypse_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_C.json
index b129d82d..9606cded 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Apocalypse_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_D.json
index a72aad6b..5678e9f0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Apocalypse_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_E.json
index d6117487..1c69dc99 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Apocalypse_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_F.json
index 5c01a24d..eb17ae57 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Apocalypse_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Apocalypse_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_A.json
index 44982556..6e02ffcb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Armageddon_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_B.json
index 86707f9d..05a97d07 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Armageddon_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_C.json
index d3f83c80..ba443435 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Armageddon_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_D.json
index b743abee..7abe5149 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Armageddon_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_E.json
index b5137050..55c4f0e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Armageddon_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_F.json
index b28b8424..2c89e15f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Armageddon_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Armageddon_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_A.json
index 5f1fa8d7..054805b5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_A.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_B.json
index 90ae4467..4ae029c6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_C.json
index 4a1350c8..4ab8476c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_C.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_D.json
index bbcba440..c251876f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_D.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_E.json
index cb6d4cda..739d26af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_E.json
@@ -215,7 +215,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_F.json
index 8905de5b..4457dc55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Basilisks_Gaze_F.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Crafted_Basilisks_Gaze_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_A.json
index 566fedbe..b4f6df16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Befuddling_Aura_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_B.json
index f87e1534..29419855 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Befuddling_Aura_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_C.json
index feecc993..c8a4854e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Befuddling_Aura_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_D.json
index ea3a0f75..6dd31a33 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Befuddling_Aura_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_E.json
index 9ec887e0..90746dee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Befuddling_Aura_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Befuddling_Aura_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_A.json
index 40fbfa54..cb744743 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_A.json
@@ -254,7 +254,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blessing_of_the_Zephyr_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_B.json
index 8b403f15..306c570d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_B.json
@@ -288,7 +288,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blessing_of_the_Zephyr_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_C.json
index ac718adb..b4d3ee13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blessing_of_the_Zephyr_C.json
@@ -117,7 +117,6 @@
}
],
"FullSetName": "Boosts.Crafted_Blessing_of_the_Zephyr_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_A.json
index cca92351..5449e318 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_B.json
index 252ecea5..06edf8bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_C.json
index d83d8b38..2fc3713f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_D.json
index 1fb3ae40..f681cdd8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_E.json
index 4fac2a1c..c94e509e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_E.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_F.json
index 493a7e41..6e0a4b53 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Blood_Mandate_F.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Blood_Mandate_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_A.json
index d5cee08e..feaf514f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bonesnap_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_B.json
index e09a447f..7a809916 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bonesnap_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_C.json
index 668f1561..f0cd4415 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bonesnap_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bonesnap_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_A.json
index 434314b5..d24c4fbf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_B.json
index 2a0016a2..64a96cc5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_C.json
index 87eab86c..b5cea0d3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_D.json
index a0e55114..59067644 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_E.json
index 9e5dc815..2ccb6580 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_E.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_F.json
index 58d48b99..594f6db6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Brilliant_Leadership_F.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Brilliant_Leadership_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_A.json
index 893d8063..7fecff9d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bruising_Blow_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_B.json
index bbaee373..1bcd7d2d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bruising_Blow_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_C.json
index 5ea6e537..e40aaa0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Bruising_Blow_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Bruising_Blow_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_A.json
index ad569e83..9c080e62 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cacophany_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_B.json
index 271e00da..f4654121 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cacophany_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_C.json
index 68eb13ba..e7be9ce1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cacophany_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_D.json
index 7ece6192..d05c1286 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cacophany_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_E.json
index 6e5b7df9..10bdfc36 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cacophany_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_F.json
index d9774670..0c376ecc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cacophany_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Cacophany_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_A.json
index 77fd3e69..a798ad98 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_B.json
index 8478f9a8..d8a73b82 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_C.json
index e1237fb7..1b700ed9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_D.json
index e0de95fb..528689e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_E.json
index dc18b621..9d2d8e9a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_F.json
index 3d401702..27ba0a84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Calibrated_Accuracy_F.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Calibrated_Accuracy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_A.json
index 583489ce..21d2b7b6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_B.json
index 35e1a42a..6f562ddb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_C.json
index 15dd3d03..269bbcca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_D.json
index d011164e..b74f877e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_E.json
index 3dc48389..d8c5d52e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_F.json
index 68dcb0e8..8332a618 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_of_the_Sandman_F.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Crafted_Call_of_the_Sandman_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_A.json
index d50771be..496db416 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_to_Arms_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_B.json
index b31a1f3a..cf09b599 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_to_Arms_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_C.json
index a6ee36b7..8f4eb559 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_to_Arms_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_D.json
index 6359f635..f7f33493 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_to_Arms_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_E.json
index 67132eef..a4bf9368 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Call_to_Arms_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_F.json
index d49902a5..e6d4c7a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Call_to_Arms_F.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Call_to_Arms_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_A.json
index 0b150e75..eba4617b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Celerity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_B.json
index d2122520..8ef2dae4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Celerity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_C.json
index 0c8da24e..271c51c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Celerity_C.json
@@ -214,7 +214,6 @@
}
],
"FullSetName": "Boosts.Crafted_Celerity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_A.json
index a848843b..b9d50bf4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cleaving_Blow_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_B.json
index 05506d43..c3ce5f2d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cleaving_Blow_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_C.json
index c85599be..2a2885b8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cleaving_Blow_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_D.json
index ccbb4677..400b0bda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cleaving_Blow_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cleaving_Blow_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_A.json
index d8fa57e0..0986d126 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cloud_Senses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_B.json
index 633abffa..e79ce520 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cloud_Senses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_C.json
index b693f25a..933bdf4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cloud_Senses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_D.json
index 029388ca..d2d8bab3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cloud_Senses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_E.json
index 361719c4..5b302cb4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Cloud_Senses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_F.json
index 240801b3..64906a7f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Cloud_Senses_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Cloud_Senses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_A.json
index 81e7eb04..5dd18dd8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_B.json
index 4b397410..57bf1b5c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_C.json
index ed68cddc..776ef670 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_D.json
index 9b59e812..4fe9deb5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_E.json
index c907e53b..0cb655aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_F.json
index b982b5f3..cd53accc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Coercive_Persuasion_F.json
@@ -113,7 +113,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Coercive_Persuasion_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_A.json
index 1e10149a..bffc427f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Commanding_Presence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_B.json
index 95f6992d..802720d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Commanding_Presence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_C.json
index 6a757f5a..674dd5ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Commanding_Presence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_D.json
index 0be43843..1edc0a34 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Commanding_Presence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_E.json
index 28165f20..74eb454e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Commanding_Presence_E.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Commanding_Presence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse.json
index 1bda5f75..353f6373 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_10.json
index 2c787062..ada46600 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_15.json
index 111ecfe7..a09120cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_20.json
index ceebe65d..71037a95 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_25.json
index 18d30a46..606c99ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_30.json
index ebca8acf..8c577d19 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_35.json
index 0e184cbd..531f9660 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_40.json
index d8d2d2c6..033a1d81 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_45.json
index fd1a2e06..eacfcf1e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_50.json
index cf0a5af9..2d6a3c86 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Confuse_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Confuse_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_A.json
index ba342bb3..6a35d8bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_B.json
index c6cd86cd..bbe8188b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_C.json
index 1a69bad1..649e2bae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_D.json
index fbe21bb0..c88c0fde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_E.json
index 2e9483a8..0d46fd46 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_F.json
index 75497388..4d1ef29e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Crushing_Impact_F.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Crushing_Impact_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_A.json
index e5807f79..9bfbab99 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Curtail_Speed_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_B.json
index 3417f4f8..19946d9e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_B.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Curtail_Speed_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_C.json
index 9006d65d..fd583127 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Curtail_Speed_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_D.json
index 11e0b688..40facbac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_D.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Curtail_Speed_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_E.json
index 354e058f..82bdf851 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Curtail_Speed_E.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Curtail_Speed_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage.json
index 42c06d36..67456553 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_10.json
index da32403f..8989ad9f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_10.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_15.json
index 0b5088f7..b94de5d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_15.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_20.json
index 65f04132..3c14a567 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_20.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_25.json
index 2316b747..383cd8a9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_25.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_30.json
index 4c675fcc..92cef908 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_30.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_35.json
index 3092150a..52611b3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_35.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_40.json
index e9b8c259..ce7876ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_40.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_45.json
index 8232aea3..d19a5d84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_45.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_50.json
index f5f5094f..2182df3b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Damage_50.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Damage_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_A.json
index 597e2bea..1c79c6f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_B.json
index c565695c..9a324fbb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_C.json
index 8f06ef1c..275f300b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_D.json
index be10f30d..a9c38201 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_E.json
index f1f0b3ea..e1197bc0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_F.json
index f147c36e..6ea0aa14 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dampened_Spirits_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dampened_Spirits_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_A.json
index 9bfd1a4a..20ed7883 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_B.json
index 378ed099..ea341f66 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_C.json
index 0ea37cfd..2487f3e3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_D.json
index d95ee0ce..b22054f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_E.json
index 67f91462..6aa89787 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_F.json
index 6938fc36..b44680f7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Dark_Watchers_Despair_F.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Crafted_Dark_Watchers_Despair_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_A.json
index 01c798a5..64982e39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Debiliative_Action_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_B.json
index 7203a99e..9d4568ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Debiliative_Action_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_C.json
index 2215964e..ed35eae6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Debiliative_Action_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_D.json
index 69d59df3..0d00dec2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Debiliative_Action_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_E.json
index 54d87736..50216778 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Debiliative_Action_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_F.json
index da5538d9..f9ae148c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Debiliative_Action_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Debiliative_Action_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_A.json
index ded165c0..0e156209 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Decimation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_B.json
index 4ae01da8..0a338da9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Decimation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_C.json
index 1e1b7b93..ae0d22c8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Decimation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_D.json
index 7ead9830..38f06a55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Decimation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_E.json
index 5f10a07b..393d81b1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Decimation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_F.json
index dfae705b..4ddaa48a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decimation_F.json
@@ -112,7 +112,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Decimation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration.json
index f51bfb45..1725418d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_1.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_1.json
index e1460952..f7c7e169 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_1.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_1.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_1",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_2.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_2.json
index 6a50ac78..d52ff785 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_2.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_2.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_3.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_3.json
index 399536c9..3748cdbc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_3.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_3.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_4.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_4.json
index bfe0ef4b..193a7fdf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_4.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_4.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_4",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_5.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_5.json
index 2b251700..3888300f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_5.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_5.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_5",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_6.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_6.json
index 235753b6..f6cb0196 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_6.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_6.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_6",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_7.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_7.json
index e0564476..bec67d38 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_7.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_7.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_7",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_8.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_8.json
index f7c1bf7a..96f03110 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_8.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Decreased_Regeneration_8.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Boosts.Crafted_Decreased_Regeneration_8",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff.json
index 73476f51..ab552dad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_10.json
index bd03fb8d..c41f47a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_10.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_15.json
index 00e500d7..8b53648a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_15.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_20.json
index 398b4939..c02c75fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_20.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_25.json
index 141a614f..00db0f6a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_25.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_30.json
index d9f2db61..7791bb00 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_30.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_35.json
index 6eb5489b..22b94d05 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_35.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_40.json
index eba7c389..eea49f0a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_40.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_45.json
index 26ac4383..f63b519c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_45.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_50.json
index c485a6a3..fcd33211 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_Buff_50.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_Buff_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff.json
index e578450a..25761620 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_10.json
index 1dbea023..52cb11a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_10.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_15.json
index 1af6f35b..b3ea0dde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_15.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_20.json
index a4d4946c..8b0904f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_20.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_25.json
index f5590432..e164987c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_25.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_30.json
index 608fdb01..2cb71fed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_30.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_35.json
index 956fc08c..09432cab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_35.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_40.json
index 6fa3694e..135580e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_40.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_45.json
index 62fdd015..8d70f3bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_45.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_50.json
index 0053826e..fb0b97c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Defense_DeBuff_50.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Defense_DeBuff_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_A.json
index a379c476..46df6cad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Deflated_Ego_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_B.json
index a7f99bf8..27b4b708 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Deflated_Ego_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_C.json
index 153649bb..a0d69516 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Deflated_Ego_C.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Crafted_Deflated_Ego_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_A.json
index 619bcf10..dd0abb44 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_B.json
index 4be6c4ff..0bc042e3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_C.json
index cd32885b..132c6ebb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_D.json
index 4f4266f0..75e5386c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_E.json
index f9115a34..91285108 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_F.json
index 50c32799..58cc2931 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Detonation_F.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Detonation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_A.json
index 56af97f6..7e1139a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Devastation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_B.json
index 09163bf9..4f36d4cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Devastation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_C.json
index 1049c9dd..c270888c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Devastation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_D.json
index e863bbba..577e0e30 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Devastation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_E.json
index 11f0cade..18959c0f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Devastation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_F.json
index de8a3cd3..a9ed467f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Devastation_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Devastation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_A.json
index 561758a9..069a03f5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Discouraging_Words_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_B.json
index 6873593b..8b5b7c1f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Discouraging_Words_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_C.json
index 3ac9cb51..876fb284 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Discouraging_Words_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Discouraging_Words_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_A.json
index 2644e20f..3479ac3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_B.json
index fcc7ed83..db61d7c1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_C.json
index 59ef7613..17a3ea69 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_D.json
index 6b1f1e1f..f1b037d3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_E.json
index 4d39cc59..fd9a17d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_E.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_F.json
index cf2b6f76..4176d5ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Doctored_Wounds_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Doctored_Wounds_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_A.json
index 5585d964..12595301 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_B.json
index b129e4bb..7d1b6850 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_C.json
index 96de97ce..aa174505 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_D.json
index eeeae2b0..04f92ae0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_E.json
index 7cfc41a0..dd866040 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_F.json
index 741d4f1b..07a9d66e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Edict_of_the_Master_F.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Edict_of_the_Master_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_A.json
index f425324e..e7aa32b7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_B.json
index 5cc2023c..1b304ceb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_B.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_C.json
index 65a98b7b..4ea9fd34 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_C.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_D.json
index 9b69feaa..cb875179 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_E.json
index 685acc1d..711ddfc6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_F.json
index 04db405f..65c4a651 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Efficacy_Adaptor_F.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Efficacy_Adaptor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_A.json
index d7a09e81..c6892346 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Encouraged_Accuracy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_B.json
index b0e1dd37..16c429d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Encouraged_Accuracy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_C.json
index 07caa349..9add0ee7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Encouraged_Accuracy_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Encouraged_Accuracy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount.json
index 487fc394..f1697884 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_10.json
index 9ad2223c..8e49b932 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_15.json
index 496ae761..4d9973cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_20.json
index d2ec426c..993efa3d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_25.json
index a54e41b8..1a0d6aa3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_30.json
index 54af5510..dab76b13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_35.json
index cc0dc110..28316b1b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_40.json
index a2728d14..4852e3e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_45.json
index 92daca67..6f997578 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_50.json
index 617c67e4..e9a25069 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Endurance_Discount_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Endurance_Discount_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_A.json
index c9a870eb..1e703464 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Energy_Manipulator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_B.json
index bdd30fa3..51f6e2b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_B.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Energy_Manipulator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_C.json
index 4ff377ce..d114671f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Energy_Manipulator_C.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Boosts.Crafted_Energy_Manipulator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_A.json
index b8bc5cf6..ae0d97ab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_B.json
index f80c1dcc..eac9c2f7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_C.json
index 5533b95d..0920309d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_D.json
index adc4ab5a..c8979c7c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_E.json
index 5a445301..97e8a6b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_F.json
index 1accc94a..9a63b44c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Enfeebled_Operation_F.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Enfeebled_Operation_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_A.json
index 4423ff4b..49b214d6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Entropic_Chaos_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_B.json
index 0575b41f..aafbbbde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Entropic_Chaos_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_C.json
index 01b3e74c..a9cf295b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Entropic_Chaos_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_D.json
index 56fd5187..9cad392c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Entropic_Chaos_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_E.json
index 42e53b52..8818352b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Entropic_Chaos_E.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Entropic_Chaos_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_A.json
index cbd72fe5..305f6fb5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Eradication_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_B.json
index 5c9446a0..b6e6ed8e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Eradication_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_C.json
index f0ed2b1d..f426ee2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Eradication_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_D.json
index 039538f9..29a90863 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Eradication_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_E.json
index be16f34c..9ba5f050 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Eradication_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_F.json
index 20acb61d..5d48b587 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Eradication_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Eradication_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_A.json
index c4007a49..8df120b4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_B.json
index e98eaa39..68a12baa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_C.json
index e10451ae..853b9f08 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_D.json
index 6826a563..853fb8b7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_E.json
index 5ad65c11..c6b92223 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_F.json
index 3f4773cd..b40e18a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Essence_of_Curare_F.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Essence_of_Curare_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_A.json
index a97ae546..3f6dbfba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Executioners_Contract_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_B.json
index 18f88134..7cf43465 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Executioners_Contract_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_C.json
index c00000f9..453ae58e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Executioners_Contract_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_D.json
index 99d8a236..57a215e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Executioners_Contract_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_E.json
index e78177f0..e3516831 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Executioners_Contract_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_F.json
index 77bd3215..817e62ac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Executioners_Contract_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Executioners_Contract_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_A.json
index cf4b6f54..85e5d02c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_B.json
index d001d31f..9aa3c685 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_C.json
index b35f7fb4..b31154fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_D.json
index 348553ae..66cee65f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_E.json
index ea1e1dcb..9f453def 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_F.json
index 6d17c666..351f209a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Expedient_Reinforcement_F.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Crafted_Expedient_Reinforcement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_A.json
index d1e2d2d6..160fe9bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploit_Weakness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_B.json
index 00d27c83..0112c0cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploit_Weakness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_D.json
index 64c33105..67d01ca0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploit_Weakness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_c.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_c.json
index c4fdb79e..14cbdd10 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_c.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploit_Weakness_c.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploit_Weakness_c",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_A.json
index 5edc46d0..6db3e334 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploited_Vulnerability_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_B.json
index 7be0d987..06422f07 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploited_Vulnerability_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_C.json
index f565cbda..1ab25d8a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Exploited_Vulnerability_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Exploited_Vulnerability_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_A.json
index ae1c18dd..b9fe5e8b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_A.json
@@ -420,7 +420,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Explosive_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_B.json
index 4f853ed0..6a8ba44d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_B.json
@@ -182,7 +182,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Explosive_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_C.json
index 74d39984..e1d8d7bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Explosive_Strike_C.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Explosive_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_A.json
index ec3e2651..979f45de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_B.json
index b031ceda..072cd64c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_C.json
index 4110f9df..0857893b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_D.json
index 5976aa63..efed591d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_E.json
index 9d70bbdb..3a49fc77 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_F.json
index 02a68178..f208cac7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Extreme_Measures_F.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Extreme_Measures_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_A.json
index 46b7a58e..d15146ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Far_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_B.json
index 3e8e3c26..3c72579b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Far_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_C.json
index b120bb27..e835a636 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Far_Strike_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Far_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear.json
index 65f9a86e..cd9b63e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_10.json
index 554bca1a..c4a3fa11 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_10.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_15.json
index c89ea21b..07a50d44 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_15.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_20.json
index 17d60ff5..db87fc2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_20.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_25.json
index ae34c195..992d3729 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_25.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_30.json
index eb70edff..d198dea1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_30.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_35.json
index b7664b66..d9841531 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_35.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_40.json
index ce7dc5ce..6418357c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_40.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_45.json
index 3e870b3f..b71219ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_45.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_50.json
index 7197513b..cb45cfd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fear_50.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fear_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly.json
index d4390fae..d56e1666 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_10.json
index 34576ecb..730023c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_15.json
index de493c23..15188a89 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_20.json
index 3cbe3c00..81dae398 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_25.json
index f2c439da..cd112830 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_30.json
index f7a5bdd5..d783a1a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_35.json
index 64afae18..d728fdb5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_40.json
index dba8e397..986c0e5d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_45.json
index c3552e2a..28bbffed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_50.json
index 6cf96cd3..2cdef3f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fly_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fly_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_A.json
index 131e4ed4..5a749d00 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Focused_Smite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_B.json
index 995cee87..081ec97c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Focused_Smite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_C.json
index 639eaf26..699e0740 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Focused_Smite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_D.json
index 76c5b5b7..cb1b8c7d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Focused_Smite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_E.json
index 37dbd3fa..2b7dfb7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Focused_Smite_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Focused_Smite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_A.json
index befc559c..253671fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_A.json
@@ -420,7 +420,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_B.json
index 2c1ea08a..a1058eed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_B.json
@@ -182,7 +182,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_C.json
index d73817b5..a7a653bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_C.json
@@ -182,7 +182,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_D.json
index dd65aa03..fb9567f8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_E.json
index b67eef95..871c2236 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_E.json
@@ -454,7 +454,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_F.json
index 463fed34..c52adb61 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Force_Feedback_F.json
@@ -113,7 +113,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Force_Feedback_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_A.json
index f5bf22e4..41f0de76 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_B.json
index cc658fc1..3e1490a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_C.json
index d68e256c..b4d2e71f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_D.json
index afd10588..0d680411 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_E.json
index 9872c10e..bffc00af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_F.json
index 1634c981..94b32d7d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fortunata_Hypnosis_F.json
@@ -151,7 +151,6 @@
}
],
"FullSetName": "Boosts.Crafted_Fortunata_Hypnosis_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_A.json
index b128d844..202f2f55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Freebird_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_B.json
index f2d54d07..56e9abbb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Freebird_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_C.json
index 7e8b806d..89c77706 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Freebird_C.json
@@ -214,7 +214,6 @@
}
],
"FullSetName": "Boosts.Crafted_Freebird_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_A.json
index 35530fb7..de56705d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_B.json
index caa0163c..973ed15b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_C.json
index dd788f13..9dc99316 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_D.json
index 94bb8f0c..109f6992 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_E.json
index 35509121..db0a1657 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_F.json
index e4a91f60..334cdfb5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Fury_of_the_Gladiator_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Fury_of_the_Gladiator_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_A.json
index 4012cf76..bf01947d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_B.json
index f6176666..f4a48abe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_C.json
index d097ee22..2bad1927 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_D.json
index 8ad8aea7..e68f811b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_E.json
index bc475f23..ab7b1dde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_F.json
index 3a797ef5..a0e06d0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gaussians_Synchronized_FireControl_F.json
@@ -112,7 +112,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Gaussians_Synchronized_FireControl_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_A.json
index 3f170a70..5360ad88 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_B.json
index 05bf59f2..1a4c3bed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_C.json
index dd40e5f7..2682bf4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_D.json
index 345c82dc..73187e5c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_E.json
index 53212a0b..7c7c1fd5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_F.json
index 1a707b6d..cb706b6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ghost_Widows_Embrace_F.json
@@ -148,7 +148,6 @@
}
],
"FullSetName": "Boosts.Crafted_Ghost_Widows_Embrace_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_A.json
index ead178d7..5d032bfe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_B.json
index 707826a7..b4c4b0f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_C.json
index 205d391d..b39399a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_D.json
index 1161aaf6..8118069d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_E.json
index 85bc19e9..f912bcd5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_E.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_F.json
index edfddc0f..94245ca8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gift_of_the_Ancients_F.json
@@ -497,7 +497,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gift_of_the_Ancients_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_A.json
index b521e13c..2e70fbfe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_B.json
index 44399540..fcb1afed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_C.json
index 675be122..78508b30 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_D.json
index d131a9d9..0a8ada12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_E.json
index 153b7d62..73a2d717 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_F.json
index 49d868dc..121dbbb9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Armor_F.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Crafted_Gladiators_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_A.json
index 363d4e03..f146ae95 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_B.json
index ba63bf8f..93d73950 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_C.json
index 6b6604fe..cda066a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_D.json
index 519ba85a..fc1f9bb9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_E.json
index 5e6e1fdd..59c1fdb8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_F.json
index d741f7cc..0e8c92de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Javelin_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Gladiators_Javelin_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_A.json
index 568ea74d..770376ea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_A.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Net_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_B.json
index 2b7eb716..e48eaa35 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Net_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_C.json
index 630c877e..da415802 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_C.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Net_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_D.json
index 007507cd..4ab88813 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_D.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Net_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_E.json
index 122659be..d513979a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_E.json
@@ -215,7 +215,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Net_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_F.json
index 52131b53..3d2e7c17 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Net_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Gladiators_Net_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_A.json
index ebf658ca..8019e907 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_B.json
index 26defcdf..6d6bebd0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_C.json
index 54557c20..60eef9ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_D.json
index b274aa6f..f7aecffe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_E.json
index 0843d007..a0a287b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gladiators_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_F.json
index 3c1f0507..b0eec603 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gladiators_Strike_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Gladiators_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_A.json
index 5a584944..84702fa3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_B.json
index 3e82a952..a646763c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_C.json
index 5278ebae..54eb301e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_D.json
index c99e764b..50bad3a2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_E.json
index c9617b90..2b619e63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_F.json
index 1fb46e86..00a6c9c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Glimpse_of_the_Abyss_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Glimpse_of_the_Abyss_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_A.json
index 02e664c4..c07c7569 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_B.json
index e029e968..ebc7ad99 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_C.json
index 6dbccdb8..9f86c577 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_D.json
index 35b15797..f5e74b13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_E.json
index a793b164..65e3d3c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_F.json
index 407d5d6f..6b3dbd10 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Gravitational_Anchor_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Gravitational_Anchor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_A.json
index 62003f47..f39d1e26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_B.json
index 37de39f9..9d00d292 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_C.json
index 6605d009..43c1fd91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_D.json
index 75653052..6ebda316 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_E.json
index 73bbd53d..56fdc16f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_E.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_F.json
index 77755630..09f8a5cf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Harmonized_Healing_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Harmonized_Healing_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal.json
index 48125fc7..3a99159a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_10.json
index a80eb039..9e568279 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_10.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_15.json
index b33d13ef..d723103c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_15.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_20.json
index 5791cad1..4ea34d22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_20.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_25.json
index b6721e44..a5bee641 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_25.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_30.json
index 725fb219..09aa059a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_30.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_35.json
index b6ae43bb..5dccb1c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_35.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_40.json
index b7586943..deca148b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_40.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_45.json
index 99f112b9..e888acee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_45.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_50.json
index 2b5e9433..75c087db 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Heal_50.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Heal_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_A.json
index 3e1a833c..7e68f1d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hecatomb_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_B.json
index fcc1cdbe..a36a2e55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hecatomb_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_C.json
index bdbdd6a4..cba7df18 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hecatomb_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_D.json
index 5dba0460..b1e83613 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hecatomb_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_E.json
index fc0551c9..f300c942 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hecatomb_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_F.json
index 190cdd81..50180f67 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hecatomb_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Hecatomb_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_A.json
index b0e1ae82..9f6d2eb2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hibernation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_B.json
index e8f4df88..d23379fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hibernation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_C.json
index 2725c21d..0954806f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hibernation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_D.json
index 9bda9620..d1bfd5f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hibernation_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_E.json
index 4bff6a78..85cd3740 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hibernation_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hibernation_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold.json
index 9f5637f4..de84b86a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_10.json
index 9d32fce7..bce100f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_15.json
index d8d42630..73350866 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_20.json
index aebc3708..26ecc0ca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_25.json
index bbaf5406..57e16bb7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_30.json
index 907d2736..2fbe5e8a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_35.json
index 69154514..cf1eb494 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_40.json
index 0116f456..243d8f0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_45.json
index 924a4fb9..4630d5dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_50.json
index 57990e72..0a4752e1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Hold_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Hold_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_A.json
index 420262fc..5be81a22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Horror_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_B.json
index 45de3b55..82cf0ff2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Horror_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_C.json
index 4580b793..adab8536 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Horror_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_D.json
index 8d6778f1..78aa2cd7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Horror_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_E.json
index 7640a9d7..858bb6dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Horror_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Horror_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize.json
index a152976a..a2c05e66 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_10.json
index 96e55e06..c91c44df 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_15.json
index 461928ac..d4c237f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_20.json
index beba291c..5a363ab7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_25.json
index b3ef2062..45b937c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_30.json
index 0a5a7122..d9696911 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_35.json
index 9f4b4506..620c16b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_40.json
index 28e6df54..db108ada 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_45.json
index 5e1eb969..390656a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_50.json
index 3b2cdbd7..be5eddd7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Immobilize_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Immobilize_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_A.json
index ca95e6ff..db6bc400 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_B.json
index 787f3002..98a88031 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_B.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_C.json
index 21e47b32..9980a4d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_D.json
index 1f90da01..482a3014 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_D.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_E.json
index 9c16464b..fbad8a82 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_E.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_F.json
index 8d3366a3..712b3fa1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impeded_Swiftness_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Impeded_Swiftness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_A.json
index 746234be..e467cabe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervious_Skin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_B.json
index 77d5ed98..031a274a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervious_Skin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_C.json
index 50921fae..40e6d361 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervious_Skin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_D.json
index 32da8a6e..c166fcdd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervious_Skin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_E.json
index e0b52bcc..520f440b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervious_Skin_E.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Crafted_Impervious_Skin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_A.json
index dc6fe165..8916b232 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervium_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_B.json
index a5820898..3fc7831d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervium_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_C.json
index 16731fdb..c569b356 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervium_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_D.json
index f6b076c2..4069451b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervium_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_E.json
index 2f36bc0a..e1163f51 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Impervium_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_F.json
index df0f2a89..6a32519d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Impervium_Armor_F.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Crafted_Impervium_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_A.json
index 1ba588d2..0646ecff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Induced_Coma_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_B.json
index 1443ceda..3fc8c719 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Induced_Coma_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_C.json
index a4148f79..301ab8d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Induced_Coma_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_D.json
index 6f12b642..1dc95bd6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Induced_Coma_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_E.json
index 9054ce1e..4224101e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Induced_Coma_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_F.json
index 7d2ffe88..6cc9928e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Induced_Coma_F.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Crafted_Induced_Coma_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible.json
index ed827de5..04da3679 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_10.json
index 3b59c18c..6037da67 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_10.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_15.json
index 92737964..82c603b5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_15.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_20.json
index ba5e18e6..dcd4189a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_20.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_25.json
index 14e12167..22164656 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_25.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_30.json
index 8b39e099..fc7834d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_30.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_35.json
index 81e16e7c..db084088 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_35.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_40.json
index d7e2bfd0..394723f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_40.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_45.json
index f662f63e..da961f2b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_45.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_50.json
index b8581c79..989ac97b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Intangible_50.json
@@ -183,7 +183,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Intangible_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt.json
index aeaaae69..ac074bd7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_10.json
index 3d7f2e9c..5aa3032a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_15.json
index 2423af52..9a58ade1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_20.json
index 58a9af85..10715684 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_25.json
index abb4149e..824837c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_30.json
index 07ced70b..a1a3e382 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_35.json
index 613c541c..469dd295 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_40.json
index adfbf85b..7552e101 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_45.json
index cab28ba1..b3520dab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_50.json
index f58b4bd0..8c5b1265 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Interrupt_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Interrupt_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_A.json
index bd25347f..ba35c8ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jaunt_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_B.json
index 05e304cd..bb43bf74 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jaunt_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_C.json
index ebac435e..9276505d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jaunt_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jaunt_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_A.json
index c939c116..637b3a53 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Javelin_Volley_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_B.json
index f474f3be..b8f33f22 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Javelin_Volley_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_C.json
index 46410887..d645934a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Javelin_Volley_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_D.json
index 92fb5317..9a83b10c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Javelin_Volley_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_E.json
index 57bb359c..91d51fb7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Javelin_Volley_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_F.json
index 6e51ce08..2d4b8458 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Javelin_Volley_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Javelin_Volley_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump.json
index 8c2cad55..a09ad019 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_10.json
index aa3b7c18..6238425c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_10.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_15.json
index f968ab8c..8b132e68 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_15.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_20.json
index 4e9c945e..40c8e450 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_20.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_25.json
index fb7d5674..0b260ed9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_25.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_30.json
index a45dfeb5..6416e0e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_30.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_35.json
index 184e496a..e150cf95 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_35.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_40.json
index 54fc681f..8829a80b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_40.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_45.json
index 0b5fc17b..197fc2d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_45.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_50.json
index d09d78c1..885cb02d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Jump_50.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Jump_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_A.json
index 949aef3c..bb4df764 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Karma_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_B.json
index c924e8ea..e39c657e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Karma_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_C.json
index 83cce6cb..68607ad1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Karma_C.json
@@ -113,7 +113,6 @@
}
],
"FullSetName": "Boosts.Crafted_Karma_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_A.json
index 5dcfbcec..34fc185d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Combat_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_B.json
index 90329e77..7575e17f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Combat_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_C.json
index adf86d12..6de8f1e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Combat_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_D.json
index 1fcfa0f5..f58508c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Combat_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_E.json
index 2ef12eec..946c3c75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Combat_E.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Kinetic_Combat_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_A.json
index b5fa105c..5a0a965a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_A.json
@@ -420,7 +420,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_B.json
index 9c6e2a49..fa4caa01 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_B.json
@@ -182,7 +182,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_C.json
index 4b02d8a3..d2717652 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_C.json
@@ -182,7 +182,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_D.json
index 9d0232b4..51fa4dbe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_E.json
index 3dba07fd..b7027553 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_E.json
@@ -454,7 +454,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_F.json
index b2fcf822..7d2e17d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kinetic_Crash_F.json
@@ -454,7 +454,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kinetic_Crash_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_A.json
index fb9deb04..f2df11e2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kismet_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_B.json
index 69c4a38b..22794d48 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kismet_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_C.json
index 873658de..34982fd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kismet_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_D.json
index 3bf27080..179524eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Kismet_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_E.json
index 383d3f8d..a0c92969 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Kismet_E.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Kismet_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback.json
index 781d922e..0ddf8c79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_10.json
index 3a48ecf0..6c70a218 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_10.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_15.json
index 008ff124..3f3f839a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_15.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_20.json
index 9b82bb22..877fa021 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_20.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_25.json
index 1a3612f4..1b1c6535 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_25.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_30.json
index 05dbb298..f2f794c8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_30.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_35.json
index e36b068e..096e4964 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_35.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_40.json
index d9cf9319..5ae66c2f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_40.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_45.json
index c543b811..97cf5469 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_45.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_50.json
index ba16b638..19a70c55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Knockback_50.json
@@ -148,7 +148,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Knockback_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_A.json
index 4143099f..cc4126f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_B.json
index 0ae5a9ea..3aea8ae5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_C.json
index 1a485e0e..d05ddacb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_D.json
index be440a95..b2ad5c75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_E.json
index cd09d877..13360086 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_F.json
index 779e4216..be96c783 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lethargic_Repose_F.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lethargic_Repose_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_A.json
index 1ac60bb9..9fba524c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_A.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lockdown_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_B.json
index ca8ee146..46b37110 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lockdown_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_C.json
index 09c16543..cd0cad4e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_C.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lockdown_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_D.json
index 05f2b8dc..d8b142c9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_D.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lockdown_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_E.json
index 3a98b431..14e8e9d7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_E.json
@@ -215,7 +215,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Lockdown_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_F.json
index c7c7c0be..60649d52 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Lockdown_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Lockdown_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_A.json
index 130bd043..3d3b3deb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_B.json
index befcd317..b4671c28 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_C.json
index e26a60ab..720751ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_D.json
index 7c6337a5..302a4e2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_E.json
index b325bdfb..b187847f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_E.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_F.json
index 66bbe0a6..4dde5797 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Luck_of_the_Gambler_F.json
@@ -494,7 +494,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Luck_of_the_Gambler_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_A.json
index 2c40f981..d35ab501 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Maelstroms_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_B.json
index 9f254ea0..e68a4a62 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Maelstroms_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_C.json
index ae1aa3bc..cef25cc2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Maelstroms_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_D.json
index 5d4ad084..20620fef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Maelstroms_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Maelstroms_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_A.json
index c19f1354..8ec00aa0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Makos_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_B.json
index b95c99ed..12e5b897 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Makos_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_C.json
index ec13d74c..bf4de02b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Makos_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_D.json
index cb7fb4e5..0837ecda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Makos_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_E.json
index 04c9ad70..01bce4af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Makos_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_F.json
index a6e5bc51..b0fcea1a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Makos_Bite_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Makos_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_A.json
index b7c10d44..cef39bcc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Malaises_Illusions_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_B.json
index bb58084f..deae47b7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Malaises_Illusions_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_C.json
index e8bd2ce1..f882e1a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Malaises_Illusions_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_D.json
index 11849b42..bf9fba74 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Malaises_Illusions_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_E.json
index b6c73900..e229c88d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Malaises_Illusions_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_F.json
index 998c0fe2..dcd7654d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Malaises_Illusions_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Malaises_Illusions_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_A.json
index 5c4669dc..a8b9c2bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Miracle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_B.json
index 36002773..8708f367 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Miracle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_C.json
index 454ed848..2a902ebf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Miracle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_D.json
index d63a7720..ab855bbf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Miracle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_E.json
index ebf21deb..1ecf0cd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_E.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Miracle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_F.json
index 41c46d6e..ea852666 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Miracle_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Miracle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_A.json
index ec7c4501..847568bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_B.json
index 454decd2..b58ca244 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_C.json
index 55f06744..a4e5ab44 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_D.json
index a851a904..efd7c374 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_E.json
index 153c1604..cb616c5f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_F.json
index 424e99c4..09e46f84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Mocking_Beratement_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Mocking_Beratement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_A.json
index 40f91b8e..cdcd9207 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_B.json
index c528fdcb..5b8628ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_C.json
index c3617753..0dc0fc96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_D.json
index a1892d55..3e5be9b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_E.json
index b57ebf89..24a48ffc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_F.json
index ab2bbc37..eb1729eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Multi_Strike_F.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Multi_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_A.json
index c1f11969..03467c0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_B.json
index 4607419c..a8c61bbe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_C.json
index 7e456314..1a3a0561 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_D.json
index ed0f440e..87a3c0c1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_E.json
index 15815f24..bcd9064a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_F.json
index 91efcf67..14ae876a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Neuronic_Shutdown_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Neuronic_Shutdown_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_A.json
index e7ab56f3..848cd19d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_B.json
index fc00cd89..cc471647 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_C.json
index 2820791a..20f66a3f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_D.json
index 640250df..ce1c8f08 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_E.json
index 8d9e17a0..1150cdba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_F.json
index 6172a932..7e05117c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Nightmare_F.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Nightmare_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_A.json
index 18c5e47a..5de8b567 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_B.json
index 6fde464e..54b4dbeb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_C.json
index 584747c2..164a0ce5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_D.json
index e4fe50fd..c6ac579a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_E.json
index 0292f780..131decd5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_E.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_F.json
index 24ec9650..4e108cfa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Numinas_Convalesence_F.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Crafted_Numinas_Convalesence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_A.json
index 05eeffda..a3a7991f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Obliteration_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_B.json
index 514686fe..b9f2a761 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Obliteration_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_C.json
index 9e1df9ec..3ad6918f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Obliteration_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_D.json
index ad645166..d1ab7185 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Obliteration_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_E.json
index b26f4bc9..27c6d78d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_E.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Obliteration_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_F.json
index e96388da..e0d5635a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Obliteration_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Obliteration_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_A.json
index 9daff39d..9eb85567 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_B.json
index 1ae07ad8..e9426684 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_B.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_C.json
index bb57dc40..4966f4fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_D.json
index b9908e8e..2e51498b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_D.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_E.json
index 3af560f7..3c62c2f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_E.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_F.json
index 0899b255..d1027218 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pacing_of_the_Turtle_F.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Crafted_Pacing_of_the_Turtle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_A.json
index 10a5a5a1..d39a3271 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Panacea_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_B.json
index 8365e737..b7cc976d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Panacea_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_C.json
index a0a3980c..f53a1bdc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Panacea_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_D.json
index 97d723d8..60a03417 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Panacea_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_E.json
index 55c4e90e..d8d2f304 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_E.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Panacea_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_F.json
index b12ed561..49b52215 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Panacea_F.json
@@ -180,7 +180,6 @@
}
],
"FullSetName": "Boosts.Crafted_Panacea_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_A.json
index 0253896c..a542853c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Paralytic_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_B.json
index 5169c841..4195afa2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Paralytic_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_C.json
index 60633684..f7d261f1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Paralytic_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_D.json
index 19da57e4..a6b737ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Paralytic_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_E.json
index a4e5e956..2494d4ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Paralytic_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Paralytic_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_A.json
index 83c65948..f507e2b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perfect_Zinger_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_B.json
index 9e52315d..7341608e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perfect_Zinger_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_C.json
index eeb63002..8fc83652 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perfect_Zinger_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_D.json
index b7827fa3..3dd3318c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perfect_Zinger_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_E.json
index 8dd1bf69..87e16f25 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perfect_Zinger_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_F.json
index 5f20924a..b67527d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perfect_Zinger_F.json
@@ -148,7 +148,6 @@
}
],
"FullSetName": "Boosts.Crafted_Perfect_Zinger_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_A.json
index 63fd4768..80ece97c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Performance_Shifter_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_B.json
index a6a62c93..d1d99865 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_B.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Performance_Shifter_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_C.json
index c2e7a701..7d36ebf8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_C.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Performance_Shifter_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_D.json
index 8c0af7fb..c09b286d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Performance_Shifter_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_E.json
index 2c5b28cb..6229e7d7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Performance_Shifter_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_F.json
index 1cae3386..559a0e6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Performance_Shifter_F.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Performance_Shifter_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_A.json
index b5128626..fc7e5a3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_B.json
index 5ce0095d..d012db84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_C.json
index f7b987c1..54a7a449 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_D.json
index b03f6edc..9184e95c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_E.json
index 4d057608..6f068e2c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_F.json
index 7b16ef49..875441e5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Perplex_F.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Perplex_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_A.json
index 0b7d0025..38517a91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Positrons_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_B.json
index 0674aae0..55873e2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Positrons_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_C.json
index fde788fb..1c597c8c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Positrons_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_D.json
index b2cfa85f..f7c64b6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Positrons_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_E.json
index a90e9f24..55aa0b86 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Positrons_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_F.json
index 11dee8cb..d4b55dfb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Positrons_Blast_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Positrons_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_A.json
index b63b6086..991823de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pounding_Slugfest_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_B.json
index de6aec36..f21fe020 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pounding_Slugfest_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_C.json
index 4235579a..3159dc08 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pounding_Slugfest_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_D.json
index 5aaef299..e98d9655 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pounding_Slugfest_D.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Pounding_Slugfest_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_A.json
index 4281d96c..b9c178fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Preventive_Medicine_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_B.json
index 00b12c8e..175e8dff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_B.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Preventive_Medicine_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_C.json
index ef43fa9e..e1dbcc03 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Preventive_Medicine_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_D.json
index 783a96b3..8295b490 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_D.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Preventive_Medicine_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_E.json
index 34b91d88..ac13ef4c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_E.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Preventive_Medicine_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_F.json
index 5f534376..d6a57934 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Preventive_Medicine_F.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Preventive_Medicine_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_A.json
index 80c98c5a..61514d80 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pulverizing_Fisticuffs_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_B.json
index c48489ef..19ef8917 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_B.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pulverizing_Fisticuffs_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_C.json
index 69976848..a6bbdeac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Pulverizing_Fisticuffs_C.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Pulverizing_Fisticuffs_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_A.json
index 94b3fd8b..dc36ce49 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Quickfoot_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_B.json
index 60b2d418..886998e5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Quickfoot_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_C.json
index a388f7a4..02f4cdb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Quickfoot_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Quickfoot_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_A.json
index 9fe99b5a..0b1d4cdd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ragnarok_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_B.json
index c7cade89..e13860a2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ragnarok_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_C.json
index e65d85ca..e0021c0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ragnarok_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_D.json
index 59d7e750..6710b4a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ragnarok_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_E.json
index e0b4b702..3fdc3dab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ragnarok_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_F.json
index 450ae756..abd31343 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ragnarok_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Ragnarok_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range.json
index 1f40a867..a569aaaf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_10.json
index cfcf9cd2..e9a27462 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_15.json
index 3588648e..42bf9eff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_20.json
index 5be3f688..28c6a3e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_25.json
index dc79455e..c1184281 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_30.json
index 6bfa320f..bb766003 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_35.json
index 9e2747e1..7f885a1d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_40.json
index f9931b3b..df6f3260 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_45.json
index edc59ff9..640dcf97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_50.json
index 8dc12b6b..b4da399c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Range_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Range_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_A.json
index 0d888cf3..ea3089cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_B.json
index 274cc7f3..bee20cf5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_C.json
index d605cd42..2ac20336 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_D.json
index 32c3b4a3..3d4c2873 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_E.json
index 5217d49b..2fb09a2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_F.json
index bd557199..7243dcde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Razzle_Dazzle_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Razzle_Dazzle_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_A.json
index 302a518a..4b831aea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_B.json
index aeba0bf2..96f94f9d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_C.json
index 89a961f6..ace52267 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_D.json
index 6d239c41..04854045 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_E.json
index cbb8e338..d4ae62f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_F.json
index 9d47f050..dc5c45fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Armor_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Armor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_A.json
index 859053ad..3c6c9eeb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_A.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Defenses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_B.json
index d635df5c..95280234 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Defenses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_C.json
index b89b5081..cf4917a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Defenses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_D.json
index 9820b744..5ec7a301 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_D.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Defenses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_E.json
index d6662c4a..d19d7db9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_E.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Reactive_Defenses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_F.json
index e309be02..2b35a7ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Reactive_Defenses_F.json
@@ -389,7 +389,6 @@
}
],
"FullSetName": "Boosts.Crafted_Reactive_Defenses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge.json
index 6bccadf4..c1b122d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_10.json
index 99093521..b2bb9ece 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_15.json
index 91df9d2c..79ea073c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_20.json
index 72d5ce3e..e7cfd79a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_25.json
index cb6d189c..83332c75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_30.json
index 18fa0881..08a46517 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_35.json
index 735de963..fdf6cc0b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_40.json
index 0e98ef49..6e07c6f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_45.json
index fe012259..25a86537 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_50.json
index b0a65f6a..3a4695d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recharge_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recharge_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery.json
index 5fd3d66a..c1a9d1d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_10.json
index 202c09de..b18c058b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_10.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_15.json
index 366de438..a57ca6cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_15.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_20.json
index 53c59da0..6975e632 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_20.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_25.json
index 0d7f47f5..fa67e466 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_25.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_30.json
index d3776a45..798976fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_30.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_35.json
index 515db5ba..2d6c5479 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_35.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_40.json
index c16f18df..838e3ef5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_40.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_45.json
index a02bf8ae..1f851bd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_45.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_50.json
index 30e96b92..7448b81e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Recovery_50.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Recovery_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_A.json
index 6ebe6274..0a86b65f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rectified_Reticle_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_B.json
index d452118e..19a84c12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rectified_Reticle_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_C.json
index acb36acb..062d1467 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rectified_Reticle_C.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Rectified_Reticle_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_A.json
index 8744cc5f..7b13aa8c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_B.json
index 47321fbe..79a8e4ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_C.json
index 81e7744d..f74f2940 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_D.json
index 74220299..91b3f7e1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_E.json
index 687576c2..3ed0649f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_E.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_F.json
index da5bff72..98ae0150 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Red_Fortune_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Red_Fortune_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_A.json
index 5b7f0fbf..bcaac4c8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Regenerative_Tissue_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_B.json
index 128c7d61..bfc6f922 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Regenerative_Tissue_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_C.json
index 0949fa0f..c0a18450 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Regenerative_Tissue_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_D.json
index f12b4884..dd8523f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Regenerative_Tissue_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_E.json
index 3d5745fb..9aa99593 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Regenerative_Tissue_E.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Regenerative_Tissue_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage.json
index 104d0c82..c7bf8c70 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_10.json
index 6d4eeccd..a2900701 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_10.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_15.json
index 9faa2c7f..14991611 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_15.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_20.json
index 0fb0626b..88da2536 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_20.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_25.json
index 54a23c93..acf71908 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_25.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_30.json
index e694a920..14bfdfaa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_30.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_35.json
index f0e9a80e..a3281cb5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_35.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_40.json
index 28261afb..dc8e8e13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_40.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_45.json
index f9a54de3..6f9473a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_45.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_50.json
index 6bda8095..c9192b4c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Res_Damage_50.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Res_Damage_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_A.json
index 09830ceb..e8bc3fca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rooting_Grasp_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_B.json
index 1279c3df..3d23bf02 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rooting_Grasp_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_C.json
index 669b86cf..41fa3d47 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rooting_Grasp_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_D.json
index 43b72e1b..858b438b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rooting_Grasp_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_E.json
index 1ada4008..161da095 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rooting_Grasp_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rooting_Grasp_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_A.json
index a6c371df..80cbc5aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_B.json
index c9f0b8a4..898f95bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_C.json
index 36b24db2..debe0bb2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_D.json
index 34a7b62c..33916bb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_E.json
index 5230f347..450833b5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_F.json
index b89eb535..1df53a42 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Rope_A_Dope_F.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Rope_A_Dope_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_A.json
index 57054d63..1cbfb079 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ruin_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_B.json
index c815641f..3227c226 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ruin_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_C.json
index 0be4319e..4b8d4f76 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ruin_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_D.json
index 8f43912a..1d908636 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ruin_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_E.json
index 317d1ac8..46254ec3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Ruin_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Ruin_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run.json
index dab1d145..2c4615a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_10.json
index 5464c683..70309fdb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_15.json
index df25374d..63954886 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_20.json
index 37fccd77..df6c1942 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_25.json
index 0523c9f2..470341a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_30.json
index f1245e82..b39b220f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_35.json
index 5e4514cc..6957fb4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_40.json
index 7eb0fdab..eb83423e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_45.json
index 735a28af..a7a6152c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_50.json
index c007ebf0..c9be7873 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Run_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Run_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_A.json
index 3e1ee358..976141b0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Salvo_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_B.json
index 9ba0a586..95a15696 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_B.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Salvo_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_C.json
index d45d61bd..726d8d8e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Salvo_C.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Salvo_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_A.json
index 574a8d94..1eb6b09a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_B.json
index 53243f46..ef6cc8fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_C.json
index 8eeaf911..b1872497 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_D.json
index 95a4297a..fbf5e750 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_E.json
index a5b92a20..c5941d7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_F.json
index 61fb4bb6..63b3606d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sciroccos_Dervish_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Sciroccos_Dervish_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_A.json
index 14d81a10..8db6271f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_B.json
index e4bb45db..8befa776 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_C.json
index 60968f57..0e3c00e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_D.json
index 717803d3..36923780 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_E.json
index 7844b26b..f1ce0dfc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_E.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_F.json
index 816fe940..329db5eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Serendipity_F.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Serendipity_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_A.json
index aa49171f..b9ad9d23 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Breaker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_B.json
index fbaeb2bc..57b673e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Breaker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_C.json
index b9b814eb..e642f242 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Breaker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_D.json
index 1dddc66e..ac9ac01e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Breaker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_E.json
index 334c651c..2350040c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Breaker_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_F.json
index deb8de30..56a136ab 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Breaker_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Shield_Breaker_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_A.json
index bd4ad329..4cf82e54 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_A.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Wall_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_B.json
index e88e6b83..3be64f05 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_B.json
@@ -496,7 +496,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Wall_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_C.json
index 03f78045..9fc1834b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Wall_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_D.json
index e2fa33b6..8aa35be5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_D.json
@@ -530,7 +530,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Wall_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_E.json
index d3c4275e..c4e8e90d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_E.json
@@ -462,7 +462,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Shield_Wall_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_F.json
index cef9de1e..d04e70b6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Shield_Wall_F.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Crafted_Shield_Wall_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_A.json
index d7e9470c..d610cfda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_B.json
index 8d4a2c60..0e92465d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_C.json
index c49c3335..78b7ec6c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_D.json
index 831ed75c..0b00edb1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_D.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_E.json
index 2ebf1b26..5a3ba30d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_F.json
index 1cea8db6..fca31a13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Siphon_Insight_F.json
@@ -112,7 +112,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Siphon_Insight_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep.json
index 5d69a8f0..632dbd3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_10.json
index 9ac9f177..6a86c844 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_15.json
index 28914e86..7448b679 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_20.json
index c2734913..de846419 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_25.json
index 12b69aa6..c3f7118b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_30.json
index dfe1acb6..b788b60a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_35.json
index bb98b72b..cb949aa5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_40.json
index 5fac2d57..14e0a3ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_45.json
index 6ac093dc..23b5930f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_50.json
index 65de5c15..b9682ecd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sleep_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sleep_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_A.json
index a9b086a3..09010a93 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Smashing_Haymaker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_B.json
index 124912a0..6d10472d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Smashing_Haymaker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_C.json
index a83373cc..b836e423 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Smashing_Haymaker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_D.json
index 94b05d6d..2da42a7e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Smashing_Haymaker_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Smashing_Haymaker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare.json
index 207d2c2a..5dcf851a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_10.json
index 8b235e82..759d4cbe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_10.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_15.json
index 5ebe9f87..723e3c56 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_15.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_20.json
index c52d9fbf..1ed16662 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_20.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_25.json
index b80aa0f9..3414cfbb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_25.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_30.json
index 27991e7d..05ab314f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_30.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_35.json
index 268d182b..2e59e95f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_35.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_40.json
index 302619f7..a7400368 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_40.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_45.json
index 238ec025..5a66d62c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_45.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_50.json
index 9ef2d6fe..7fa07d20 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Snare_50.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Snare_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_A.json
index 9420cf28..9bd9c4c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soaring_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_B.json
index cffb697e..64d02f0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soaring_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_C.json
index 85dd61f6..daf88c91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soaring_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soaring_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_A.json
index d0dc2ee4..898bc4b8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_B.json
index 96560c50..2d776796 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_C.json
index 7526c7d7..78b84e0b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_C.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_D.json
index deb4993c..82735ba2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_E.json
index 595a3381..1f741a07 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_E.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_F.json
index abc69abc..bfc702bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Soulbound_Allegiance_F.json
@@ -112,7 +112,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Boosts.Crafted_Soulbound_Allegiance_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_A.json
index 157ecb86..2bbe58f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sovereign_Right_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_B.json
index 84a4e365..218dab75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sovereign_Right_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_C.json
index a5fa36d0..759bd4be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sovereign_Right_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_D.json
index 1b002a05..32912749 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sovereign_Right_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_E.json
index 70460969..4d510c80 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_E.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sovereign_Right_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_F.json
index ba52b3f8..60e2d6e5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sovereign_Right_F.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Crafted_Sovereign_Right_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_A.json
index 841cca20..6584061b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Springfoot_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_B.json
index 21ebb3be..5bf5fa96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Springfoot_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_C.json
index 40113d53..006645c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Springfoot_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Springfoot_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_A.json
index ddb6d553..6e97a9c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stagger_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_B.json
index a82bf3ff..539c14f7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stagger_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_C.json
index 06a0a2bd..bed488b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stagger_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_D.json
index b57c586a..58777aa4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stagger_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_E.json
index 57bcd3a8..f39db341 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stagger_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stagger_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_A.json
index 8a0221cf..1c4cbd63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Steadfast_Protection_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_B.json
index 2f9c8edc..b2274f46 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_B.json
@@ -383,7 +383,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Steadfast_Protection_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_C.json
index 5601afdc..63847640 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Steadfast_Protection_C.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Steadfast_Protection_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_A.json
index 86e06e05..9ff6191c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_B.json
index 0f35b7ca..96c37879 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_C.json
index d3316e49..ed498ffd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_D.json
index 06fc2a45..dcb412c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_E.json
index 8787cc63..7141f8ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_F.json
index 3fe1cdbf..6cf21328 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Sting_of_the_Manticore_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Sting_of_the_Manticore_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun.json
index 89dd305a..2ef5ba72 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_10.json
index 9316f22f..5cf94196 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_15.json
index 9b7da01c..fdd166c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_20.json
index 9f103e6c..1f00bef1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_25.json
index ec6f3ec2..dc00cb57 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_30.json
index f6fe7510..c8594807 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_35.json
index f247f2f2..1ca97a6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_40.json
index 9e94906e..490ae8d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_45.json
index c0f0e211..b690df56 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_50.json
index 232ea815..059ee5d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stun_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stun_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_A.json
index f2c89943..20444a2a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stupefy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_B.json
index 165eafb2..c7e1053a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stupefy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_C.json
index 0dc1651f..707835ca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stupefy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_D.json
index e4678127..23d46056 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stupefy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_E.json
index 5bac6780..06910507 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Stupefy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_F.json
index c7ff791d..e236546f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Stupefy_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Stupefy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt.json
index 57407227..1e3da13e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_10.json
index f4e56b0a..9331dc96 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_10.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_15.json
index cc2b2044..d458bc73 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_15.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_20.json
index 3cad230c..9eaa92c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_20.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_25.json
index 49b7cff5..13cfb30b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_25.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_30.json
index 4af7b437..feaf65f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_30.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_35.json
index eb22d603..9c93fd53 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_35.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_40.json
index 389cfecb..0ec3ea0e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_40.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_45.json
index 868df96a..bb0911f8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_45.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_50.json
index 411326c7..970c4514 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Taunt_50.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Taunt_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_A.json
index 3f857e56..19c81b72 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_B.json
index 6e5b0da9..2baff35f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_B.json
@@ -452,7 +452,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_C.json
index 4552a338..e502f087 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_D.json
index 54321b4b..2dbd92cb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_D.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_E.json
index 8f4c3cdc..ba450689 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_E.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_F.json
index 14687595..c1ea7de8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempered_Readiness_F.json
@@ -486,7 +486,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempered_Readiness_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_A.json
index 5272b9a9..4e157228 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempest_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_B.json
index 70678fc6..e9ee6c71 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempest_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_C.json
index fd0be434..66335356 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Tempest_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_D.json
index 10b60441..5c54945a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Tempest_D.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Tempest_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_A.json
index 2104240b..0863e20f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Theft_of_Essence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_B.json
index d575b4fd..a32217d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_B.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Theft_of_Essence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_C.json
index 1468b059..82c8ca6e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Theft_of_Essence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_D.json
index bbf23b94..0dfb8742 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Theft_of_Essence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_E.json
index c42e8608..215991bd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Theft_of_Essence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_F.json
index 3bcde385..832c6e60 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Theft_of_Essence_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Theft_of_Essence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_A.json
index 2a8b4c51..4facb268 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_B.json
index 36ee2c08..8b5686af 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_C.json
index 434baaaa..ab70c6c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_D.json
index 93d95b08..2eaa82b0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_E.json
index 0d39e043..9c7b8e54 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_F.json
index 7fbc5501..b9f46dd5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Thunderstrike_F.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Thunderstrike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_A.json
index 7e9549ec..49c6b687 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_TimeSpace_Manipulation_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_B.json
index 61b80e1c..41a81387 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_B.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_TimeSpace_Manipulation_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_C.json
index d79db059..e82bca1c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_TimeSpace_Manipulation_C.json
@@ -214,7 +214,6 @@
}
],
"FullSetName": "Boosts.Crafted_TimeSpace_Manipulation_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_A.json
index e61839af..97f7fa1a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_B.json
index 7969d50d..2aa36274 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_C.json
index a68e5647..c66a5e02 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_D.json
index 8a3bdf8b..1bdd6b19 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_E.json
index c64fd2d3..b3ef10ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_E.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_F.json
index 0e846952..1f07fbaa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Titanium_Coating_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Titanium_Coating_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff.json
index 1db761c9..ee56c6ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_10.json
index 1bfe44b6..1b95fff3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_15.json
index d11fc10f..db31e933 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_20.json
index b88b88b7..b1c076d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_25.json
index 5f2849fc..0126b932 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_30.json
index 8ac83022..9781bf2d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_35.json
index 462d83db..28d96c91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_40.json
index 63a952bb..423a540d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_45.json
index c844c0db..0c7d871d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_50.json
index 1f8faab6..db0faa1a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_Buff_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_Buff_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff.json
index 1daaa5a3..38576501 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_10.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_10.json
index 5f6bb222..c1b3d500 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_10.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_10.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_10",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_15.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_15.json
index 22fa8a3a..4be9ede6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_15.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_15.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_15",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_20.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_20.json
index afe96e8b..c0338598 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_20.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_20.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_20",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_25.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_25.json
index 171ead69..128ead46 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_25.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_25.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_25",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_30.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_30.json
index 775a7061..657b9677 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_30.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_30.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_30",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_35.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_35.json
index f5a4b107..d47282fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_35.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_35.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_35",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_40.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_40.json
index a96892e7..c3b063a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_40.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_40.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_40",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_45.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_45.json
index f11e65ca..3aa31a3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_45.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_45.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_45",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_50.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_50.json
index f6c4dff8..360b0228 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_50.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_ToHit_DeBuff_50.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_ToHit_DeBuff_50",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_A.json
index ca3a4ee8..5e7eec16 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Death_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_B.json
index fa9d07fe..0d20261c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Death_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_C.json
index 033ee26c..b8605a20 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Death_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_D.json
index c4c30223..ba74d70e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Death_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_E.json
index 35b226d0..2b69c1b3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Death_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_F.json
index c43b3d03..1e8721ea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Death_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Touch_of_Death_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_A.json
index d34a0134..1e741b3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_B.json
index 91661d3c..746e9ab6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_C.json
index 4ea27bd7..667dcbf7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_D.json
index 5c68127b..75742f3a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_E.json
index 34d15f9d..cd45bae8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_F.json
index 4022405c..c6c019a6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_Lady_Grey_F.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Crafted_Touch_of_Lady_Grey_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_A.json
index 7c9a0993..6a2ee54f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_A.json
@@ -214,7 +214,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_B.json
index 9655d8ed..cc25d493 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_B.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_C.json
index 64a5a1f1..99c0dacc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_D.json
index 6a9c1ccc..bcb747a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_E.json
index aaa1b074..7610d03b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_E.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_F.json
index dc4a892d..f696735a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Touch_of_the_Nictus_F.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Crafted_Touch_of_the_Nictus_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_A.json
index 6d2e925b..cf160221 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_B.json
index 06e4ff61..895de9bb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_C.json
index 952fd961..ef3880b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_D.json
index bf6f8dba..28492352 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_E.json
index be712cdf..fc5d401e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_F.json
index 44435b7d..530c4d2e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Trap_of_the_Hunter_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Trap_of_the_Hunter_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_A.json
index 1e042100..3f6be479 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_A.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triage_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_B.json
index c2bfee6d..95edbb26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triage_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_C.json
index 410eee40..e8e77760 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_C.json
@@ -248,7 +248,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triage_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_D.json
index bf828268..3c79a581 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triage_D.json
@@ -282,7 +282,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triage_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_A.json
index c47ad29f..e835147b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triumphant_Insult_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_B.json
index c6f703e6..6b950bac 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Triumphant_Insult_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_C.json
index 161f7b23..fa015cdc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Triumphant_Insult_C.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Triumphant_Insult_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_A.json
index 9a107f31..e615e975 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbounded_Leap_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_B.json
index 76f5fcd2..29f6287c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbounded_Leap_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_C.json
index 52a1d456..8ecd03ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbounded_Leap_C.json
@@ -214,7 +214,6 @@
}
],
"FullSetName": "Boosts.Crafted_Unbounded_Leap_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_A.json
index fe7e15a9..c86ae43e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_A.json
@@ -113,7 +113,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_B.json
index b96ff200..f935f726 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_C.json
index 1006e1a9..46d5c94e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_C.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_D.json
index 69dad956..d782be42 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_E.json
index 37bdfd5e..264e8e57 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_E.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_F.json
index ef3e2a8e..2169fbf7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Constraint_F.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Boosts.Crafted_Unbreakable_Constraint_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_A.json
index 63a833d1..e7f4fc95 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_A.json
@@ -350,7 +350,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_B.json
index f41b648d..71e78f32 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_C.json
index 93792fe2..a1f1b2f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_D.json
index c0027c69..1248ef17 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_D.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_E.json
index eef3a46d..676f8754 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_E.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_F.json
index c4a52772..1edfa58c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unbreakable_Guard_F.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Boosts.Crafted_Unbreakable_Guard_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_A.json
index 8a93ec53..15160bda 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_A.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_B.json
index 650c1043..b7913153 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_B.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_C.json
index ce4db030..1640c46d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_C.json
@@ -180,7 +180,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_D.json
index 95d56518..aa8f69ec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_D.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_E.json
index f475b13c..936a8a54 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_E.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_F.json
index 8b68af06..09a042a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Undermined_Defenses_F.json
@@ -112,7 +112,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Undermined_Defenses_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_A.json
index 759e0f16..dbe925c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unquestioning_Loyalty_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_B.json
index 5b6080f4..2bd3699b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unquestioning_Loyalty_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_C.json
index b3c3e7e7..36e2ce68 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unquestioning_Loyalty_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_D.json
index 7be109cc..dd296dbe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unquestioning_Loyalty_D.json
@@ -418,7 +418,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unquestioning_Loyalty_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_A.json
index 588c819a..962d9325 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_A.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_B.json
index dc8e2235..57712627 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_C.json
index a805f958..a23f706f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_C.json
@@ -146,7 +146,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_D.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_D.json
index e14ba372..5ee7d2f7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_D.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_E.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_E.json
index ed1737cd..f6164566 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_E.json
@@ -181,7 +181,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_F.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_F.json
index ee431604..426a481d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Unspeakable_Terror_F.json
@@ -152,7 +152,6 @@
}
],
"FullSetName": "Boosts.Crafted_Unspeakable_Terror_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_A.json
index 54167d41..0009a8fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_A.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_Fire_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_B.json
index 4f69a0fe..eabee8be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_B.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_Fire_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_C.json
index 7ed886bb..1f4e4b79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_Fire_C.json
@@ -384,7 +384,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_Fire_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_A.json
index 9243e6da..f430c7f3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_A.json
@@ -420,7 +420,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_of_Velocity_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_B.json
index 9bb80215..fc820711 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_B.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_of_Velocity_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_C.json
index 0215866c..80956d0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Volley_of_Velocity_C.json
@@ -147,7 +147,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Volley_of_Velocity_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_A.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_A.json
index 52eb85c6..64be01ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_A.json
@@ -254,7 +254,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Winters_Gift_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_B.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_B.json
index 44868430..80ac2995 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_B.json
@@ -288,7 +288,6 @@
],
"BoostBoostable": true,
"FullSetName": "Boosts.Crafted_Winters_Gift_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_C.json b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_C.json
index c27665bc..fedac819 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Crafted_Winters_Gift_C.json
@@ -117,7 +117,6 @@
}
],
"FullSetName": "Boosts.Crafted_Winters_Gift_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Accuracy.json
index 0b9885f4..7743fd79 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Accuracy.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Clockwork_Efficiency.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Clockwork_Efficiency.json
index 71280e0b..02e757a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Clockwork_Efficiency.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Clockwork_Efficiency.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Clockwork_Efficiency",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Cone.json
index 8827a835..c524933a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Cone.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Confuse.json
index 2609ef46..03084501 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Confuse.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Damage.json
index 91f3ace9..1a62f052 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Damage.json
@@ -349,7 +349,6 @@
}
],
"FullSetName": "Boosts.Generic_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_Buff.json
index f1cc240b..cb4ec352 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_Buff.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_DeBuff.json
index 29d0df87..8af378d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Defense_DeBuff.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Drain_Endurance.json
index 979d84fb..aa543701 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Drain_Endurance.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Generic_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Endurance_Discount.json
index ca1aeb6a..24195599 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Endurance_Discount.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Fear.json
index 0daa2939..9703076a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Fear.json
@@ -147,7 +147,6 @@
}
],
"FullSetName": "Boosts.Generic_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Fly.json
index e9a3451d..c42ec786 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Fly.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Heal.json
index 999ff8ce..46e2a84c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Heal.json
@@ -213,7 +213,6 @@
}
],
"FullSetName": "Boosts.Generic_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Hold.json
index 2c2542b3..11c1fe8a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Hold.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Immobilize.json
index 03752dc3..70256621 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Immobilize.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Intangible.json
index fa800673..70c80b7f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Intangible.json
@@ -182,7 +182,6 @@
}
],
"FullSetName": "Boosts.Generic_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Interrupt.json
index e2a7d69a..4380f2db 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Interrupt.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Jump.json
index c424e1dc..29ca2cf0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Jump.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Generic_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Knockback.json
index 4c976a36..d3f27000 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Knockback.json
@@ -147,7 +147,6 @@
}
],
"FullSetName": "Boosts.Generic_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Might_of_the_Empire.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Might_of_the_Empire.json
index 0baa6965..906d7a60 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Might_of_the_Empire.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Might_of_the_Empire.json
@@ -426,7 +426,6 @@
}
],
"FullSetName": "Boosts.Generic_Might_of_the_Empire",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Range.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Range.json
index 56c2d03a..ac07a794 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Range.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Recharge.json
index 5280eff8..ca61a427 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Recharge.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Recovery.json
index 8c5c6839..ce5adced 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Recovery.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Boosts.Generic_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Res_Damage.json
index 950a83a0..d9b7349d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Res_Damage.json
@@ -349,7 +349,6 @@
}
],
"FullSetName": "Boosts.Generic_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Resistance_Tactics.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Resistance_Tactics.json
index 0a6eb5bb..be3142d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Resistance_Tactics.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Resistance_Tactics.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Resistance_Tactics",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Run.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Run.json
index 4df39cad..cef10f4d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Run.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Sleep.json
index 34c7d909..67f28725 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Sleep.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Snare.json
index e82bfbc0..2c9f42f2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Snare.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Generic_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Stun.json
index 2b4630c8..c543dd6a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Stun.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Syndicate_Techniques.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Syndicate_Techniques.json
index 309406e5..0b559be5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Syndicate_Techniques.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Syndicate_Techniques.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Syndicate_Techniques",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Taunt.json
index c9d22249..e59ec20c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Taunt.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Boosts.Generic_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_Buff.json
index def740ec..86061c9a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_Buff.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_DeBuff.json
index efa4714b..2a30c848 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_ToHit_DeBuff.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Boosts.Generic_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Generic_Will_of_the_Seers.json b/Hero Designer/Data/db/Other/_Boosts.Generic_Will_of_the_Seers.json
index b5415fa5..784abd92 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Generic_Will_of_the_Seers.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Generic_Will_of_the_Seers.json
@@ -461,7 +461,6 @@
}
],
"FullSetName": "Boosts.Generic_Will_of_the_Seers",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Accuracy_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Accuracy_Mez.json
index 6ce329fa..40e8e98c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Accuracy_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Accuracy_Mez.json
@@ -369,7 +369,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Accuracy_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Endurance_Discount.json
index 0241e0a4..a24ebf3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Buff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Recharge.json
index 7d6f8fac..d73f85a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Buff_Recharge.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Buff_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Accuracy.json
index 78c5d629..4a5017a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Accuracy.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Damage_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Mez.json
index 38a5c640..bd920307 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Mez.json
@@ -607,7 +607,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Damage_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Range.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Range.json
index 75a7ef62..aadcd927 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Damage_Range.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Damage_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Accuracy.json
index aa679bb3..2fcfeb97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Accuracy.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hamidon_DeBuff_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Endurance_Discount.json
index 31a34357..18df91a4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_DeBuff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hamidon_DeBuff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Heal_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Heal_Endurance_Discount.json
index fe8238ac..9096fb48 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Heal_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Heal_Endurance_Discount.json
@@ -250,7 +250,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Heal_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Res_Damage_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Res_Damage_Endurance_Discount.json
index 62ee034a..b1dcebdd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Res_Damage_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Res_Damage_Endurance_Discount.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Res_Damage_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Travel_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Travel_Endurance_Discount.json
index 897a1076..2f175e7e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hamidon_Travel_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hamidon_Travel_Endurance_Discount.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Boosts.Hamidon_Travel_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Accuracy_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Accuracy_Mez.json
index 0055b570..8b0180fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Accuracy_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Accuracy_Mez.json
@@ -369,7 +369,6 @@
}
],
"FullSetName": "Boosts.Hydra_Accuracy_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Endurance_Discount.json
index cd99742e..30963d64 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hydra_Buff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Recharge.json
index d1ad9c34..4d15d3bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Buff_Recharge.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hydra_Buff_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Accuracy.json
index ba7a64b5..99f8b7c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Accuracy.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hydra_Damage_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Mez.json
index 78f3d9b9..4de10800 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Mez.json
@@ -607,7 +607,6 @@
}
],
"FullSetName": "Boosts.Hydra_Damage_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Range.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Range.json
index b869c59b..883c4d14 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Damage_Range.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hydra_Damage_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Accuracy.json
index c9617d75..6123d330 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Accuracy.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hydra_DeBuff_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Endurance_Discount.json
index a0492b54..46545762 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_DeBuff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Hydra_DeBuff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Heal_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Heal_Endurance_Discount.json
index f20745ce..e0ba84e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Heal_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Heal_Endurance_Discount.json
@@ -250,7 +250,6 @@
}
],
"FullSetName": "Boosts.Hydra_Heal_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Res_Damage_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Res_Damage_Endurance_Discount.json
index 5ef84355..a28931ea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Res_Damage_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Res_Damage_Endurance_Discount.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Hydra_Res_Damage_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Hydra_Travel_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Hydra_Travel_Endurance_Discount.json
index af86f983..d5c2a5a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Hydra_Travel_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Hydra_Travel_Endurance_Discount.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Boosts.Hydra_Travel_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Accuracy.json
index abe13c29..574a552d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Cone.json
index eb092cf2..e7f63609 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Cone.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Confuse.json
index 3a91a58c..501bf777 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Confuse.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Damage.json
index 03594e8e..cc1d65ca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Magic_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_Buff.json
index 8b0e006f..e363fa26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_Buff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Magic_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_DeBuff.json
index 2cf8eb90..520588d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Defense_DeBuff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Magic_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Drain_Endurance.json
index 7048ac18..0943760c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Drain_Endurance.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Magic_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Endurance_Discount.json
index 47c9775b..58d25b3f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Fear.json
index a722912c..2207811b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Fear.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Magic_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Fly.json
index cb1a0831..eeecccdf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Fly.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Heal.json
index ccf72816..bd1986dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Heal.json
@@ -209,7 +209,6 @@
}
],
"FullSetName": "Boosts.Magic_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Hold.json
index 4f9fe1ce..59e6b7e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Hold.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Immobilize.json
index 37ff9cd2..5ece53be 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Immobilize.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Intangible.json
index b1667c76..e04afcc6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Intangible.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Boosts.Magic_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Interrupt.json
index 6806f969..2f07ee6d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Interrupt.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Jump.json
index 91847246..418f453e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Jump.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Magic_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Knockback.json
index 61bd5065..314a18ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Knockback.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Magic_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Range.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Range.json
index bf710cb5..f547804c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Range.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Recharge.json
index 05a2be4b..f77a5170 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Recovery.json
index 2109b9cc..1bcdfa14 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Recovery.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Magic_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Res_Damage.json
index 6a1d4520..1dd7fa94 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Res_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Magic_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Run.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Run.json
index 8d3e672e..e9d5adea 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Run.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Sleep.json
index f1a55562..fbea5d75 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Sleep.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Snare.json
index ff24b597..7872f1a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Snare.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Boosts.Magic_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Stun.json
index 64d4650b..e321985d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Stun.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Magic_Taunt.json
index 10d7ec7a..ec584d3c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_Taunt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Magic_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_Buff.json
index cb1bb6d9..13e0b321 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_Buff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_DeBuff.json
index 1ff58bca..97bff9fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Magic_ToHit_DeBuff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Magic_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Accuracy.json
index 6a2e5c7c..0c38d306 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Cone.json
index e724aa0d..9a008f26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Cone.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Confuse.json
index 88f38451..cd0aa6fe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Confuse.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Damage.json
index 1096c16a..5c5b8380 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Mutation_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_Buff.json
index 17a32e4c..0166f8d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_Buff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Mutation_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_DeBuff.json
index bd088ce5..9b241689 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Defense_DeBuff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Mutation_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Drain_Endurance.json
index 58769ae7..3f8e7776 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Drain_Endurance.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Mutation_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Endurance_Discount.json
index c7d0cde5..1456f20e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Fear.json
index ba6177b7..fb1995ed 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Fear.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Mutation_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Fly.json
index 7dde63ff..d34c8819 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Fly.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Heal.json
index be74fdc2..79aa3674 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Heal.json
@@ -209,7 +209,6 @@
}
],
"FullSetName": "Boosts.Mutation_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Hold.json
index b34532c1..3983e995 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Hold.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Immobilize.json
index 0e968bab..c474bcd0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Immobilize.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Intangible.json
index 87819456..5e42e8cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Intangible.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Boosts.Mutation_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Interrupt.json
index 54717681..3df8e9f8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Interrupt.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Jump.json
index ff04e9c5..23fd0869 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Jump.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Mutation_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Knockback.json
index a33db719..b4ff5cb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Knockback.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Mutation_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Accuracy.json
index 188c8337..b744008e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Accuracy.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Cone.json
index 87103870..138ae487 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Cone.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Confuse.json
index f80a15bb..cff722b8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Confuse.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Damage.json
index 5aaa9c2a..0e6a46e7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_Buff.json
index 42904150..560b8d09 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_Buff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_DeBuff.json
index b5d70ec4..7847c4d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Defense_DeBuff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Drain_Endurance.json
index bd83c0f3..7accc066 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Drain_Endurance.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Endurance_Discount.json
index 16d74465..e23a4864 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Endurance_Discount.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fear.json
index 762eb465..a1ff6e47 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fear.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fly.json
index 776c11f8..4d22270c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Fly.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Heal.json
index 05522600..a491ab1f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Heal.json
@@ -210,7 +210,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Hold.json
index 1a2d96f4..82812881 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Hold.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Immobilize.json
index d74bcd25..ba5ffac6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Immobilize.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Intangible.json
index de60c035..4428e8d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Intangible.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Interrupt.json
index c2c22a03..2c497c73 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Interrupt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Jump.json
index 8bb2a6fb..14725bc1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Jump.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Knockback.json
index 9a53bc2e..9e39b3c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Knockback.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Range.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Range.json
index 24239bb4..5068f535 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Range.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recharge.json
index ac948069..b98d2658 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recharge.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recovery.json
index 6dc301da..796bc392 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Recovery.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Res_Damage.json
index 894f7fce..0e213eb1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Res_Damage.json
@@ -312,7 +312,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Run.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Run.json
index 5163b818..df21008a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Run.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Sleep.json
index 69ca5f37..95e0823c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Sleep.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Snare.json
index a33228cd..fec758a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Snare.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Stun.json
index 19e269da..d3a458f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Stun.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Taunt.json
index 761cc2a2..883c3196 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_Taunt.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_Buff.json
index 09e7fdaf..734485b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_Buff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_DeBuff.json
index fab3f6d8..c1efc4cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Magic_ToHit_DeBuff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Magic_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Range.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Range.json
index fd0a4901..1f190418 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Range.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Recharge.json
index 3ed1bde8..44643873 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Recovery.json
index 2a1589f0..5e0c862f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Recovery.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Mutation_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Res_Damage.json
index 84796db2..76c92b28 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Res_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Mutation_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Run.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Run.json
index c3885220..cb981af1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Run.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Accuracy.json
index af36bbc8..4c72bbd9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Accuracy.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Cone.json
index 24f667c7..adada958 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Cone.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Confuse.json
index 2649487f..9073a19d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Confuse.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Damage.json
index 1efced15..8a8892e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_Buff.json
index 514013af..2c5d52c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_Buff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_DeBuff.json
index c28ddcb2..cdd47750 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Defense_DeBuff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Drain_Endurance.json
index a044953e..d67b826a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Drain_Endurance.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Endurance_Discount.json
index 782a81c5..9a0c4969 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Endurance_Discount.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fear.json
index db274df0..51042016 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fear.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fly.json
index a7f0e531..38ea305e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Fly.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Heal.json
index 5d3db9eb..5f4b1506 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Heal.json
@@ -210,7 +210,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Hold.json
index 580a76b3..cb6e593a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Hold.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Immobilize.json
index cac9268b..8364a274 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Immobilize.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Intangible.json
index 9e0fea27..11b786fe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Intangible.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Interrupt.json
index 5a2c04e1..2cffd973 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Interrupt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Jump.json
index dd3e53e6..0c403259 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Jump.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Knockback.json
index f31cb38f..9bd2193e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Knockback.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Range.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Range.json
index 38589605..3ac1427c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Range.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recharge.json
index e08f5922..3a018f9c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recharge.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recovery.json
index 8cbe4208..e7664fa8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Recovery.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Res_Damage.json
index bc4b5152..820f817d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Res_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Run.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Run.json
index 576e02e2..d9d9ff2b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Run.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Sleep.json
index 6987979f..a83e5a43 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Sleep.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Snare.json
index 1e5d8027..fdeda758 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Snare.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Stun.json
index 79e1fe2c..d7bbdd9c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Stun.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Taunt.json
index c717305a..1679541a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_Taunt.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_Buff.json
index e7cb1ad7..93f6bc7a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_Buff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_DeBuff.json
index 6ab73df3..c6cb8bf7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Science_ToHit_DeBuff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Science_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Sleep.json
index 2aba5d85..7eaa0207 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Sleep.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Snare.json
index 97793425..bcdc7bc7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Snare.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Boosts.Mutation_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Stun.json
index fc6b6794..7662faf3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Stun.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_Taunt.json
index 7e7332c7..d62ce6dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_Taunt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Mutation_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_Buff.json
index 9e1896df..3dec7dde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_Buff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_DeBuff.json
index 2cd2517f..fa3f5d58 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Mutation_ToHit_DeBuff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Mutation_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Accuracy.json
index f322ea2e..7c212f45 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Cone.json
index 2312c41d..a34e9eb6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Cone.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Confuse.json
index b1ebf1e3..5af9723b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Confuse.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Damage.json
index d565a4b7..83216abf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Natural_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_Buff.json
index 1d76523b..22c2b32f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_Buff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Natural_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_DeBuff.json
index 305e48a2..ac4548a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Defense_DeBuff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Natural_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Drain_Endurance.json
index 260aadad..f0dea7ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Drain_Endurance.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Natural_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Endurance_Discount.json
index 2fa2060a..1854321d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Fear.json
index e0a01826..cda052b0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Fear.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Natural_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Fly.json
index 62cbeda8..726f67cf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Fly.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Heal.json
index f42c0a12..dfbb20cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Heal.json
@@ -209,7 +209,6 @@
}
],
"FullSetName": "Boosts.Natural_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Hold.json
index 8e8b8bbf..ff91bde2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Hold.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Immobilize.json
index d01e221f..c4944b26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Immobilize.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Intangible.json
index 73fba529..97b387e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Intangible.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Boosts.Natural_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Interrupt.json
index 1f855df5..62aa35d9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Interrupt.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Jump.json
index 65a3f3ea..170e33a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Jump.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Natural_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Knockback.json
index 93d92c45..d842eabf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Knockback.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Natural_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Accuracy.json
index 25e283ec..22c147d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Accuracy.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Cone.json
index 0e3aea23..fee703cf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Cone.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Confuse.json
index c4867347..b1c57fa2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Confuse.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Damage.json
index 61c29dc4..734cce80 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_Buff.json
index 082a361e..4db73364 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_Buff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_DeBuff.json
index 6fa8cd8e..9572cbd3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Defense_DeBuff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Drain_Endurance.json
index b4194bdc..1a9304ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Drain_Endurance.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Endurance_Discount.json
index 6bc0f397..c84385ae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Endurance_Discount.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fear.json
index 299f33e1..871d5910 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fear.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fly.json
index df9d3e7e..8c1fdf43 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Fly.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Heal.json
index 83f38542..d818c9f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Heal.json
@@ -210,7 +210,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Hold.json
index a3fc2a25..5b707c1e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Hold.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Immobilize.json
index 8bd58ad3..a9090c25 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Immobilize.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Intangible.json
index b20956b5..adc1a3a7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Intangible.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Interrupt.json
index 3bdce653..bca23b63 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Interrupt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Jump.json
index 37603c23..2f2253de 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Jump.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Knockback.json
index b9b2c4f3..434e30f6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Knockback.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Range.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Range.json
index 1ef024e3..21e016a3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Range.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recharge.json
index 09a5bcd5..e72da517 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recharge.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recovery.json
index 4614b61d..6a799c82 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Recovery.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Res_Damage.json
index 26e02ac0..14351e1f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Res_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Run.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Run.json
index cdb85cb6..090fc57b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Run.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Sleep.json
index e7afdd18..ba4b0d8d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Sleep.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Snare.json
index 310f5f5b..2452476c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Snare.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Stun.json
index f480c87c..551485ca 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Stun.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Taunt.json
index df92d6f4..b815abee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_Taunt.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_Buff.json
index 511a65f2..6b2eda3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_Buff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_DeBuff.json
index 59efffa9..bc4f26a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Magic_ToHit_DeBuff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Magic_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Range.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Range.json
index 6ace359b..d13799d6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Range.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Recharge.json
index 9567b612..6bfa79a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Recovery.json
index f0f85062..1d832895 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Recovery.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Natural_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Res_Damage.json
index d32b8b26..fe4551a6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Res_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Natural_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Run.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Run.json
index bf4bde1d..a85d5287 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Run.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Sleep.json
index 61c1c7e6..cc8e8eeb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Sleep.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Snare.json
index 22fc818b..63f6a35b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Snare.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Boosts.Natural_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Stun.json
index b2c41497..8a2120c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Stun.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Natural_Taunt.json
index 4dce38b0..be673cfb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_Taunt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Natural_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_Buff.json
index 19f6b5b7..09b1ae9c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_Buff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_DeBuff.json
index 3fdd9021..e5a8489e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Natural_ToHit_DeBuff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Natural_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Science_Accuracy.json
index 7902cee5..0b519fcb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Science_Cone.json
index 5e099501..2b2a7996 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Cone.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Science_Confuse.json
index 63fd5b8f..6ac6cbe7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Confuse.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Science_Damage.json
index de61b3ba..b91c4fd9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Science_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Defense_Buff.json
index 5cfc20c3..34510c57 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Defense_Buff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Science_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Defense_DeBuff.json
index a4d307f2..775fd105 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Defense_DeBuff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Science_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Science_Drain_Endurance.json
index 676d9d09..d119997c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Drain_Endurance.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Science_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Science_Endurance_Discount.json
index ec7bf03f..59dcee9a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Science_Fear.json
index 673b4390..6bea8596 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Fear.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Science_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Science_Fly.json
index 53e5b686..a4d194ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Fly.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Science_Heal.json
index d3c78622..0add85d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Heal.json
@@ -209,7 +209,6 @@
}
],
"FullSetName": "Boosts.Science_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Science_Hold.json
index 9b5e95a4..573ded13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Hold.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Science_Immobilize.json
index c98ecad3..9953c4e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Immobilize.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Science_Intangible.json
index 79492cc3..5d2ee190 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Intangible.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Boosts.Science_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Science_Interrupt.json
index 903c0375..32beee61 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Interrupt.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Science_Jump.json
index daea9543..fc44ca8d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Jump.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Science_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Science_Knockback.json
index 697c2ca7..dea5e564 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Knockback.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Science_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Range.json b/Hero Designer/Data/db/Other/_Boosts.Science_Range.json
index c67cd8a8..85898486 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Range.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Science_Recharge.json
index 926663c5..303edf06 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Science_Recovery.json
index c3e47f57..112f2a0d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Recovery.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Science_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Science_Res_Damage.json
index c96d62a0..cd383b12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Res_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Science_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Run.json b/Hero Designer/Data/db/Other/_Boosts.Science_Run.json
index 79a9d63c..c8be1169 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Run.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Science_Sleep.json
index b65b35c1..709b2245 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Sleep.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Science_Snare.json
index e4d3ffb3..143a6b70 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Snare.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Boosts.Science_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Science_Stun.json
index 35e209c9..e87e6c58 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Stun.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Science_Taunt.json
index afa82714..8a9963ee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Taunt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Accuracy.json
index 4f794720..e2ba380e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Accuracy.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Cone.json
index 2841683b..dabef0d4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Cone.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Confuse.json
index c380581e..949fea34 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Confuse.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Damage.json
index 550ff132..aa0d729d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_Buff.json
index 95e2210c..fecbcd86 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_Buff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_DeBuff.json
index d70cb0a6..c9d916ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Defense_DeBuff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Drain_Endurance.json
index 8848a3cf..36634339 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Drain_Endurance.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Endurance_Discount.json
index 34a867bb..92ae29fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Endurance_Discount.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fear.json
index 1d4cc336..c58f12a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fear.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fly.json
index 774e1da4..2cc7eae3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Fly.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Heal.json
index b7f60385..d9a8e945 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Heal.json
@@ -210,7 +210,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Hold.json
index e531aa43..1ffecb90 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Hold.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Immobilize.json
index c22568c8..64d54fb6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Immobilize.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Intangible.json
index 934a9da6..dbcc2cd1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Intangible.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Interrupt.json
index ef8a8b77..66ea33a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Interrupt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Jump.json
index 974fe7dc..79283e36 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Jump.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Knockback.json
index 429580c9..08fa4db9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Knockback.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Range.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Range.json
index 494cdec0..a5f5301b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Range.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recharge.json
index 564f62af..bbce0c9e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recharge.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recovery.json
index 6a378b29..49f9ae31 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Recovery.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Res_Damage.json
index 96608e70..b6b8d86e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Res_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Run.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Run.json
index 0994abf4..6cdb0a85 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Run.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Sleep.json
index d65caa1d..42e80812 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Sleep.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Snare.json
index 68642527..7fbeb5b5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Snare.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Stun.json
index 95137a3d..1741100f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Stun.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Taunt.json
index 988c7bbb..5cda5026 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_Taunt.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_Buff.json
index 0a76fee3..942c831d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_Buff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_DeBuff.json
index b7c5df37..3ce84b06 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_Technology_ToHit_DeBuff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Science_Technology_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_Buff.json
index 2e507f19..31a0f932 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_Buff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_DeBuff.json
index 898c57a2..450564bf 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Science_ToHit_DeBuff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Science_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_A.json
index 29b410c6..4576e108 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_B.json
index 52547e35..ef37687b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_C.json
index 94b2fe76..643f8cdd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_D.json
index e4554ab5..f7cbadf5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_E.json
index c282828a..138ad55d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_F.json
index 65080e35..2e081529 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Absolute_Amazement_F.json
@@ -109,7 +109,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Absolute_Amazement_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_A.json
index 17243ee6..400cc074 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_B.json
index 0b467d0a..cd035b07 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_C.json
index 2117e22f..2b54e445 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_D.json
index 95622b94..a57901e4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_E.json
index 8609e045..ea97bd71 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_F.json
index 19b0bb37..c7535053 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Apocalypse_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Apocalypse_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_A.json
index bf038f89..b3be05c1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_B.json
index 6a7d440b..2f2f69f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_C.json
index b3c0ed3b..1b2e8c91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_D.json
index c16b6861..75e308eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_E.json
index a5679991..1a256f3b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_F.json
index 032ca527..58dc3814 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Armageddon_F.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Armageddon_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_A.json
index b6938b28..ad093121 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_B.json
index 030b6b80..456c5c4e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_C.json
index d7f31796..ee32735f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_D.json
index 4ca7874a..72696539 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_E.json
index fc5708d9..15ba8345 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_F.json
index b2c59eb1..ce8d0705 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Avalanche_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Avalanche_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_A.json
index 6c8e97fd..762f4647 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_B.json
index d0261784..73564c55 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_C.json
index 5e50ee89..61229c6c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_D.json
index 9489a69a..eb298241 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_E.json
index ffba379a..44e2f590 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_F.json
index 34a91b8d..b233df25 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Blistering_Cold_F.json
@@ -188,7 +188,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Blistering_Cold_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_A.json
index fd8b503e..a654da4a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_B.json
index 408ccc49..d7dc769b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_C.json
index 7785c533..d818884e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_D.json
index 65249621..4cf8a56a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_E.json
index fd562f8c..d7bae203 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_F.json
index 5d67628b..35fa4267 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Coercive_Persuasion_F.json
@@ -114,7 +114,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Coercive_Persuasion_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_A.json
index 8930cec0..d8ee27fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_A.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_B.json
index 6be4baee..86f8af8c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_C.json
index 4c459b7b..1c5fe5ce 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_C.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_D.json
index 79a89ac3..9f6d7675 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_D.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_E.json
index 009e71f1..4cca5dc8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_E.json
@@ -215,7 +215,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_F.json
index 39be9a94..ebaddc7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Entomb_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Entomb_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_A.json
index 1374b78b..b6043403 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_B.json
index fbd8d119..18094117 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_C.json
index 89a0ca1c..032115fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_D.json
index 17d58cda..bb37c541 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_E.json
index e401d9c2..35abdf08 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_F.json
index 34833621..1fd78c85 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Fortunata_Hypnosis_F.json
@@ -152,7 +152,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Fortunata_Hypnosis_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_A.json
index 023ed770..d3a6211a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_B.json
index f317e7d5..44fcb042 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_C.json
index ddedae78..5f4a33aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_D.json
index a4968f43..131d18e8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_E.json
index 403e21cc..f9109f51 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_F.json
index 5b378394..8509b689 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Frozen_Blast_F.json
@@ -187,7 +187,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Frozen_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_A.json
index 70b63d36..619f4710 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_B.json
index da6e10e2..be939613 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_C.json
index 484c3281..3ba4f0b0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_D.json
index e6598005..a3b73f12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_E.json
index 40ad8a38..b7278ead 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_F.json
index 0691a307..cc439b8b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Gravitational_Anchor_F.json
@@ -153,7 +153,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Gravitational_Anchor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_A.json
index bcefa819..8601c9cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_B.json
index d056ca52..c4b9a8ad 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_C.json
index 671eb344..c961ba61 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_D.json
index aa7bf448..13370f59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_E.json
index 4048c6bc..081bbfc3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_F.json
index 7adcb2dd..3e5d9569 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Hecatomb_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Hecatomb_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_A.json
index 7fad26cb..c8163fd2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_B.json
index ee9833ad..6e3fd32c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_C.json
index e481860a..373d6a7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_D.json
index f06262b8..a34b4ca2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_E.json
index 556780ee..54756717 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_F.json
index d447f2f9..57b7e1c8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Ragnarok_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Ragnarok_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_A.json
index f309c9dd..e29c192d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_B.json
index 61834b8a..e4bba5b9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_C.json
index ff429ede..848ee70a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_D.json
index 0bf32159..e9afac59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_E.json
index 79ac2736..f8b18a90 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_E.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_F.json
index bc402ba9..ce85d790 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Soulbound_Allegiance_F.json
@@ -113,7 +113,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Soulbound_Allegiance_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A.json
index 4df4242c..1862bf57 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B.json
index 527d9175..91dc515e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C.json
index 63824e52..adb5b4ba 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D.json
index 600d0ff5..802db3fc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E.json
index 051f1301..fbd9c5eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F.json
index 585526a1..95e57a40 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F.json
@@ -158,7 +158,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_A.json
index bd36d03e..dec127fe 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_B.json
index 4d13e39e..45813741 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_C.json
index ae487be9..c0eb4929 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_D.json
index 0e621a56..edcb4bff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_E.json
index c6eb29f1..58b62ca0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_F.json
index 216bea97..b5d31e15 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Assassins_Mark_F.json
@@ -144,7 +144,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Assassins_Mark_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_A.json
index 3a18df38..d2573e23 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_B.json
index d1594b9e..807ed00d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_C.json
index a1a27fa3..57d8fca5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_D.json
index 31d13793..b2f114dc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_E.json
index a51c2acb..c67d3c3b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_F.json
index 37eaa57f..9c8e1856 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Blasters_Wrath_F.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_A.json
index 36a78784..3c52b57a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_B.json
index c251cb82..51ce8208 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_C.json
index 7dd584ed..dd51908b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_D.json
index 7de2f52b..96b1172b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_E.json
index f864481d..03244df9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_F.json
index ab12715c..57b9e707 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Brutes_Fury_F.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Brutes_Fury_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A.json
index 36a160e8..f4f49b5e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B.json
index 280d9d2f..f4864e05 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C.json
index 2dfcf411..53428c6c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D.json
index 5e05b0f0..12d59e09 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E.json
index 6d9d53ef..67b625c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F.json
index 3f700e7c..b9ec8adb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_A.json
index 4bdfdd58..2064cf7f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_B.json
index 3ffde1bb..1d2aa88c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_C.json
index 21cfdd13..2fa9107e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_D.json
index 3b1897b6..10db2521 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_E.json
index 0ef125c2..490539c0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_F.json
index 75f098e3..4b17c9a1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Critical_Strikes_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Critical_Strikes_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_A.json
index f00200aa..bcc32191 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_B.json
index 498aaead..4c8d9005 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_C.json
index fa469a24..7b274fee 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_D.json
index 31cdbec6..5605418b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_E.json
index 82806780..c513385f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_F.json
index 2fd656ca..66938ce6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defenders_Bastion_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_A.json
index bd9999b0..d587588f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_B.json
index a21bf470..4473df12 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_C.json
index 9c042794..1f6ba5fa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_D.json
index e9f7be9b..e5b2d5e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_E.json
index 27c7131f..fd6a057e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_F.json
index 48f72e95..34e9a586 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Defiant_Barrage_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_A.json
index fc48ae4c..6bd30b64 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_B.json
index 68b940cb..cee0ca81 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_C.json
index 4b664ae6..4cc3f739 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_D.json
index 5e47b06e..a9ceef5c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_E.json
index 31af01f5..34d60a88 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_E.json
@@ -400,7 +400,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_F.json
index 95b801ab..76eca5b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominating_Grasp_F.json
@@ -155,7 +155,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A.json
index d5b6be50..50475f7b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B.json
index 05728f2e..b9d71315 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C.json
index f0ae41e6..5ff69e23 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D.json
index 95f9d72c..b2ef1bde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E.json
index 43f96c16..149d36fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F.json
index 9c923415..6f0fd7e6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F.json
@@ -441,7 +441,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_A.json
index 74fd317e..70efbef5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_B.json
index 2b8a30ec..43cc93d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_C.json
index f8ba8b39..de37eb6a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_D.json
index 63131b17..7dfb9fb0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_E.json
index 4e26ab04..f267cdde 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_F.json
index 95c00533..c5eb4026 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Essence_Transfer_F.json
@@ -144,7 +144,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Essence_Transfer_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A.json
index 6064734e..4a58aa6f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B.json
index 8f966b7e..99f62807 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C.json
index f910d822..cc83a451 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D.json
index 66e915f8..a1650eb3 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E.json
index 3000ff3d..4b675c0c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F.json
index c11f5c15..6f2e781f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F.json
@@ -149,7 +149,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_A.json
index 41200074..f699d86c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_B.json
index 68fdab5a..ac4cfca9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_C.json
index 12274848..4fc4b9e9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_D.json
index 689d368c..7728580c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_E.json
index 5e684d2f..966778a2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_F.json
index 7cb19a75..fa160686 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Kheldians_Grace_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A.json
index 4e7c55b0..034954d1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B.json
index 48e1e893..98047023 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C.json
index 3c0c1fc1..27d441a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D.json
index 16ef102d..7c03a00f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E.json
index a18078fd..0f510c5a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F.json
index a60c8106..18443679 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F.json
@@ -182,7 +182,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A.json
index 3dfa14e0..11b6b285 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A.json
@@ -350,7 +350,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B.json
index 21e5e00b..42c9c0fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C.json
index e4f94ec2..f50f58a8 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D.json
index 83aaffa8..cff20939 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E.json
index cc8abf02..b3ea961e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F.json
index 38d1bec0..5db6053d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A.json
index 05749952..831a18c5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B.json
index 3be9315a..86080ea9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C.json
index 8deb1a50..676ba028 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D.json
index 5c286941..42b968d6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E.json
index 44c27274..6dc8ed0b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F.json
index c046c756..ecbf9b13 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F.json
@@ -149,7 +149,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_A.json
index 1d88c88f..253a0a97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_B.json
index a6bbbf49..50d8c1c1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_C.json
index f3747a37..08b84f82 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_D.json
index 6e5303cc..cf133c21 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_E.json
index 53dddd6b..dd67137a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_E.json
@@ -402,7 +402,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_F.json
index 87d90601..6db8203e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Overpowering_Presence_F.json
@@ -155,7 +155,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_A.json
index 0f0c2dab..7be8ae3a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_B.json
index f1f2b260..dff5a86a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_C.json
index a2f38fc5..830b7ce9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_D.json
index adef145f..580e0a26 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_E.json
index 017bf1e9..3308fb3e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_F.json
index 9d02b13d..715bb15a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scourging_Blast_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scourging_Blast_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_A.json
index ab6a44df..a94b6e7a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_B.json
index cb099815..4bb47f00 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_C.json
index 62c9f9fc..25da6887 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_D.json
index 39dd6cbf..517bc356 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_E.json
index cb44894c..44350cf4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_F.json
index 25c4ca39..d46e11f5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Scrappers_Strike_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_A.json
index decd78f5..8decf5db 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_B.json
index 0508cf77..5c9cb8b1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_C.json
index afadc3ee..52b15f00 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_D.json
index 3e69fcce..eac471d5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_E.json
index 0770b8c3..f66fa679 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_F.json
index 274896fb..77407e85 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Spiders_Bite_F.json
@@ -112,7 +112,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Spiders_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_A.json
index 78b4b32b..7c2d5949 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_B.json
index 3d21381d..7942430c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_C.json
index 88f42fd7..24c4843c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_D.json
index 982d82c4..668feffb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_E.json
index 5bab350a..b66745ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_F.json
index 21eb85d1..bc83f1bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Stalkers_Guile_F.json
@@ -145,7 +145,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A.json
index 19dce972..1411d8d2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B.json
index 1ed98834..99d25466 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C.json
index 68264976..b2e29bc4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D.json
index b20fb5c7..c89b76cd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E.json
index edc118cd..a415ea39 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F.json
index d4eca056..50bcabfb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F.json
@@ -148,7 +148,6 @@
"HasGrantPowerEffect": true,
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_A.json
index 39b410bd..3892c372 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_B.json
index 7db9790d..de3ca7d0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_C.json
index cf94d1fe..d1ae2b14 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_D.json
index 233ba9b9..51cb9fd0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_E.json
index 883d041f..3d652c01 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_F.json
index 629711e6..6b6a1139 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Vigilant_Assault_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A.json
index 81afe578..0b01e837 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B.json
index 50ddf9a7..deebd892 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B.json
@@ -332,7 +332,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C.json
index 55b327a4..d65945eb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C.json
@@ -156,7 +156,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D.json
index fbe7035c..a7540ca2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D.json
@@ -366,7 +366,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E.json
index b762fdad..62c17be1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E.json
@@ -402,7 +402,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F.json
index da38030b..e21bce6a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F.json
@@ -192,7 +192,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_A.json
index f8409935..d21543f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_A.json
@@ -113,7 +113,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_B.json
index 567cdf19..14bafbf6 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_B.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_C.json
index 4197fede..961c5b69 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_C.json
@@ -181,7 +181,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_D.json
index 69f1b5b0..ab6268ef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_D.json
@@ -146,7 +146,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_E.json
index d2c0eb02..598b94ff 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_E.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_F.json
index 120e46cb..875726cc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Unbreakable_Constraint_F.json
@@ -147,7 +147,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Unbreakable_Constraint_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_A.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_A.json
index 9a4fb5c1..928531a0 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_A.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_A.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_A",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_B.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_B.json
index a02695c2..d3401f33 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_B.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_B.json
@@ -384,7 +384,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_B",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_C.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_C.json
index f4011b8f..a4d0340e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_C.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_C.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_C",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_D.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_D.json
index cbd5b1bf..356cb50e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_D.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_D.json
@@ -418,7 +418,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_D",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_E.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_E.json
index 186d8840..64244616 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_E.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_E.json
@@ -452,7 +452,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_E",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_F.json b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_F.json
index c5389cce..8a36c106 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_F.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Superior_Attuned_Winters_Bite_F.json
@@ -272,7 +272,6 @@
],
"BoostUsePlayerLevel": true,
"FullSetName": "Boosts.Superior_Attuned_Winters_Bite_F",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Accuracy_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Accuracy_Mez.json
index a9b99119..1ee89b07 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Accuracy_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Accuracy_Mez.json
@@ -476,7 +476,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Accuracy_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Endurance_Discount.json
index 2a62d478..1d74d80a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Buff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Recharge.json
index c66064ef..2985e64d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Buff_Recharge.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Buff_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Accuracy.json
index 5ec9c530..6e85ea3a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Accuracy.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Damage_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Mez.json
index 7399a1a4..4559fc84 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Mez.json
@@ -714,7 +714,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Damage_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Range.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Range.json
index 3561081f..a3958226 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Damage_Range.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Damage_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Accuracy.json
index d7ca279a..2681c8f9 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Accuracy.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_DeBuff_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount.json
index ab779a02..5d3a5b65 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Heal_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Heal_Endurance_Discount.json
index 085dcdb4..789dcdec 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Heal_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Heal_Endurance_Discount.json
@@ -250,7 +250,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Heal_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount.json
index d64b2c4e..024bb159 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Travel_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Travel_Endurance_Discount.json
index ea4b63e3..f4009f77 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Travel_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Synthetic_Hamidon_Travel_Endurance_Discount.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Boosts.Synthetic_Hamidon_Travel_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Accuracy.json
index d85076d0..4bc82319 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Cone.json
index 9039b4b3..7d7672a5 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Cone.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Confuse.json
index 28b3b415..2d313677 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Confuse.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Damage.json
index 6f6bcf1e..a4406739 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Technology_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_Buff.json
index 439524a6..eb297a58 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_Buff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Technology_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_DeBuff.json
index b9c96062..5ae6062d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Defense_DeBuff.json
@@ -457,7 +457,6 @@
}
],
"FullSetName": "Boosts.Technology_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Drain_Endurance.json
index 3410801c..c3175813 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Drain_Endurance.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Technology_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Endurance_Discount.json
index bc1560b6..359b5c71 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Fear.json
index 01a5f944..84ef5cef 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Fear.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Technology_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Fly.json
index da5f5432..43bf14f4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Fly.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Heal.json
index b9ec3ef6..de70ef0e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Heal.json
@@ -209,7 +209,6 @@
}
],
"FullSetName": "Boosts.Technology_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Hold.json
index a7f1f639..f66adbc1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Hold.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Immobilize.json
index 00ae3253..d0e3d674 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Immobilize.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Intangible.json
index 472a8e04..965a2f91 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Intangible.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Boosts.Technology_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Interrupt.json
index bb477bbd..29e8f067 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Interrupt.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Jump.json
index e1f76214..f83729fd 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Jump.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Technology_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Knockback.json
index 90604d73..d13d64b7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Knockback.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Boosts.Technology_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Accuracy.json
index 49af94f5..1deffd20 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Accuracy.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Cone.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Cone.json
index 940926a6..1618ec54 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Cone.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Cone.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Cone",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Confuse.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Confuse.json
index 39661411..00519527 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Confuse.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Confuse.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Confuse",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Damage.json
index db15c261..b4adf098 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_Buff.json
index 2ad6c410..cee4ad71 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_Buff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Defense_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_DeBuff.json
index 56bbdcb7..95e68057 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Defense_DeBuff.json
@@ -458,7 +458,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Defense_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Drain_Endurance.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Drain_Endurance.json
index f5904ec3..30212a74 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Drain_Endurance.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Drain_Endurance.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Drain_Endurance",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Endurance_Discount.json
index 7ef1f38a..3c04a835 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Endurance_Discount.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fear.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fear.json
index 5e785971..cda40024 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fear.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fear.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Fear",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fly.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fly.json
index 89b753b2..80d4d48d 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fly.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Fly.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Fly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Heal.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Heal.json
index 27e66463..ec3a07aa 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Heal.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Heal.json
@@ -210,7 +210,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Heal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Hold.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Hold.json
index 4dbc377b..0d91aa04 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Hold.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Hold.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Hold",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Immobilize.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Immobilize.json
index bd01d375..2ab8caae 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Immobilize.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Immobilize.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Immobilize",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Intangible.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Intangible.json
index 319243de..d6f9e86e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Intangible.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Intangible.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Intangible",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Interrupt.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Interrupt.json
index 3719d5d2..082fcba7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Interrupt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Interrupt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Interrupt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Jump.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Jump.json
index 94cff4e6..f965176f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Jump.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Jump.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Jump",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Knockback.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Knockback.json
index f0996c2d..e9cc7a60 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Knockback.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Knockback.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Knockback",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Range.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Range.json
index 12ae1264..7724d502 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Range.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recharge.json
index 89c8cdca..de86db17 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recharge.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recovery.json
index cde626af..7572c09a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Recovery.json
@@ -142,7 +142,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Res_Damage.json
index 75d2c4db..c8cc7c7e 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Res_Damage.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Run.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Run.json
index 384414d6..96271b6b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Run.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Sleep.json
index f98b805d..a483e7c2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Sleep.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Snare.json
index 967ac568..c3326633 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Snare.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Stun.json
index 8688f093..4268c63c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Stun.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Taunt.json
index 23ef5307..70a22237 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_Taunt.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_Buff.json
index 439137a6..bee8eb97 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_Buff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_DeBuff.json
index 07b286be..0cd13044 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Natural_ToHit_DeBuff.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Natural_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Range.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Range.json
index d01131d4..37d2f17b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Range.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Recharge.json
index fc94b16b..2cee9442 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Recovery.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Recovery.json
index e447c37f..c0bc730c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Recovery.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Boosts.Technology_Recovery",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Res_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Res_Damage.json
index dde109a8..38a515c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Res_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Res_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Technology_Res_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Run.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Run.json
index 441c9ad1..20599a59 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Run.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Run.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_Run",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Sleep.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Sleep.json
index c6e0e2df..c9aec42a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Sleep.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Sleep.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Sleep",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Snare.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Snare.json
index 5142a3d7..01544d4b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Snare.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Snare.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Boosts.Technology_Snare",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Stun.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Stun.json
index cfb38192..cd06901c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Stun.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Stun.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Stun",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_Taunt.json b/Hero Designer/Data/db/Other/_Boosts.Technology_Taunt.json
index 9a013415..b6fb2181 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_Taunt.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_Taunt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Boosts.Technology_Taunt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_Buff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_Buff.json
index 68d4a06b..84b58ba1 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_Buff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_Buff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_ToHit_Buff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_DeBuff.json b/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_DeBuff.json
index ad7a9c52..d6991066 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_DeBuff.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Technology_ToHit_DeBuff.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Technology_ToHit_DeBuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Accuracy_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Accuracy_Mez.json
index 37536180..29dba56c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Accuracy_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Accuracy_Mez.json
@@ -369,7 +369,6 @@
}
],
"FullSetName": "Boosts.Titan_Accuracy_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Endurance_Discount.json
index bb562f62..eff08414 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Titan_Buff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Recharge.json
index 253baa84..d80d8f0f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Buff_Recharge.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Titan_Buff_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Accuracy.json
index f09e5f51..fc70816b 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Accuracy.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Titan_Damage_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Mez.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Mez.json
index 5a42ff71..429780fb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Mez.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Mez.json
@@ -607,7 +607,6 @@
}
],
"FullSetName": "Boosts.Titan_Damage_Mez",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Range.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Range.json
index 04bddd83..85cc11bc 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Range.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Damage_Range.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Titan_Damage_Range",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Accuracy.json
index 3283677b..11e221c7 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Accuracy.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Titan_DeBuff_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Endurance_Discount.json
index bebda582..954ecdbb 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_DeBuff_Endurance_Discount.json
@@ -534,7 +534,6 @@
}
],
"FullSetName": "Boosts.Titan_DeBuff_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Heal_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Heal_Endurance_Discount.json
index d16708eb..74e190b2 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Heal_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Heal_Endurance_Discount.json
@@ -250,7 +250,6 @@
}
],
"FullSetName": "Boosts.Titan_Heal_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Res_Damage_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Res_Damage_Endurance_Discount.json
index 9991c13f..b76e3166 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Res_Damage_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Res_Damage_Endurance_Discount.json
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Boosts.Titan_Res_Damage_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Titan_Travel_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Titan_Travel_Endurance_Discount.json
index 073637ef..74497621 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Titan_Travel_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Titan_Travel_Endurance_Discount.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Boosts.Titan_Travel_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Yins_Magic_Accuracy.json b/Hero Designer/Data/db/Other/_Boosts.Yins_Magic_Accuracy.json
index e57116bc..42f7884a 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Yins_Magic_Accuracy.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Yins_Magic_Accuracy.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Yins_Magic_Accuracy",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Yins_Mutation_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Yins_Mutation_Damage.json
index cb498654..9c3fb70f 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Yins_Mutation_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Yins_Mutation_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Yins_Mutation_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Yins_Natural_Damage.json b/Hero Designer/Data/db/Other/_Boosts.Yins_Natural_Damage.json
index e7442c84..5be1a026 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Yins_Natural_Damage.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Yins_Natural_Damage.json
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Boosts.Yins_Natural_Damage",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Yins_Science_Recharge.json b/Hero Designer/Data/db/Other/_Boosts.Yins_Science_Recharge.json
index 0174e83b..2392784c 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Yins_Science_Recharge.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Yins_Science_Recharge.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Yins_Science_Recharge",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Boosts.Yins_Technology_Endurance_Discount.json b/Hero Designer/Data/db/Other/_Boosts.Yins_Technology_Endurance_Discount.json
index 4c09e858..f26002c4 100644
--- a/Hero Designer/Data/db/Other/_Boosts.Yins_Technology_Endurance_Discount.json
+++ b/Hero Designer/Data/db/Other/_Boosts.Yins_Technology_Endurance_Discount.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Boosts.Yins_Technology_Endurance_Discount",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Epic.Arctic_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Arctic_Mastery.json
index aa8f0b15..a15215b3 100644
--- a/Hero Designer/Data/db/Other/_Epic.Arctic_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Arctic_Mastery.json
@@ -753,7 +753,7 @@
}
],
"FullSetName": "Epic.Arctic_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1440,7 +1440,7 @@
}
],
"FullSetName": "Epic.Arctic_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1994,7 +1994,7 @@
}
],
"FullSetName": "Epic.Arctic_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2445,7 +2445,7 @@
}
],
"FullSetName": "Epic.Arctic_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 5.04995537
},
@@ -2632,7 +2632,7 @@
}
],
"FullSetName": "Epic.Arctic_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Blaster_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Blaster_Mace_Mastery.json
index fea2190c..aeb26fb7 100644
--- a/Hero Designer/Data/db/Other/_Epic.Blaster_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Blaster_Mace_Mastery.json
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Epic.Blaster_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1107,7 +1107,7 @@
}
],
"FullSetName": "Epic.Blaster_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1414,7 +1414,7 @@
}
],
"FullSetName": "Epic.Blaster_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.54161286
},
@@ -1610,7 +1610,7 @@
}
],
"FullSetName": "Epic.Blaster_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1979,7 +1979,7 @@
}
],
"FullSetName": "Epic.Blaster_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Blaster_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Blaster_Mu_Mastery.json
index f4da5c01..80543362 100644
--- a/Hero Designer/Data/db/Other/_Epic.Blaster_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Blaster_Mu_Mastery.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Epic.Blaster_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -767,7 +767,7 @@
}
],
"FullSetName": "Epic.Blaster_Mu_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1265,7 +1265,7 @@
}
],
"FullSetName": "Epic.Blaster_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1396,7 +1396,7 @@
}
],
"FullSetName": "Epic.Blaster_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1805,7 +1805,7 @@
}
],
"FullSetName": "Epic.Blaster_Mu_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Blaze_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Blaze_Mastery.json
index 261055b2..98ee4e87 100644
--- a/Hero Designer/Data/db/Other/_Epic.Blaze_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Blaze_Mastery.json
@@ -634,7 +634,7 @@
}
],
"FullSetName": "Epic.Blaze_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1110,7 +1110,7 @@
}
],
"FullSetName": "Epic.Blaze_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1553,7 +1553,7 @@
}
],
"FullSetName": "Epic.Blaze_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1952,7 +1952,7 @@
}
],
"FullSetName": "Epic.Blaze_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2489,7 +2489,7 @@
}
],
"FullSetName": "Epic.Blaze_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Body_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Body_Mastery.json
index 193e07c1..ede1954f 100644
--- a/Hero Designer/Data/db/Other/_Epic.Body_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Body_Mastery.json
@@ -122,7 +122,7 @@
}
],
"FullSetName": "Epic.Body_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -368,7 +368,7 @@
}
],
"FullSetName": "Epic.Body_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -785,7 +785,7 @@
}
],
"FullSetName": "Epic.Body_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -934,7 +934,6 @@
}
],
"FullSetName": "Epic.Body_Mastery",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1480,7 +1479,7 @@
}
],
"FullSetName": "Epic.Body_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Body_Mastery_Stalker.json b/Hero Designer/Data/db/Other/_Epic.Body_Mastery_Stalker.json
index 4c1c1346..583787ee 100644
--- a/Hero Designer/Data/db/Other/_Epic.Body_Mastery_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Epic.Body_Mastery_Stalker.json
@@ -116,7 +116,6 @@
}
],
"FullSetName": "Epic.Body_Mastery_Stalker",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -362,7 +361,7 @@
}
],
"FullSetName": "Epic.Body_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -700,7 +699,7 @@
}
],
"FullSetName": "Epic.Body_Mastery_Stalker",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -849,7 +848,6 @@
}
],
"FullSetName": "Epic.Body_Mastery_Stalker",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1316,7 +1314,7 @@
}
],
"FullSetName": "Epic.Body_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Brute_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Brute_Leviathan_Mastery.json
index eb8fbb89..cf75fd5e 100644
--- a/Hero Designer/Data/db/Other/_Epic.Brute_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Brute_Leviathan_Mastery.json
@@ -559,7 +559,7 @@
}
],
"FullSetName": "Epic.Brute_Leviathan_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1079,7 +1079,7 @@
}
],
"FullSetName": "Epic.Brute_Leviathan_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2095,7 +2095,7 @@
}
],
"FullSetName": "Epic.Brute_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -2543,7 +2543,7 @@
}
],
"FullSetName": "Epic.Brute_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -2698,7 +2698,7 @@
}
],
"FullSetName": "Epic.Brute_Leviathan_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Brute_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Brute_Mace_Mastery.json
index 8cb8766c..8517625b 100644
--- a/Hero Designer/Data/db/Other/_Epic.Brute_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Brute_Mace_Mastery.json
@@ -486,7 +486,7 @@
}
],
"FullSetName": "Epic.Brute_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -963,7 +963,7 @@
}
],
"FullSetName": "Epic.Brute_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1444,7 +1444,7 @@
}
],
"FullSetName": "Epic.Brute_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1705,7 +1705,7 @@
}
],
"FullSetName": "Epic.Brute_Mace_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1858,7 +1858,7 @@
}
],
"FullSetName": "Epic.Brute_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Brute_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Brute_Mu_Mastery.json
index 7dc0cc23..3c2deb57 100644
--- a/Hero Designer/Data/db/Other/_Epic.Brute_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Brute_Mu_Mastery.json
@@ -485,7 +485,7 @@
}
],
"FullSetName": "Epic.Brute_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1150,7 +1150,7 @@
}
],
"FullSetName": "Epic.Brute_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1705,7 +1705,7 @@
}
],
"FullSetName": "Epic.Brute_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2153,7 +2153,7 @@
}
],
"FullSetName": "Epic.Brute_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2306,7 +2306,7 @@
}
],
"FullSetName": "Epic.Brute_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Brute_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Brute_Soul_Mastery.json
index 685d08ac..52e5876e 100644
--- a/Hero Designer/Data/db/Other/_Epic.Brute_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Brute_Soul_Mastery.json
@@ -357,7 +357,7 @@
}
],
"FullSetName": "Epic.Brute_Soul_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -841,7 +841,7 @@
}
],
"FullSetName": "Epic.Brute_Soul_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.08662224
},
@@ -1544,7 +1544,7 @@
}
],
"FullSetName": "Epic.Brute_Soul_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1923,7 +1923,7 @@
}
],
"FullSetName": "Epic.Brute_Soul_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2072,7 +2072,7 @@
}
],
"FullSetName": "Epic.Brute_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Charge_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Charge_Mastery.json
index e3f11846..bd15d5e9 100644
--- a/Hero Designer/Data/db/Other/_Epic.Charge_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Charge_Mastery.json
@@ -239,7 +239,7 @@
}
],
"FullSetName": "Epic.Charge_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Epic.Charge_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1163,7 +1163,7 @@
}
],
"FullSetName": "Epic.Charge_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1650,7 +1650,7 @@
}
],
"FullSetName": "Epic.Charge_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2090,7 +2090,7 @@
}
],
"FullSetName": "Epic.Charge_Mastery",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 7.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Chill_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Chill_Mastery.json
index dc7bf0bd..3e93870c 100644
--- a/Hero Designer/Data/db/Other/_Epic.Chill_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Chill_Mastery.json
@@ -418,7 +418,7 @@
}
],
"FullSetName": "Epic.Chill_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -648,7 +648,7 @@
}
],
"FullSetName": "Epic.Chill_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -874,7 +874,7 @@
}
],
"FullSetName": "Epic.Chill_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1566,7 +1566,7 @@
}
],
"FullSetName": "Epic.Chill_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2015,7 +2015,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Chill_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Cold_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Cold_Mastery.json
index eb13bdcf..6ca1ede7 100644
--- a/Hero Designer/Data/db/Other/_Epic.Cold_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Cold_Mastery.json
@@ -339,7 +339,7 @@
}
],
"FullSetName": "Epic.Cold_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -569,7 +569,7 @@
}
],
"FullSetName": "Epic.Cold_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1262,7 +1262,7 @@
}
],
"FullSetName": "Epic.Cold_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1488,7 +1488,7 @@
}
],
"FullSetName": "Epic.Cold_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1496,6 +1496,7 @@
"CastTimeReal": 0.07,
"ToggleCost": 0.325,
"IsEpic": true,
+ "IsModified": true,
"PowerIndex": 4099,
"PowerSetID": 2720,
"PowerSetIndex": 4,
@@ -1525,7 +1526,7 @@
"Epic.Cold_Mastery.Hoarfrost"
],
[
- "Epic.Chill_Mastery.Flash_Freeze",
+ "Epic.Cold_Mastery.Flash_Freeze",
"Epic.Cold_Mastery.Frozen_Armor"
],
[
@@ -1550,7 +1551,7 @@
4098
],
[
- 4091,
+ 4096,
4097
],
[
@@ -1648,7 +1649,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 1,
"EffectType": 20,
"MezType": 5,
"Summon": "",
@@ -1680,7 +1680,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 2,
"EffectType": 19,
"MezType": 4,
"Summon": "",
@@ -1714,7 +1713,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 3,
"EffectType": 19,
"MezType": 5,
"Summon": "",
@@ -1748,7 +1746,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 4,
"EffectType": 19,
"MezType": 13,
"Summon": "",
@@ -1781,7 +1778,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 5,
"EffectType": 19,
"MezType": 3,
"Summon": "",
@@ -1814,7 +1810,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 6,
"EffectType": 19,
"MezType": 6,
"Summon": "",
@@ -1848,7 +1843,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 7,
"EffectType": 27,
"Summon": "",
"nSummon": -1,
@@ -1882,7 +1876,6 @@
"Reward": "",
"EffectId": "Ones",
"Special": "",
- "nID": 8,
"EffectType": 26,
"Summon": "",
"nSummon": -1,
@@ -1914,7 +1907,6 @@
"Reward": "Temporary_Powers.Temporary_Powers.NoPhase",
"EffectId": "Ones",
"Special": "",
- "nID": 9,
"EffectType": 12,
"Summon": "Temporary_Powers.Temporary_Powers.NoPhase",
"nSummon": 9777,
@@ -1938,7 +1930,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Cold_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Controller_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Controller_Mace_Mastery.json
index 11b6b4b0..dbc57894 100644
--- a/Hero Designer/Data/db/Other/_Epic.Controller_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Controller_Mace_Mastery.json
@@ -626,7 +626,7 @@
}
],
"FullSetName": "Epic.Controller_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1382,7 +1382,7 @@
}
],
"FullSetName": "Epic.Controller_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1762,7 +1762,7 @@
}
],
"FullSetName": "Epic.Controller_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2023,7 +2023,7 @@
}
],
"FullSetName": "Epic.Controller_Mace_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2176,7 +2176,7 @@
}
],
"FullSetName": "Epic.Controller_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Corr_Flame_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Corr_Flame_Mastery.json
index 020267b1..13567e13 100644
--- a/Hero Designer/Data/db/Other/_Epic.Corr_Flame_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Corr_Flame_Mastery.json
@@ -357,7 +357,7 @@
}
],
"FullSetName": "Epic.Corr_Flame_Mastery",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Epic.Corr_Flame_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1248,7 +1248,7 @@
}
],
"FullSetName": "Epic.Corr_Flame_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1549,7 +1549,7 @@
}
],
"FullSetName": "Epic.Corr_Flame_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1981,7 +1981,7 @@
}
],
"FullSetName": "Epic.Corr_Flame_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Corruptor_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Corruptor_Leviathan_Mastery.json
index 6c7e597d..b4977b09 100644
--- a/Hero Designer/Data/db/Other/_Epic.Corruptor_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Corruptor_Leviathan_Mastery.json
@@ -405,7 +405,7 @@
}
],
"FullSetName": "Epic.Corruptor_Leviathan_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -867,7 +867,7 @@
}
],
"FullSetName": "Epic.Corruptor_Leviathan_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1292,7 +1292,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Corruptor_Leviathan_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1717,7 +1717,7 @@
}
],
"FullSetName": "Epic.Corruptor_Leviathan_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1875,7 +1875,7 @@
}
],
"FullSetName": "Epic.Corruptor_Leviathan_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Corruptor_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Corruptor_Mace_Mastery.json
index 2c704c33..0ba45515 100644
--- a/Hero Designer/Data/db/Other/_Epic.Corruptor_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Corruptor_Mace_Mastery.json
@@ -353,7 +353,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1111,7 +1111,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1372,7 +1372,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mace_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1717,7 +1717,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1871,7 +1871,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Corruptor_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Corruptor_Mu_Mastery.json
index bbd7c896..924775a3 100644
--- a/Hero Designer/Data/db/Other/_Epic.Corruptor_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Corruptor_Mu_Mastery.json
@@ -239,7 +239,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mu_Mastery",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -701,7 +701,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mu_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -850,7 +850,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1315,7 +1315,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mu_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1470,7 +1470,7 @@
}
],
"FullSetName": "Epic.Corruptor_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Corruptor_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Corruptor_Soul_Mastery.json
index fb958dad..eafb9eda 100644
--- a/Hero Designer/Data/db/Other/_Epic.Corruptor_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Corruptor_Soul_Mastery.json
@@ -838,7 +838,7 @@
}
],
"FullSetName": "Epic.Corruptor_Soul_Mastery",
- "CastTime": 4.224,
+ "CastTime": 4.092,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1336,7 +1336,7 @@
}
],
"FullSetName": "Epic.Corruptor_Soul_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2238,7 +2238,7 @@
}
],
"FullSetName": "Epic.Corruptor_Soul_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2562,7 +2562,7 @@
}
],
"FullSetName": "Epic.Corruptor_Soul_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2719,7 +2719,7 @@
}
],
"FullSetName": "Epic.Corruptor_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Dark_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Dark_Mastery.json
index bccebae2..43701d4e 100644
--- a/Hero Designer/Data/db/Other/_Epic.Dark_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Dark_Mastery.json
@@ -204,7 +204,7 @@
}
],
"FullSetName": "Epic.Dark_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -387,7 +387,7 @@
}
],
"FullSetName": "Epic.Dark_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -899,7 +899,7 @@
}
],
"FullSetName": "Epic.Dark_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1270,7 +1270,7 @@
}
],
"FullSetName": "Epic.Dark_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2088,7 +2088,7 @@
}
],
"FullSetName": "Epic.Dark_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Darkness_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Darkness_Mastery.json
index d8b22f00..66fe13ad 100644
--- a/Hero Designer/Data/db/Other/_Epic.Darkness_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Darkness_Mastery.json
@@ -641,7 +641,7 @@
}
],
"FullSetName": "Epic.Darkness_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -904,7 +904,7 @@
}
],
"FullSetName": "Epic.Darkness_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1461,7 +1461,7 @@
}
],
"FullSetName": "Epic.Darkness_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2036,7 +2036,7 @@
}
],
"FullSetName": "Epic.Darkness_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.51993251
},
@@ -2773,7 +2773,7 @@
}
],
"FullSetName": "Epic.Darkness_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.15995646
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Def_Flame_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Def_Flame_Mastery.json
index 32f7ffb3..be9e6037 100644
--- a/Hero Designer/Data/db/Other/_Epic.Def_Flame_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Def_Flame_Mastery.json
@@ -357,7 +357,7 @@
}
],
"FullSetName": "Epic.Def_Flame_Mastery",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Epic.Def_Flame_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1248,7 +1248,7 @@
}
],
"FullSetName": "Epic.Def_Flame_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1549,7 +1549,7 @@
}
],
"FullSetName": "Epic.Def_Flame_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1981,7 +1981,7 @@
}
],
"FullSetName": "Epic.Def_Flame_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Dominator_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Dominator_Leviathan_Mastery.json
index 4189c32c..83fd9f85 100644
--- a/Hero Designer/Data/db/Other/_Epic.Dominator_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Dominator_Leviathan_Mastery.json
@@ -141,7 +141,7 @@
}
],
"FullSetName": "Epic.Dominator_Leviathan_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -441,7 +441,7 @@
}
],
"FullSetName": "Epic.Dominator_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -866,7 +866,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Dominator_Leviathan_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1341,7 +1341,7 @@
}
],
"FullSetName": "Epic.Dominator_Leviathan_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1493,7 +1493,7 @@
}
],
"FullSetName": "Epic.Dominator_Leviathan_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Dominator_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Dominator_Mace_Mastery.json
index 50c8b212..72ce6a88 100644
--- a/Hero Designer/Data/db/Other/_Epic.Dominator_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Dominator_Mace_Mastery.json
@@ -626,7 +626,7 @@
}
],
"FullSetName": "Epic.Dominator_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1382,7 +1382,7 @@
}
],
"FullSetName": "Epic.Dominator_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1763,7 +1763,7 @@
}
],
"FullSetName": "Epic.Dominator_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2708,7 +2708,7 @@
}
],
"FullSetName": "Epic.Dominator_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2861,7 +2861,7 @@
}
],
"FullSetName": "Epic.Dominator_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Dominator_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Dominator_Mu_Mastery.json
index 007168c7..4580a8f9 100644
--- a/Hero Designer/Data/db/Other/_Epic.Dominator_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Dominator_Mu_Mastery.json
@@ -238,7 +238,7 @@
}
],
"FullSetName": "Epic.Dominator_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -700,7 +700,7 @@
}
],
"FullSetName": "Epic.Dominator_Mu_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1120,7 +1120,7 @@
}
],
"FullSetName": "Epic.Dominator_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1676,7 +1676,7 @@
}
],
"FullSetName": "Epic.Dominator_Mu_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1829,7 +1829,7 @@
}
],
"FullSetName": "Epic.Dominator_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Dominator_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Dominator_Soul_Mastery.json
index 1b4da981..2d88020d 100644
--- a/Hero Designer/Data/db/Other/_Epic.Dominator_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Dominator_Soul_Mastery.json
@@ -241,7 +241,7 @@
}
],
"FullSetName": "Epic.Dominator_Soul_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -739,7 +739,7 @@
}
],
"FullSetName": "Epic.Dominator_Soul_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1015,7 +1015,7 @@
}
],
"FullSetName": "Epic.Dominator_Soul_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1845,7 +1845,7 @@
}
],
"FullSetName": "Epic.Dominator_Soul_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1995,7 +1995,7 @@
}
],
"FullSetName": "Epic.Dominator_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Earth_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Earth_Mastery.json
index 85b9d221..bdede4ed 100644
--- a/Hero Designer/Data/db/Other/_Epic.Earth_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Earth_Mastery.json
@@ -650,7 +650,7 @@
}
],
"FullSetName": "Epic.Earth_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -988,7 +988,7 @@
}
],
"FullSetName": "Epic.Earth_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1406,7 +1406,7 @@
}
],
"FullSetName": "Epic.Earth_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1564,7 +1564,7 @@
}
],
"FullSetName": "Epic.Earth_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2010,7 +2010,7 @@
}
],
"FullSetName": "Epic.Earth_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Electrical_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Electrical_Mastery.json
index de3a0ecd..3db35865 100644
--- a/Hero Designer/Data/db/Other/_Epic.Electrical_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Electrical_Mastery.json
@@ -239,7 +239,7 @@
}
],
"FullSetName": "Epic.Electrical_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -540,7 +540,7 @@
}
],
"FullSetName": "Epic.Electrical_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1016,7 +1016,7 @@
}
],
"FullSetName": "Epic.Electrical_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1572,7 +1572,7 @@
}
],
"FullSetName": "Epic.Electrical_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2012,7 +2012,7 @@
}
],
"FullSetName": "Epic.Electrical_Mastery",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 7.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Electricity_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Electricity_Mastery.json
index 97992985..cd5d25b8 100644
--- a/Hero Designer/Data/db/Other/_Epic.Electricity_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Electricity_Mastery.json
@@ -584,7 +584,7 @@
}
],
"FullSetName": "Epic.Electricity_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1128,7 +1128,7 @@
}
],
"FullSetName": "Epic.Electricity_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -1602,7 +1602,7 @@
}
],
"FullSetName": "Epic.Electricity_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2037,7 +2037,7 @@
}
],
"FullSetName": "Epic.Electricity_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2298,7 +2298,7 @@
}
],
"FullSetName": "Epic.Electricity_Mastery",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 2.8
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Energy_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Energy_Mastery.json
index bbb3e971..b5660524 100644
--- a/Hero Designer/Data/db/Other/_Epic.Energy_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Energy_Mastery.json
@@ -122,7 +122,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -368,7 +368,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -711,7 +711,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -860,7 +860,6 @@
}
],
"FullSetName": "Epic.Energy_Mastery",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1332,7 +1331,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Energy_Mastery_Brute.json b/Hero Designer/Data/db/Other/_Epic.Energy_Mastery_Brute.json
index a792838f..f02bfe5d 100644
--- a/Hero Designer/Data/db/Other/_Epic.Energy_Mastery_Brute.json
+++ b/Hero Designer/Data/db/Other/_Epic.Energy_Mastery_Brute.json
@@ -116,7 +116,6 @@
}
],
"FullSetName": "Epic.Energy_Mastery_Brute",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -362,7 +361,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery_Brute",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -705,7 +704,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery_Brute",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -854,7 +853,6 @@
}
],
"FullSetName": "Epic.Energy_Mastery_Brute",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1326,7 +1324,7 @@
}
],
"FullSetName": "Epic.Energy_Mastery_Brute",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Field_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Field_Mastery.json
index 6340a0e0..bb9cf6c5 100644
--- a/Hero Designer/Data/db/Other/_Epic.Field_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Field_Mastery.json
@@ -308,7 +308,7 @@
}
],
"FullSetName": "Epic.Field_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Epic.Field_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1039,7 +1039,7 @@
}
],
"FullSetName": "Epic.Field_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1350,7 +1350,7 @@
}
],
"FullSetName": "Epic.Field_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1887,7 +1887,7 @@
}
],
"FullSetName": "Epic.Field_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Fire_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Fire_Mastery.json
index fc0da1b2..07a5afee 100644
--- a/Hero Designer/Data/db/Other/_Epic.Fire_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Fire_Mastery.json
@@ -278,7 +278,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -608,7 +608,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1120,7 +1120,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1417,7 +1417,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1750,7 +1750,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Fire_Mastery_Dominator.json b/Hero Designer/Data/db/Other/_Epic.Fire_Mastery_Dominator.json
index cf6960d6..7cb7b3ee 100644
--- a/Hero Designer/Data/db/Other/_Epic.Fire_Mastery_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Epic.Fire_Mastery_Dominator.json
@@ -132,7 +132,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery_Dominator",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -462,7 +462,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery_Dominator",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -973,7 +973,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery_Dominator",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1270,7 +1270,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery_Dominator",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1693,7 +1693,7 @@
}
],
"FullSetName": "Epic.Fire_Mastery_Dominator",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Flame_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Flame_Mastery.json
index 33079994..500f4706 100644
--- a/Hero Designer/Data/db/Other/_Epic.Flame_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Flame_Mastery.json
@@ -135,7 +135,7 @@
}
],
"FullSetName": "Epic.Flame_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -364,7 +364,7 @@
}
],
"FullSetName": "Epic.Flame_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -876,7 +876,7 @@
}
],
"FullSetName": "Epic.Flame_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1547,7 +1547,7 @@
}
],
"FullSetName": "Epic.Flame_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1869,7 +1869,7 @@
}
],
"FullSetName": "Epic.Flame_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Force_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Force_Mastery.json
index 7f7515dc..ae283f66 100644
--- a/Hero Designer/Data/db/Other/_Epic.Force_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Force_Mastery.json
@@ -950,7 +950,7 @@
}
],
"FullSetName": "Epic.Force_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1127,7 +1127,7 @@
}
],
"FullSetName": "Epic.Force_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1742,7 +1742,7 @@
}
],
"FullSetName": "Epic.Force_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2182,7 +2182,7 @@
}
],
"FullSetName": "Epic.Force_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2719,7 +2719,7 @@
}
],
"FullSetName": "Epic.Force_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Heat_Mastery_Stalker.json b/Hero Designer/Data/db/Other/_Epic.Heat_Mastery_Stalker.json
index 6c63e65a..232ee2cf 100644
--- a/Hero Designer/Data/db/Other/_Epic.Heat_Mastery_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Epic.Heat_Mastery_Stalker.json
@@ -133,7 +133,7 @@
}
],
"FullSetName": "Epic.Heat_Mastery_Stalker",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -317,7 +317,7 @@
}
],
"FullSetName": "Epic.Heat_Mastery_Stalker",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -588,7 +588,7 @@
}
],
"FullSetName": "Epic.Heat_Mastery_Stalker",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -978,7 +978,7 @@
}
],
"FullSetName": "Epic.Heat_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1298,7 +1298,7 @@
}
],
"FullSetName": "Epic.Heat_Mastery_Stalker",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Ice_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Ice_Mastery.json
index cc6f8e9c..9ff61397 100644
--- a/Hero Designer/Data/db/Other/_Epic.Ice_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Ice_Mastery.json
@@ -492,7 +492,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -903,7 +903,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Ice_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1335,7 +1335,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2030,7 +2030,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2183,7 +2183,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Ice_Mastery_Dominator.json b/Hero Designer/Data/db/Other/_Epic.Ice_Mastery_Dominator.json
index 8d464e5e..887385b8 100644
--- a/Hero Designer/Data/db/Other/_Epic.Ice_Mastery_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Epic.Ice_Mastery_Dominator.json
@@ -430,7 +430,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Ice_Mastery_Dominator",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -547,7 +547,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery_Dominator",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -773,7 +773,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery_Dominator",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1467,7 +1467,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery_Dominator",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1619,7 +1619,7 @@
}
],
"FullSetName": "Epic.Ice_Mastery_Dominator",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Mastermind_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Mastermind_Leviathan_Mastery.json
index 6c80b69a..f28ec894 100644
--- a/Hero Designer/Data/db/Other/_Epic.Mastermind_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Mastermind_Leviathan_Mastery.json
@@ -330,7 +330,7 @@
}
],
"FullSetName": "Epic.Mastermind_Leviathan_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -556,7 +556,7 @@
}
],
"FullSetName": "Epic.Mastermind_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -865,7 +865,7 @@
}
],
"FullSetName": "Epic.Mastermind_Leviathan_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1340,7 +1340,7 @@
}
],
"FullSetName": "Epic.Mastermind_Leviathan_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1715,7 +1715,7 @@
}
],
"FullSetName": "Epic.Mastermind_Leviathan_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Mastermind_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Mastermind_Mace_Mastery.json
index aa923aa3..7f253a5b 100644
--- a/Hero Designer/Data/db/Other/_Epic.Mastermind_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Mastermind_Mace_Mastery.json
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1107,7 +1107,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1413,7 +1413,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.54161286
},
@@ -2314,7 +2314,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mace_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2683,7 +2683,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Mastermind_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Mastermind_Mu_Mastery.json
index 1dde9720..55f78c72 100644
--- a/Hero Designer/Data/db/Other/_Epic.Mastermind_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Mastermind_Mu_Mastery.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -767,7 +767,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mu_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1265,7 +1265,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1752,7 +1752,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mu_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2161,7 +2161,7 @@
}
],
"FullSetName": "Epic.Mastermind_Mu_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Mastermind_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Mastermind_Soul_Mastery.json
index 7ab6e439..ef5b7a9f 100644
--- a/Hero Designer/Data/db/Other/_Epic.Mastermind_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Mastermind_Soul_Mastery.json
@@ -216,7 +216,7 @@
}
],
"FullSetName": "Epic.Mastermind_Soul_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.51993251
},
@@ -714,7 +714,7 @@
}
],
"FullSetName": "Epic.Mastermind_Soul_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -941,7 +941,7 @@
}
],
"FullSetName": "Epic.Mastermind_Soul_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -1260,7 +1260,7 @@
}
],
"FullSetName": "Epic.Mastermind_Soul_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.08662224
},
@@ -1528,7 +1528,7 @@
}
],
"FullSetName": "Epic.Mastermind_Soul_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Munitions_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Munitions_Mastery.json
index e9ff8dae..4c97ba63 100644
--- a/Hero Designer/Data/db/Other/_Epic.Munitions_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Munitions_Mastery.json
@@ -434,7 +434,6 @@
}
],
"FullSetName": "Epic.Munitions_Mastery",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -759,7 +758,7 @@
}
],
"FullSetName": "Epic.Munitions_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -965,7 +964,7 @@
}
],
"FullSetName": "Epic.Munitions_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1393,7 +1392,7 @@
}
],
"FullSetName": "Epic.Munitions_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1725,7 +1724,7 @@
}
],
"FullSetName": "Epic.Munitions_Mastery",
- "CastTime": 6.072,
+ "CastTime": 5.87,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Power_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Power_Mastery.json
index 42bf91b5..ba56b3ab 100644
--- a/Hero Designer/Data/db/Other/_Epic.Power_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Power_Mastery.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Epic.Power_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1289,7 +1289,7 @@
}
],
"FullSetName": "Epic.Power_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1801,7 +1801,7 @@
}
],
"FullSetName": "Epic.Power_Mastery",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2240,7 +2240,7 @@
}
],
"FullSetName": "Epic.Power_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2638,7 +2638,7 @@
}
],
"FullSetName": "Epic.Power_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery.json
index 5d0f0a39..88bb7455 100644
--- a/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery.json
@@ -382,7 +382,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -484,7 +484,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -865,7 +865,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1305,7 +1305,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2239,7 +2239,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery_Dominator.json b/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery_Dominator.json
index 429ce3bc..2acee71e 100644
--- a/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Epic.Primal_Forces_Mastery_Dominator.json
@@ -344,7 +344,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery_Dominator",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery_Dominator",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -827,7 +827,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery_Dominator",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1266,7 +1266,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery_Dominator",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1561,7 +1561,7 @@
}
],
"FullSetName": "Epic.Primal_Forces_Mastery_Dominator",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery.json
index b25297d0..34e9887c 100644
--- a/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery.json
@@ -275,7 +275,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -742,7 +742,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1218,7 +1218,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1421,7 +1421,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1766,7 +1766,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery_Domingator.json b/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery_Domingator.json
index 40cb38b6..3d9bc69f 100644
--- a/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery_Domingator.json
+++ b/Hero Designer/Data/db/Other/_Epic.Psionic_Mastery_Domingator.json
@@ -511,7 +511,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery_Domingator",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -978,7 +978,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery_Domingator",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1453,7 +1453,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery_Domingator",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1655,7 +1655,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery_Domingator",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1999,7 +1999,7 @@
}
],
"FullSetName": "Epic.Psionic_Mastery_Domingator",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Psychic_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Psychic_Mastery.json
index 98253c58..e8569f1c 100644
--- a/Hero Designer/Data/db/Other/_Epic.Psychic_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Psychic_Mastery.json
@@ -319,7 +319,7 @@
}
],
"FullSetName": "Epic.Psychic_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -473,7 +473,7 @@
}
],
"FullSetName": "Epic.Psychic_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -948,7 +948,7 @@
}
],
"FullSetName": "Epic.Psychic_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1115,7 +1115,7 @@
}
],
"FullSetName": "Epic.Psychic_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1367,7 +1367,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Psychic_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Pyre_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Pyre_Mastery.json
index f363bc01..95f828ba 100644
--- a/Hero Designer/Data/db/Other/_Epic.Pyre_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Pyre_Mastery.json
@@ -535,7 +535,7 @@
}
],
"FullSetName": "Epic.Pyre_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -912,7 +912,7 @@
}
],
"FullSetName": "Epic.Pyre_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1288,7 +1288,7 @@
}
],
"FullSetName": "Epic.Pyre_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1794,7 +1794,7 @@
}
],
"FullSetName": "Epic.Pyre_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2264,7 +2264,7 @@
}
],
"FullSetName": "Epic.Pyre_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Stalker_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Stalker_Leviathan_Mastery.json
index f764ef5f..72f50863 100644
--- a/Hero Designer/Data/db/Other/_Epic.Stalker_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Stalker_Leviathan_Mastery.json
@@ -415,7 +415,7 @@
}
],
"FullSetName": "Epic.Stalker_Leviathan_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Epic.Stalker_Leviathan_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -961,7 +961,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Epic.Stalker_Leviathan_Mastery",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1308,7 +1308,7 @@
}
],
"FullSetName": "Epic.Stalker_Leviathan_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1463,7 +1463,7 @@
}
],
"FullSetName": "Epic.Stalker_Leviathan_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Stalker_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Stalker_Mace_Mastery.json
index a1401a4e..c333a262 100644
--- a/Hero Designer/Data/db/Other/_Epic.Stalker_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Stalker_Mace_Mastery.json
@@ -447,7 +447,7 @@
}
],
"FullSetName": "Epic.Stalker_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -944,7 +944,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Epic.Stalker_Mace_Mastery",
- "CastTime": 8.184,
+ "CastTime": 8.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1386,7 +1386,7 @@
}
],
"FullSetName": "Epic.Stalker_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1731,7 +1731,7 @@
}
],
"FullSetName": "Epic.Stalker_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1951,7 +1951,7 @@
}
],
"FullSetName": "Epic.Stalker_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Stalker_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Stalker_Mu_Mastery.json
index 0baf823a..ee73141f 100644
--- a/Hero Designer/Data/db/Other/_Epic.Stalker_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Stalker_Mu_Mastery.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Epic.Stalker_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -948,7 +948,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Epic.Stalker_Mu_Mastery",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1430,7 +1430,7 @@
}
],
"FullSetName": "Epic.Stalker_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1813,7 +1813,7 @@
}
],
"FullSetName": "Epic.Stalker_Mu_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1968,7 +1968,7 @@
}
],
"FullSetName": "Epic.Stalker_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Stalker_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Stalker_Soul_Mastery.json
index c8e4ded3..e0d94468 100644
--- a/Hero Designer/Data/db/Other/_Epic.Stalker_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Stalker_Soul_Mastery.json
@@ -345,7 +345,7 @@
}
],
"FullSetName": "Epic.Stalker_Soul_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -740,7 +740,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Epic.Stalker_Soul_Mastery",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1205,7 +1205,7 @@
}
],
"FullSetName": "Epic.Stalker_Soul_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1447,7 +1447,7 @@
}
],
"FullSetName": "Epic.Stalker_Soul_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1599,7 +1599,7 @@
}
],
"FullSetName": "Epic.Stalker_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Stone_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Stone_Mastery.json
index fe543656..d3230956 100644
--- a/Hero Designer/Data/db/Other/_Epic.Stone_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Stone_Mastery.json
@@ -310,7 +310,7 @@
}
],
"FullSetName": "Epic.Stone_Mastery",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -721,7 +721,7 @@
}
],
"FullSetName": "Epic.Stone_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1029,7 +1029,7 @@
}
],
"FullSetName": "Epic.Stone_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1727,7 +1727,7 @@
}
],
"FullSetName": "Epic.Stone_Mastery",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1978,7 +1978,7 @@
}
],
"FullSetName": "Epic.Stone_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.VEAT_Leviathan_Mastery.json b/Hero Designer/Data/db/Other/_Epic.VEAT_Leviathan_Mastery.json
index 6a8ac13a..788acf0a 100644
--- a/Hero Designer/Data/db/Other/_Epic.VEAT_Leviathan_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.VEAT_Leviathan_Mastery.json
@@ -275,7 +275,7 @@
}
],
"FullSetName": "Epic.VEAT_Leviathan_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -581,7 +581,7 @@
}
],
"FullSetName": "Epic.VEAT_Leviathan_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1384,7 +1384,7 @@
}
],
"FullSetName": "Epic.VEAT_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1619,7 +1619,7 @@
}
],
"FullSetName": "Epic.VEAT_Leviathan_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1774,7 +1774,7 @@
}
],
"FullSetName": "Epic.VEAT_Leviathan_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.VEAT_Mace_Mastery.json b/Hero Designer/Data/db/Other/_Epic.VEAT_Mace_Mastery.json
index 6704b571..ab314358 100644
--- a/Hero Designer/Data/db/Other/_Epic.VEAT_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.VEAT_Mace_Mastery.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Epic.VEAT_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -640,7 +640,7 @@
}
],
"FullSetName": "Epic.VEAT_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -942,7 +942,7 @@
}
],
"FullSetName": "Epic.VEAT_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1370,7 +1370,7 @@
}
],
"FullSetName": "Epic.VEAT_Mace_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1523,7 +1523,7 @@
}
],
"FullSetName": "Epic.VEAT_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.VEAT_Mu_Mastery.json b/Hero Designer/Data/db/Other/_Epic.VEAT_Mu_Mastery.json
index 1835a1fb..e53fd576 100644
--- a/Hero Designer/Data/db/Other/_Epic.VEAT_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.VEAT_Mu_Mastery.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Epic.VEAT_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -789,7 +789,7 @@
}
],
"FullSetName": "Epic.VEAT_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1131,7 +1131,7 @@
}
],
"FullSetName": "Epic.VEAT_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1433,7 +1433,7 @@
}
],
"FullSetName": "Epic.VEAT_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1586,7 +1586,7 @@
}
],
"FullSetName": "Epic.VEAT_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.VEAT_Soul_Mastery.json b/Hero Designer/Data/db/Other/_Epic.VEAT_Soul_Mastery.json
index 5bf6df90..455c7f4f 100644
--- a/Hero Designer/Data/db/Other/_Epic.VEAT_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.VEAT_Soul_Mastery.json
@@ -211,7 +211,7 @@
}
],
"FullSetName": "Epic.VEAT_Soul_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -512,7 +512,7 @@
}
],
"FullSetName": "Epic.VEAT_Soul_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.08662224
},
@@ -1215,7 +1215,7 @@
}
],
"FullSetName": "Epic.VEAT_Soul_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1415,7 +1415,7 @@
}
],
"FullSetName": "Epic.VEAT_Soul_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1563,7 +1563,7 @@
}
],
"FullSetName": "Epic.VEAT_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery.json b/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery.json
index c03b8944..d5071480 100644
--- a/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery.json
+++ b/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery.json
@@ -602,7 +602,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -717,7 +717,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1094,7 +1094,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1355,7 +1355,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1758,7 +1758,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery_Stalker.json b/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery_Stalker.json
index c0217228..6323da70 100644
--- a/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Epic.Weapon_Mastery_Stalker.json
@@ -490,7 +490,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery_Stalker",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -624,7 +624,6 @@
}
],
"FullSetName": "Epic.Weapon_Mastery_Stalker",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -922,7 +921,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1183,7 +1182,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1507,7 +1506,7 @@
}
],
"FullSetName": "Epic.Weapon_Mastery_Stalker",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Alpha.json b/Hero Designer/Data/db/Other/_Incarnate.Alpha.json
index a65b8b4e..5a520357 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Alpha.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Alpha.json
@@ -240,7 +240,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 36
},
@@ -459,7 +458,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 37
},
@@ -775,7 +773,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 43
},
@@ -1091,7 +1088,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 40
},
@@ -1472,7 +1468,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 41
},
@@ -1691,7 +1686,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 38
},
@@ -2202,7 +2196,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 44
},
@@ -2583,7 +2576,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 42
},
@@ -2736,7 +2728,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3051,7 +3042,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -3205,7 +3195,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 45
},
@@ -3424,7 +3413,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 46
},
@@ -3740,7 +3728,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 52
},
@@ -4056,7 +4043,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 49
},
@@ -4437,7 +4423,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 50
},
@@ -4656,7 +4641,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 47
},
@@ -5167,7 +5151,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 53
},
@@ -5418,7 +5401,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 48
},
@@ -5799,7 +5781,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 51
},
@@ -6077,7 +6058,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 39
},
@@ -6295,7 +6275,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 1
},
@@ -6610,7 +6589,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 4
},
@@ -6990,7 +6968,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 5
},
@@ -7208,7 +7185,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 2
},
@@ -7718,7 +7694,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -7968,7 +7943,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -8348,7 +8322,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -8501,7 +8474,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 9
},
@@ -8719,7 +8691,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 10
},
@@ -9034,7 +9005,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 16
},
@@ -9349,7 +9319,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 13
},
@@ -9729,7 +9698,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 14
},
@@ -9947,7 +9915,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -10457,7 +10424,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 17
},
@@ -10707,7 +10673,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 12
},
@@ -11087,7 +11052,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 15
},
@@ -11240,7 +11204,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 18
},
@@ -11458,7 +11421,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 19
},
@@ -11773,7 +11735,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 25
},
@@ -12088,7 +12049,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 22
},
@@ -12468,7 +12428,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 23
},
@@ -12686,7 +12645,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 20
},
@@ -13196,7 +13154,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 26
},
@@ -13446,7 +13403,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 21
},
@@ -13826,7 +13782,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 24
},
@@ -13979,7 +13934,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 54
},
@@ -14197,7 +14151,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 55
},
@@ -14512,7 +14465,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 61
},
@@ -14827,7 +14779,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 58
},
@@ -15207,7 +15158,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 59
},
@@ -15425,7 +15375,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 56
},
@@ -15935,7 +15884,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 62
},
@@ -16185,7 +16133,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 57
},
@@ -16565,7 +16512,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 60
},
@@ -16718,7 +16664,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 27
},
@@ -16936,7 +16881,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 28
},
@@ -17251,7 +17195,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -17566,7 +17509,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 31
},
@@ -17946,7 +17888,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 32
},
@@ -18164,7 +18105,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 29
},
@@ -18674,7 +18614,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -18924,7 +18863,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 30
},
@@ -19304,7 +19242,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 33
},
@@ -19457,7 +19394,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 63
},
@@ -19675,7 +19611,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 64
},
@@ -19990,7 +19925,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 70
},
@@ -20305,7 +20239,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 67
},
@@ -20685,7 +20618,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 68
},
@@ -20903,7 +20835,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 65
},
@@ -21413,7 +21344,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 71
},
@@ -21663,7 +21593,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 66
},
@@ -22043,7 +21972,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Alpha",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 69
}
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Alpha_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Alpha_Silent.json
index 1f3bee71..fd140b55 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Alpha_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Alpha_Silent.json
@@ -272,7 +272,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -886,7 +885,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -947,7 +945,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1077,7 +1074,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1207,7 +1203,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1337,7 +1332,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1467,7 +1461,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1597,7 +1590,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1727,7 +1719,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1788,7 +1779,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1920,7 +1910,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2052,7 +2041,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2113,7 +2101,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2726,7 +2713,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3339,7 +3325,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3952,7 +3937,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4565,7 +4549,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5178,7 +5161,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5239,7 +5221,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6079,7 +6060,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6919,7 +6899,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7759,7 +7738,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7820,7 +7798,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8660,7 +8637,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9500,7 +9476,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10340,7 +10315,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11180,7 +11154,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11241,7 +11214,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11371,7 +11343,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11501,7 +11472,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11631,7 +11601,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11761,7 +11730,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11891,7 +11859,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12021,7 +11988,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12082,7 +12048,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12285,7 +12250,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12488,7 +12452,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12549,7 +12512,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12679,7 +12641,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12809,7 +12770,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12870,7 +12830,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13138,7 +13097,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13406,7 +13364,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13674,7 +13631,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13942,7 +13898,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14210,7 +14165,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14478,7 +14432,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14539,7 +14492,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14671,7 +14623,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14803,7 +14754,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14935,7 +14885,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15067,7 +15016,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15199,7 +15147,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15331,7 +15278,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15463,7 +15409,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15524,7 +15469,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15656,7 +15600,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15788,7 +15731,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15920,7 +15862,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16052,7 +15993,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16113,7 +16053,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16243,7 +16182,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16373,7 +16311,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16434,7 +16371,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16564,7 +16500,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16694,7 +16629,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16755,7 +16689,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16954,7 +16887,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17153,7 +17085,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17214,7 +17145,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17417,7 +17347,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17620,7 +17549,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17681,7 +17609,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17811,7 +17738,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17941,7 +17867,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18071,7 +17996,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18201,7 +18125,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18262,7 +18185,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18392,7 +18314,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18522,7 +18443,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18652,7 +18572,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18782,7 +18701,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18912,7 +18830,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19042,7 +18959,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19172,7 +19088,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19233,7 +19148,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19432,7 +19346,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19631,7 +19544,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19830,7 +19742,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20029,7 +19940,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20228,7 +20138,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20427,7 +20336,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20488,7 +20396,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21101,7 +21008,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21714,7 +21620,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22327,7 +22232,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22940,7 +22844,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23553,7 +23456,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24166,7 +24068,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24227,7 +24128,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24357,7 +24257,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24487,7 +24386,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24548,7 +24446,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24680,7 +24577,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24812,7 +24708,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24873,7 +24768,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25141,7 +25035,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25409,7 +25302,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25470,7 +25362,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25602,7 +25493,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25734,7 +25624,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25866,7 +25755,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25998,7 +25886,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26059,7 +25946,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26191,7 +26077,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26323,7 +26208,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26455,7 +26339,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26587,7 +26470,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26648,7 +26530,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26778,7 +26659,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26908,7 +26788,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27038,7 +26917,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27168,7 +27046,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27229,7 +27106,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27359,7 +27235,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27489,7 +27364,6 @@
}
],
"FullSetName": "Incarnate.Alpha_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.AntiMatterRayBurn.json b/Hero Designer/Data/db/Other/_Incarnate.AntiMatterRayBurn.json
index 94c3e792..bedebe86 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.AntiMatterRayBurn.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.AntiMatterRayBurn.json
@@ -145,7 +145,6 @@
}
],
"FullSetName": "Incarnate.AntiMatterRayBurn",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Barrier_Rez.json b/Hero Designer/Data/db/Other/_Incarnate.Barrier_Rez.json
index 51fe75f3..8c3ae964 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Barrier_Rez.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Barrier_Rez.json
@@ -178,7 +178,6 @@
}
],
"FullSetName": "Incarnate.Barrier_Rez",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -337,7 +336,6 @@
}
],
"FullSetName": "Incarnate.Barrier_Rez",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -496,7 +494,6 @@
}
],
"FullSetName": "Incarnate.Barrier_Rez",
- "CastTime": 0.132,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Data.json b/Hero Designer/Data/db/Other/_Incarnate.Data.json
index 829bfa84..ad2fadf7 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Data.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Data.json
@@ -125,7 +125,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -259,7 +259,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -393,7 +393,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -527,7 +527,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -661,7 +661,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -795,7 +795,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -929,7 +929,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1029,7 +1029,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1163,7 +1163,7 @@
}
],
"FullSetName": "Incarnate.Data",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Defiler_Pets.json b/Hero Designer/Data/db/Other/_Incarnate.Defiler_Pets.json
index a51e9816..47d9eea5 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Defiler_Pets.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Defiler_Pets.json
@@ -433,7 +433,6 @@
}
],
"FullSetName": "Incarnate.Defiler_Pets",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Destiny.json b/Hero Designer/Data/db/Other/_Incarnate.Destiny.json
index 13767dc5..a67a2596 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Destiny.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Destiny.json
@@ -494,7 +494,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -862,7 +862,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -1094,7 +1094,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -1527,7 +1527,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -3774,7 +3774,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -6021,7 +6021,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -8203,7 +8203,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -8636,7 +8636,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -10883,7 +10883,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -13503,7 +13503,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 10.0
},
{
@@ -16058,7 +16058,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -18613,7 +18613,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -21233,7 +21233,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -23886,7 +23886,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -26539,7 +26539,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 10.0
},
{
@@ -29127,7 +29127,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -31747,7 +31747,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 10.0
},
{
@@ -34400,7 +34400,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -36280,7 +36280,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -38095,7 +38095,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 5.5
},
{
@@ -39910,7 +39910,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 5.5
},
{
@@ -41790,7 +41790,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 5.5
},
{
@@ -46307,7 +46307,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 5.5
},
{
@@ -50824,7 +50824,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -55276,7 +55276,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 5.5
},
{
@@ -57156,7 +57156,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -61673,7 +61673,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -61906,7 +61906,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -62074,7 +62074,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -62242,7 +62242,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -62475,7 +62475,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -62810,7 +62810,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -63280,7 +63280,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -63550,7 +63550,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -63783,7 +63783,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -64245,7 +64245,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.63999987,
+ "CastTime": 2.4,
"AoEModifier": 1.0
},
{
@@ -64548,7 +64548,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -64646,7 +64646,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -64744,7 +64744,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -65047,7 +65047,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -65354,7 +65354,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -65661,7 +65661,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -65903,7 +65903,7 @@
}
],
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -66206,7 +66206,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -66513,7 +66513,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Destiny",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Destiny_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Destiny_Silent.json
index 0aeb9e38..180ef58d 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Destiny_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Destiny_Silent.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Incarnate.Destiny_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -297,7 +296,6 @@
}
],
"FullSetName": "Incarnate.Destiny_Silent",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -491,7 +489,6 @@
}
],
"FullSetName": "Incarnate.Destiny_Silent",
- "CastTime": 0.132,
"AoEModifier": 7.75000048
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Fate.json b/Hero Designer/Data/db/Other/_Incarnate.Fate.json
index 82bce12a..96031342 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Fate.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Fate.json
@@ -255,7 +255,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -621,7 +621,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -2801,7 +2801,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -5387,7 +5387,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -7973,7 +7973,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
},
{
@@ -9785,7 +9785,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -14126,7 +14126,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 10.0
},
{
@@ -14362,7 +14362,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -14598,7 +14598,7 @@
}
],
"FullSetName": "Incarnate.Fate",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Faux_Granter.json b/Hero Designer/Data/db/Other/_Incarnate.Faux_Granter.json
index d2e91055..62415ac1 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Faux_Granter.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Faux_Granter.json
@@ -68,7 +68,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Faux_Granter",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Faux_Proc.json b/Hero Designer/Data/db/Other/_Incarnate.Faux_Proc.json
index 6d800a8b..99aa85fa 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Faux_Proc.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Faux_Proc.json
@@ -78,7 +78,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Faux_Proc",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -129,7 +128,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Faux_Proc",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Faux_Uberbuff.json b/Hero Designer/Data/db/Other/_Incarnate.Faux_Uberbuff.json
index 9edb0b58..6a150d6e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Faux_Uberbuff.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Faux_Uberbuff.json
@@ -68,7 +68,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Faux_Uberbuff",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Faux_Untouchable.json b/Hero Designer/Data/db/Other/_Incarnate.Faux_Untouchable.json
index d44df17d..e68a4236 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Faux_Untouchable.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Faux_Untouchable.json
@@ -68,7 +68,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Faux_Untouchable",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Genesis.json b/Hero Designer/Data/db/Other/_Incarnate.Genesis.json
index a96ee59d..9c037e9f 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Genesis.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Genesis.json
@@ -112,7 +112,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Genesis",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.052773
},
{
@@ -295,7 +295,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -478,7 +477,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -661,7 +659,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -844,7 +841,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1027,7 +1023,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1210,7 +1205,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1393,7 +1387,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1576,7 +1569,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1759,7 +1751,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1942,7 +1933,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2125,7 +2115,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2308,7 +2297,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2491,7 +2479,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2674,7 +2661,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2857,7 +2843,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3040,7 +3025,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3223,7 +3207,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3406,7 +3389,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4114,7 +4096,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4724,7 +4705,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5334,7 +5314,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6042,7 +6021,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6750,7 +6728,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7458,7 +7435,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8165,7 +8141,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8776,7 +8751,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9387,7 +9361,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9570,7 +9543,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9753,7 +9725,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9936,7 +9907,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10119,7 +10089,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10302,7 +10271,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10485,7 +10453,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10668,7 +10635,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10851,7 +10817,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11034,7 +10999,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Genesis_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Genesis_Silent.json
index 06a88faa..e739eee4 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Genesis_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Genesis_Silent.json
@@ -130,7 +130,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -956,7 +955,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1782,7 +1780,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2608,7 +2605,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3434,7 +3430,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3550,7 +3545,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3666,7 +3660,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3782,7 +3775,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3898,7 +3890,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4229,7 +4220,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4560,7 +4550,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4891,7 +4880,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5222,7 +5210,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5316,7 +5303,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5410,7 +5396,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5504,7 +5489,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5861,7 +5845,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6218,7 +6201,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6575,7 +6557,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6932,7 +6913,6 @@
}
],
"FullSetName": "Incarnate.Genesis_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Hybrid.json b/Hero Designer/Data/db/Other/_Incarnate.Hybrid.json
index 5a4f1152..fe68f0ff 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Hybrid.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Hybrid.json
@@ -276,7 +276,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -500,7 +499,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -724,7 +722,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1013,7 +1010,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1302,7 +1298,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1524,7 +1519,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1746,7 +1740,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1970,7 +1963,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2192,7 +2184,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2839,7 +2830,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3486,7 +3476,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3743,7 +3732,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4390,7 +4378,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5037,7 +5024,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5424,7 +5410,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5681,7 +5666,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6328,7 +6312,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6650,7 +6633,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6883,7 +6865,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -7678,7 +7659,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -8284,7 +8264,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -9569,7 +9548,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -10364,7 +10342,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -10970,7 +10947,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -11828,7 +11804,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -13113,7 +13088,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -13971,7 +13945,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -14528,7 +14501,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -15725,7 +15697,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -16428,7 +16399,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -17849,7 +17819,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -19814,7 +19783,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -20589,7 +20557,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 13.0
},
{
@@ -21673,7 +21640,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -23862,7 +23828,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -25018,7 +24983,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid",
- "CastTime": 0.132,
"AoEModifier": 13.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Hybrid_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Hybrid_Silent.json
index b7f2c1d2..41055077 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Hybrid_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Hybrid_Silent.json
@@ -172,7 +172,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -496,7 +495,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -820,7 +818,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1144,7 +1141,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1468,7 +1464,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1562,7 +1557,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1656,7 +1650,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1750,7 +1743,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1844,7 +1836,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1938,7 +1929,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2032,7 +2022,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2126,7 +2115,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2220,7 +2208,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2313,7 +2300,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2406,7 +2392,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2499,7 +2484,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2592,7 +2576,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2685,7 +2668,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2778,7 +2760,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2871,7 +2852,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2964,7 +2944,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3057,7 +3036,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3154,7 +3132,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3251,7 +3228,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3348,7 +3324,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3445,7 +3420,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3542,7 +3516,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3639,7 +3612,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3889,7 +3861,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4139,7 +4110,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4389,7 +4359,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4639,7 +4608,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4769,7 +4737,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4899,7 +4866,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5031,7 +4997,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5385,7 +5350,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5739,7 +5703,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6093,7 +6056,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6447,7 +6409,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6801,7 +6762,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7155,7 +7115,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7509,7 +7468,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7863,7 +7821,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8217,7 +8174,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8345,7 +8301,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8639,7 +8594,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8767,7 +8721,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8895,7 +8848,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9023,7 +8975,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9151,7 +9102,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9279,7 +9229,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9365,7 +9314,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9450,7 +9398,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9535,7 +9482,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9620,7 +9566,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9705,7 +9650,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9798,7 +9742,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9891,7 +9834,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9977,7 +9919,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10063,7 +10004,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10149,7 +10089,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10235,7 +10174,6 @@
}
],
"FullSetName": "Incarnate.Hybrid_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Interface.json b/Hero Designer/Data/db/Other/_Incarnate.Interface.json
index 6675080c..7220265e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Interface.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Interface.json
@@ -335,7 +335,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -486,7 +485,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -733,7 +731,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -883,7 +880,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1033,7 +1029,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1280,7 +1275,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1527,7 +1521,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1774,7 +1767,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2021,7 +2013,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2171,7 +2162,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2418,7 +2408,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2665,7 +2654,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2815,7 +2803,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2965,7 +2952,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3212,7 +3198,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3459,7 +3444,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3706,7 +3690,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3953,7 +3936,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4103,7 +4085,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4253,7 +4234,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4403,7 +4383,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4650,7 +4629,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4897,7 +4875,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5144,7 +5121,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5294,7 +5270,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5444,7 +5419,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5594,7 +5568,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5938,7 +5911,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6185,7 +6157,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6335,7 +6306,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6679,7 +6649,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7023,7 +6992,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7367,7 +7335,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7614,7 +7581,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7861,7 +7827,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8108,7 +8073,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8355,7 +8319,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8505,7 +8468,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8655,7 +8617,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8902,7 +8863,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9149,7 +9109,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9396,7 +9355,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9643,7 +9601,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9793,7 +9750,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9943,7 +9899,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10190,7 +10145,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10340,7 +10294,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10490,7 +10443,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10737,7 +10689,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10984,7 +10935,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11231,7 +11181,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11478,7 +11427,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11628,7 +11576,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11872,7 +11819,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12119,7 +12065,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12269,7 +12214,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12419,7 +12363,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12666,7 +12609,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12913,7 +12855,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13160,7 +13101,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13407,7 +13347,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13557,7 +13496,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13707,7 +13645,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13954,7 +13891,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14104,7 +14040,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14254,7 +14189,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14501,7 +14435,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14748,7 +14681,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14995,7 +14927,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15242,7 +15173,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15392,7 +15322,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15639,7 +15568,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Interface",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Interface_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Interface_Silent.json
index da91d80f..8f173638 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Interface_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Interface_Silent.json
@@ -177,7 +177,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -313,7 +312,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -662,7 +660,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -758,7 +755,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -819,7 +815,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -880,7 +875,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -941,7 +935,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1002,7 +995,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1063,7 +1055,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1124,7 +1115,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1185,7 +1175,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1246,7 +1235,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1307,7 +1295,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1368,7 +1355,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1429,7 +1415,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1490,7 +1475,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1551,7 +1535,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1612,7 +1595,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1673,7 +1655,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1734,7 +1715,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1795,7 +1775,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1856,7 +1835,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1952,7 +1930,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2048,7 +2025,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2144,7 +2120,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2240,7 +2215,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2336,7 +2310,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2502,7 +2475,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2563,7 +2535,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2624,7 +2595,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2685,7 +2655,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2746,7 +2715,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2807,7 +2775,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2868,7 +2835,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2929,7 +2895,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2990,7 +2955,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3051,7 +3015,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3187,7 +3150,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3314,7 +3276,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3516,7 +3477,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3577,7 +3537,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3638,7 +3597,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3699,7 +3657,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3760,7 +3717,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3821,7 +3777,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3882,7 +3837,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3943,7 +3897,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4004,7 +3957,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4065,7 +4017,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4126,7 +4077,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4187,7 +4137,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4248,7 +4197,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4309,7 +4257,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4370,7 +4317,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4431,7 +4377,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4492,7 +4437,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4553,7 +4497,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4614,7 +4557,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4711,7 +4653,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4807,7 +4748,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4903,7 +4843,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4957,7 +4896,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5298,7 +5236,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6242,7 +6179,6 @@
}
],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6296,7 +6232,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Interface_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Ion_Judgement.json b/Hero Designer/Data/db/Other/_Incarnate.Ion_Judgement.json
index 39fd846b..c220f32f 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Ion_Judgement.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Ion_Judgement.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -497,7 +496,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -740,7 +738,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -983,7 +980,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -1191,7 +1187,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -1434,7 +1429,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -1677,7 +1671,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -1885,7 +1878,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -2093,7 +2085,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -2266,7 +2257,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -2616,7 +2606,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -2966,7 +2955,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3281,7 +3269,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3596,7 +3583,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3911,7 +3897,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -4226,7 +4211,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -4506,7 +4490,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -4898,7 +4881,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -5290,7 +5272,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -5682,7 +5663,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -6039,7 +6019,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -6354,7 +6333,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -6669,7 +6647,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -6949,7 +6926,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -7192,7 +7168,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -7435,7 +7410,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -7643,7 +7617,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -8035,7 +8008,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -8427,7 +8399,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -8784,7 +8755,6 @@
}
],
"FullSetName": "Incarnate.Ion_Judgement",
- "CastTime": 0.132,
"AoEModifier": 7.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Judgement.json b/Hero Designer/Data/db/Other/_Incarnate.Judgement.json
index 04f5608e..d34d04cf 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Judgement.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Judgement.json
@@ -208,7 +208,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 8.5
},
{
@@ -346,7 +346,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 5.5
},
{
@@ -450,7 +450,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 5.5
},
{
@@ -590,7 +590,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 8.5
},
{
@@ -767,7 +767,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 8.5
},
{
@@ -942,7 +942,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 8.5
},
{
@@ -1117,7 +1117,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 5.5
},
{
@@ -1255,7 +1255,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 5.5
},
{
@@ -1430,7 +1430,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 5.5
},
{
@@ -1571,7 +1571,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.139875
},
{
@@ -1678,7 +1678,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -1818,7 +1818,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -2135,7 +2135,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -2418,7 +2418,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.139875
},
{
@@ -2778,7 +2778,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.139875
},
{
@@ -3061,7 +3061,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -3201,7 +3201,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -3561,7 +3561,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -3805,7 +3805,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -4049,7 +4049,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -4257,7 +4257,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -4611,7 +4611,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -4929,7 +4929,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -5326,7 +5326,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -5644,7 +5644,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -5888,7 +5888,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -6285,7 +6285,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -6429,7 +6429,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -6573,7 +6573,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 4.75
},
{
@@ -6678,7 +6678,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 4.75
},
{
@@ -6822,7 +6822,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 4.75
},
{
@@ -6927,7 +6927,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -7109,7 +7109,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -7214,7 +7214,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -7358,7 +7358,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 4.75
},
{
@@ -7540,7 +7540,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -7678,7 +7678,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 8.5
},
{
@@ -7816,7 +7816,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -7920,7 +7920,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -8131,7 +8131,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -8588,7 +8588,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -8972,7 +8972,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 8.5
},
{
@@ -9356,7 +9356,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -9494,7 +9494,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -9878,7 +9878,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 8.5
},
{
@@ -10023,7 +10023,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 8.439905
},
{
@@ -10168,7 +10168,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 4.757259
},
{
@@ -10274,7 +10274,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 4.757259
},
{
@@ -10419,7 +10419,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 6.63588858
},
{
@@ -10525,7 +10525,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 5.95993662
},
{
@@ -10666,7 +10666,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 8.439905
},
{
@@ -10772,7 +10772,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 5.95993662
},
{
@@ -10917,7 +10917,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 6.63588858
},
{
@@ -11058,7 +11058,7 @@
}
],
"FullSetName": "Incarnate.Judgement",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 5.95993662
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore.json b/Hero Designer/Data/db/Other/_Incarnate.Lore.json
index b1f7b8e1..581473b9 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore.json
@@ -297,7 +297,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -398,7 +398,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -499,7 +499,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -699,7 +699,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -899,7 +899,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1099,7 +1099,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1234,7 +1234,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1434,7 +1434,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1634,7 +1634,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1834,7 +1834,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1935,7 +1935,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2036,7 +2036,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2236,7 +2236,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2436,7 +2436,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2636,7 +2636,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2771,7 +2771,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -2971,7 +2971,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3171,7 +3171,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3371,7 +3371,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3472,7 +3472,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3573,7 +3573,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3773,7 +3773,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -3973,7 +3973,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -4173,7 +4173,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -4308,7 +4308,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -4508,7 +4508,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -4708,7 +4708,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -4908,7 +4908,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5009,7 +5009,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5110,7 +5110,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5310,7 +5310,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5510,7 +5510,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5710,7 +5710,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -5845,7 +5845,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6045,7 +6045,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6245,7 +6245,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6445,7 +6445,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6546,7 +6546,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6746,7 +6746,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -6946,7 +6946,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7146,7 +7146,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7281,7 +7281,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7481,7 +7481,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7681,7 +7681,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7881,7 +7881,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -7982,7 +7982,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -8083,7 +8083,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -8283,7 +8283,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -8483,7 +8483,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -8683,7 +8683,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -8818,7 +8818,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9018,7 +9018,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9218,7 +9218,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9418,7 +9418,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9519,7 +9519,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9620,7 +9620,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -9820,7 +9820,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10020,7 +10020,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10220,7 +10220,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10355,7 +10355,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10555,7 +10555,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10755,7 +10755,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -10955,7 +10955,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11056,7 +11056,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11157,7 +11157,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11357,7 +11357,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11557,7 +11557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11757,7 +11757,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -11892,7 +11892,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12092,7 +12092,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12292,7 +12292,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12492,7 +12492,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12593,7 +12593,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12694,7 +12694,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -12894,7 +12894,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -13094,7 +13094,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -13294,7 +13294,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -13429,7 +13429,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -13629,7 +13629,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -13829,7 +13829,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14029,7 +14029,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14130,7 +14130,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14231,7 +14231,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14431,7 +14431,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14631,7 +14631,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14831,7 +14831,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -14966,7 +14966,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15166,7 +15166,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15366,7 +15366,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15566,7 +15566,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15667,7 +15667,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15768,7 +15768,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -15968,7 +15968,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -16168,7 +16168,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -16368,7 +16368,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -16503,7 +16503,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -16703,7 +16703,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -16903,7 +16903,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17103,7 +17103,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17204,7 +17204,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17305,7 +17305,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17505,7 +17505,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17705,7 +17705,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -17905,7 +17905,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18040,7 +18040,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18240,7 +18240,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18440,7 +18440,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18640,7 +18640,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18741,7 +18741,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -18842,7 +18842,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19042,7 +19042,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19242,7 +19242,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19442,7 +19442,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19577,7 +19577,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19777,7 +19777,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -19977,7 +19977,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20177,7 +20177,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20278,7 +20278,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20379,7 +20379,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20579,7 +20579,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20779,7 +20779,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -20979,7 +20979,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21114,7 +21114,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21314,7 +21314,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21514,7 +21514,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21714,7 +21714,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21815,7 +21815,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -21916,7 +21916,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -22116,7 +22116,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -22316,7 +22316,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -22516,7 +22516,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -22651,7 +22651,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -22851,7 +22851,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23051,7 +23051,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23251,7 +23251,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23352,7 +23352,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23453,7 +23453,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23653,7 +23653,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -23853,7 +23853,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24053,7 +24053,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24188,7 +24188,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24388,7 +24388,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24588,7 +24588,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24788,7 +24788,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24889,7 +24889,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -24990,7 +24990,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -25190,7 +25190,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -25390,7 +25390,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -25590,7 +25590,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -25725,7 +25725,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -25925,7 +25925,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26125,7 +26125,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26325,7 +26325,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26426,7 +26426,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26527,7 +26527,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26727,7 +26727,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -26927,7 +26927,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27127,7 +27127,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27262,7 +27262,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27462,7 +27462,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27662,7 +27662,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27862,7 +27862,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -27963,7 +27963,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28064,7 +28064,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28264,7 +28264,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28464,7 +28464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28664,7 +28664,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28799,7 +28799,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -28999,7 +28999,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -29199,7 +29199,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -29399,7 +29399,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -29500,7 +29500,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -29601,7 +29601,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -29801,7 +29801,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30001,7 +30001,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30201,7 +30201,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30336,7 +30336,7 @@
}
],
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30536,7 +30536,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30736,7 +30736,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -30936,7 +30936,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Incarnate.Lore",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Boss.json
index fb5cbec0..2ec219d0 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Boss.json
@@ -407,7 +407,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.5
},
{
@@ -573,7 +573,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Boss",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -742,7 +742,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Boss",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.34498954
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_LT.json
index d698b24b..cf786346 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_LT.json
@@ -226,7 +226,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_LT",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -428,7 +428,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_LT",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -635,7 +635,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_LT",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support.json
index 8a833797..fec66b9a 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support.json
@@ -254,7 +254,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Support",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 6.25
},
{
@@ -350,7 +350,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support_Attack.json
index 27649d76..010aaa82 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Arachnos_Support_Attack.json
@@ -149,7 +149,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Arachnos_Support_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Boss.json
index 753f6e63..63fb6d34 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Boss.json
@@ -257,7 +257,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Boss",
- "CastTime": 5.016,
+ "CastTime": 4.83,
"AoEModifier": 1.0
},
{
@@ -704,7 +704,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Boss",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 2.59996033
},
{
@@ -1053,7 +1053,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1288,7 +1288,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_LT.json
index d4c3b9b2..606b27a7 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_LT.json
@@ -218,7 +218,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_LT",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -492,7 +492,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_LT",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -729,7 +729,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_LT",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.34498954
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support.json
index 6d9d08a0..eeeb8312 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support.json
@@ -118,7 +118,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -323,7 +323,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Support",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support_Attack.json
index 9c71b938..0e040be6 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Banished_Support_Attack.json
@@ -254,7 +254,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Banished_Support_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.99995041
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Boss.json
index 66c57d35..24d6f1bd 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Boss.json
@@ -222,7 +222,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Boss",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -391,7 +391,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -599,7 +599,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Boss",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 4.0
},
{
@@ -845,7 +845,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.29195762
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_LT.json
index 098a5f08..5a1753cc 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_LT.json
@@ -222,7 +222,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_LT",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -389,7 +389,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_LT",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -556,7 +556,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_LT",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support.json
index 3b74ebfc..2dbc30b5 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support.json
@@ -107,7 +107,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -469,7 +469,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support_Attack.json
index ce8a3b4a..7d8cd343 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Carnival_Support_Attack.json
@@ -151,7 +151,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Carnival_Support_Attack",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Boss.json
index 4f2f66fe..80d60e90 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Boss.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.27599168
},
{
@@ -287,7 +287,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -384,7 +384,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -517,7 +517,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -653,7 +653,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.32832956
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_LT.json
index 1ae9e30b..312356d6 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_LT.json
@@ -153,7 +153,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_LT",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -286,7 +286,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_LT",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -383,7 +383,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_LT",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -519,7 +519,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_LT",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.32832956
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Support.json
index f63df839..b3249399 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Cimeroran_Support.json
@@ -115,7 +115,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
},
{
@@ -211,7 +211,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Cimeroran_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Boss.json
index 43c4a502..5efa91d3 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Boss.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Boss",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -360,7 +360,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Boss",
- "CastTime": 4.356,
+ "CastTime": 4.2,
"AoEModifier": 2.557239
},
{
@@ -457,7 +457,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Boss",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"AoEModifier": 1.0
},
{
@@ -519,7 +519,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Boss",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_LT.json
index 351cc20c..ce4281e9 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_LT.json
@@ -153,7 +153,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_LT",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -287,7 +287,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_LT",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -464,7 +464,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_LT",
- "CastTime": 0.264,
+ "CastTime": 0.13,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Support.json
index 1c788e4f..080150a3 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Clockwork_Support.json
@@ -143,7 +143,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -514,7 +514,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Clockwork_Support",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_Boss.json
index 81ebe03b..38e78a92 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_Boss.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Drones_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -284,7 +284,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Drones_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -418,7 +418,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Drones_Boss",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 2.73993444
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_LT.json
index b7377260..83f468df 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Drones_LT.json
@@ -149,7 +149,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Drones_LT",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -283,7 +283,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Drones_LT",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 2.73993444
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Boss.json
index 251a51ec..73db2d9f 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Boss.json
@@ -219,7 +219,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -424,7 +424,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Boss",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 3.25
},
{
@@ -623,7 +623,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Boss",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -828,7 +828,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Boss",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_LT.json
index d2cc71ce..84666cff 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_LT.json
@@ -218,7 +218,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_LT",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -423,7 +423,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 3.25
},
{
@@ -622,7 +622,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_LT",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Support.json
index ec069ef7..a8c6035a 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Elementals_Support.json
@@ -415,7 +415,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -623,7 +623,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Elementals_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Generic.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Generic.json
index a6d6b74f..e64c0433 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Generic.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Generic.json
@@ -374,7 +374,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -456,7 +455,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -643,7 +641,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -967,7 +964,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1291,7 +1287,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1409,7 +1404,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1631,7 +1625,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Generic",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Boss.json
index 7dbf25a1..62070103 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Boss.json
@@ -222,7 +222,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_Boss",
- "CastTime": 0.792,
+ "CastTime": 0.57,
"AoEModifier": 1.0
},
{
@@ -427,7 +427,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_Boss",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -632,7 +632,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_LT.json
index 132a8d85..3a073c8e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_LT.json
@@ -223,7 +223,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_LT",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -391,7 +391,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_LT",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Support.json
index 40f58127..a8c62944 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_IDF_Support.json
@@ -507,7 +507,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
},
{
@@ -1086,7 +1086,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_IDF_Support",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Boss.json
index 20668d47..5bd4618e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Boss.json
@@ -155,7 +155,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Boss",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -611,7 +611,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -812,7 +812,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -2177,7 +2177,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_LT.json
index 5068fb1e..df711611 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_LT.json
@@ -372,7 +372,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_LT",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 2.03496885
},
{
@@ -576,7 +576,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_LT",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.0
},
{
@@ -844,7 +844,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_LT",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support.json
index 27bf232f..b3a98b61 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support.json
@@ -425,7 +425,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -1715,7 +1715,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Support",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 7.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support_Attack.json
index 478e8332..144ddafc 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Knives_Support_Attack.json
@@ -556,7 +556,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Knives_Support_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Boss.json
index 00b85121..c60c34df 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Boss.json
@@ -155,7 +155,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Boss",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -359,7 +359,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Boss",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -599,7 +599,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 3.25
},
{
@@ -735,7 +735,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Boss",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 3.06993747
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_LT.json
index 3422ae8d..115613df 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_LT.json
@@ -153,7 +153,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_LT",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -289,7 +289,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_LT",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 3.06993747
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Support.json
index 6ec6e7e1..1900c275 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Lights_Support.json
@@ -116,7 +116,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -530,7 +530,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Lights_Support",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Boss.json
index ec0961fe..55e7e97e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Boss.json
@@ -223,7 +223,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_Boss",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.5
},
{
@@ -432,7 +432,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_Boss",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 2.03496885
},
{
@@ -672,7 +672,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_Boss",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_LT.json
index ddd1b814..815aa461 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_LT.json
@@ -155,7 +155,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_LT",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -359,7 +359,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_LT",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
},
{
@@ -527,7 +527,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_LT",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Support.json
index 080aaa31..55b1666c 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Longbow_Support.json
@@ -114,7 +114,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -211,7 +211,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Longbow_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Boss.json
index 14d3456b..0b5d5c3e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Boss.json
@@ -187,7 +187,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Boss",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -388,7 +388,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Boss",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -492,7 +491,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Boss",
- "CastTime": 6.468,
+ "CastTime": 6.33,
"AoEModifier": 2.37995839
},
{
@@ -771,7 +770,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Boss",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_LT.json
index f49a1f03..fb767b6a 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_LT.json
@@ -222,7 +222,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_LT",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 3.25
},
{
@@ -428,7 +428,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_LT",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support.json
index 40ff1144..288ff7e4 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support.json
@@ -604,7 +604,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Support",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -701,7 +701,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support_Attack.json
index 9c12b33c..8c9d0a79 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Nemesis_Support_Attack.json
@@ -114,7 +114,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Nemesis_Support_Attack",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Boss.json
index 8d2e2bf3..bc01767a 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Boss.json
@@ -328,7 +328,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_Boss",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -464,7 +464,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -632,7 +632,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_Boss",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_LT.json
index bdb3a3a2..30730588 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_LT.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_LT",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -321,7 +321,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_LT",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Support.json
index 59ffc5ba..d2268831 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Phantoms_Support.json
@@ -107,7 +107,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -441,7 +441,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Phantoms_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Boss.json
index 36488a51..6c05db13 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Boss.json
@@ -220,7 +220,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -389,7 +389,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -563,7 +563,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -703,7 +703,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Boss",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_LT.json
index 7363734b..a6620a76 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_LT.json
@@ -219,7 +219,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_LT",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -419,7 +419,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_LT",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -591,7 +591,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_LT",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Support.json
index e2a44947..ad4da775 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rikti_Support.json
@@ -108,7 +108,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
},
{
@@ -709,7 +709,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rikti_Support",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Boss.json
index 784ad6e3..db2e662c 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Boss.json
@@ -191,7 +191,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Boss",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 4.93995428
},
{
@@ -287,7 +287,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Boss",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -600,7 +600,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Boss",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -738,7 +738,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Boss",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_LT.json
index a2ca5e44..a27e068b 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_LT.json
@@ -115,7 +115,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_LT",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -212,7 +212,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -350,7 +350,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support.json
index 4a030e60..203198cd 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support.json
@@ -360,7 +360,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Support",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 6.25
},
{
@@ -456,7 +456,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Support",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support_Attack.json
index a3c3a24b..dd984fed 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Rularuu_Support_Attack.json
@@ -185,7 +185,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Rularuu_Support_Attack",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Boss.json
index 98f001c4..2f7729c1 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Boss.json
@@ -224,7 +224,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_Boss",
- "CastTime": 0.792,
+ "CastTime": 0.57,
"AoEModifier": 1.0
},
{
@@ -399,7 +399,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_Boss",
- "CastTime": 1.188,
+ "CastTime": 0.93,
"AoEModifier": 1.0
},
{
@@ -569,7 +569,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_Boss",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_LT.json
index acecaadd..91b79773 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_LT.json
@@ -188,7 +188,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -362,7 +362,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_LT",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Support.json
index 9586086c..161c7c23 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Seers_Support.json
@@ -107,7 +107,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_Support",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 1.0
},
{
@@ -819,7 +819,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Seers_Support",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Boss.json
index 0cf88cb3..4f063d1b 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Boss.json
@@ -227,7 +227,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Boss",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"AoEModifier": 1.35699379
},
{
@@ -708,7 +708,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Boss",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 1.0
},
{
@@ -1052,7 +1052,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Boss",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 1.76498663
},
{
@@ -1398,7 +1398,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Boss",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_LT.json
index ffe1d4d2..e40a3400 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_LT.json
@@ -116,7 +116,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_LT",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -562,7 +562,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_LT",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1298,7 +1298,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_LT",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support.json
index e67c599e..78ddbf28 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support.json
@@ -424,7 +424,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Support",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 10.0
},
{
@@ -623,7 +623,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Support",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support_Attack.json
index 76933e70..685d16cd 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Talons_Support_Attack.json
@@ -185,7 +185,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Talons_Support_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Boss.json
index a8e87539..1da0bdd9 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Boss.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Boss",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Boss",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"AoEModifier": 2.2
},
{
@@ -799,7 +799,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Boss",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"AoEModifier": 1.0
},
{
@@ -929,7 +929,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Boss",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_LT.json
index 74fef313..6efbaa1e 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_LT.json
@@ -188,7 +188,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_LT",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 3.25
},
{
@@ -320,7 +320,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_LT",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -417,7 +417,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support.json
index 1eb1f68b..7f928682 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support.json
@@ -253,7 +253,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Support",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -419,7 +419,6 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Support",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -541,7 +540,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Support",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support_Attack.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support_Attack.json
index d09341a5..bf221488 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support_Attack.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Tsoo_Support_Attack.json
@@ -152,7 +152,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Tsoo_Support_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Boss.json
index 61e1a803..37c4b5a3 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Boss.json
@@ -222,7 +222,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -389,7 +389,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 3.25
},
{
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 2.5
},
{
@@ -1075,7 +1075,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Boss",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_LT.json
index 38e0a99a..f1394270 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_LT.json
@@ -253,7 +253,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_LT",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -426,7 +426,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_LT",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -598,7 +598,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_LT",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Support.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Support.json
index d34df4a7..f6e413c2 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Support.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Vanguard_Support.json
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Support",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 10.0
},
{
@@ -875,7 +875,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Vanguard_Support",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_Boss.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_Boss.json
index 4ea0ed83..2cbb2900 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_Boss.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_Boss.json
@@ -76,7 +76,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
},
{
@@ -279,7 +279,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"AoEModifier": 1.0
},
{
@@ -336,7 +336,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 2.73993444
},
{
@@ -501,7 +501,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -555,7 +555,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -752,7 +752,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Warworks_Boss",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_LT.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_LT.json
index d49e31fd..b056aa3b 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_LT.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Pet_Warworks_LT.json
@@ -155,7 +155,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Warworks_LT",
- "CastTime": 3.96,
+ "CastTime": 3.73,
"AoEModifier": 2.73993444
},
{
@@ -289,7 +289,7 @@
}
],
"FullSetName": "Incarnate.Lore_Pet_Warworks_LT",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Lore_Silent.json b/Hero Designer/Data/db/Other/_Incarnate.Lore_Silent.json
index c93d8900..4ecfbdaa 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Lore_Silent.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Lore_Silent.json
@@ -101,7 +101,6 @@
}
],
"FullSetName": "Incarnate.Lore_Silent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Mind.json b/Hero Designer/Data/db/Other/_Incarnate.Mind.json
index e1e8923b..df4d8d06 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Mind.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Mind.json
@@ -110,7 +110,7 @@
}
],
"FullSetName": "Incarnate.Mind",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.052773
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Omega.json b/Hero Designer/Data/db/Other/_Incarnate.Omega.json
index dbcc8e88..ea762ab6 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Omega.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Omega.json
@@ -110,7 +110,7 @@
}
],
"FullSetName": "Incarnate.Omega",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.052773
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Socket.json b/Hero Designer/Data/db/Other/_Incarnate.Socket.json
index 32eb6f1a..465ea0b1 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Socket.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Socket.json
@@ -351,7 +351,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -483,7 +482,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -579,7 +577,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -675,7 +672,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -771,7 +767,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -867,7 +862,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -963,7 +957,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1129,7 +1122,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1261,7 +1253,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1384,7 +1375,6 @@
}
],
"FullSetName": "Incarnate.Socket",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Stance.json b/Hero Designer/Data/db/Other/_Incarnate.Stance.json
index e87ea3ca..7bcefd86 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Stance.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Stance.json
@@ -110,7 +110,7 @@
}
],
"FullSetName": "Incarnate.Stance",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.052773
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Verdict.json b/Hero Designer/Data/db/Other/_Incarnate.Verdict.json
index c136561a..6f582b46 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Verdict.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Verdict.json
@@ -128,7 +128,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -410,7 +410,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.139875
},
{
@@ -769,7 +769,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.31991267
},
{
@@ -1122,7 +1122,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -1365,7 +1365,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -1508,7 +1508,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 7.0
},
{
@@ -1645,7 +1645,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -2028,7 +2028,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 5.5
},
{
@@ -2168,7 +2168,7 @@
}
],
"FullSetName": "Incarnate.Verdict",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 8.439905
}
]
diff --git a/Hero Designer/Data/db/Other/_Incarnate.Vitae.json b/Hero Designer/Data/db/Other/_Incarnate.Vitae.json
index 480e1cb6..5bec78ff 100644
--- a/Hero Designer/Data/db/Other/_Incarnate.Vitae.json
+++ b/Hero Designer/Data/db/Other/_Incarnate.Vitae.json
@@ -110,7 +110,7 @@
}
],
"FullSetName": "Incarnate.Vitae",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.052773
}
]
diff --git a/Hero Designer/Data/db/Other/_Inherent.Fitness.json b/Hero Designer/Data/db/Other/_Inherent.Fitness.json
index 354e0872..cf5cbaab 100644
--- a/Hero Designer/Data/db/Other/_Inherent.Fitness.json
+++ b/Hero Designer/Data/db/Other/_Inherent.Fitness.json
@@ -183,7 +183,6 @@
}
],
"FullSetName": "Inherent.Fitness",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 17
@@ -348,7 +347,6 @@
}
],
"FullSetName": "Inherent.Fitness",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 19
@@ -511,7 +509,6 @@
}
],
"FullSetName": "Inherent.Fitness",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 18
@@ -642,7 +639,6 @@
}
],
"FullSetName": "Inherent.Fitness",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 20
diff --git a/Hero Designer/Data/db/Other/_Inherent.Inherent.json b/Hero Designer/Data/db/Other/_Inherent.Inherent.json
index 249548a5..dc7c63b8 100644
--- a/Hero Designer/Data/db/Other/_Inherent.Inherent.json
+++ b/Hero Designer/Data/db/Other/_Inherent.Inherent.json
@@ -414,7 +414,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 15
@@ -835,7 +835,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 13
@@ -1254,7 +1254,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 12
@@ -1888,7 +1888,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 11
@@ -2179,7 +2179,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 14
@@ -2759,7 +2759,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 10
@@ -3030,7 +3030,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 7
@@ -3228,7 +3228,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 6
@@ -3567,7 +3567,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 9
@@ -3767,7 +3767,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.06993747,
"DisplayLocation": 8
@@ -4144,7 +4144,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 7
@@ -4484,7 +4484,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 6
@@ -4863,7 +4863,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 9
@@ -5209,7 +5209,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.06993747,
"DisplayLocation": 8
@@ -5992,7 +5992,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6481,7 +6480,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6691,7 +6689,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6742,7 +6739,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6974,7 +6970,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 14
@@ -7286,7 +7282,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25,
"DisplayLocation": 12
@@ -7777,7 +7773,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 11
@@ -8068,7 +8064,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 15
@@ -8505,7 +8501,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 10
@@ -8623,7 +8619,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 13
@@ -8832,7 +8828,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -9040,7 +9035,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -9248,7 +9242,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -9465,7 +9458,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -9557,7 +9549,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -9609,7 +9600,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9704,7 +9694,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -9797,7 +9787,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -9849,7 +9839,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10091,7 +10080,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10551,7 +10539,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10797,7 +10784,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11103,7 +11089,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -11197,7 +11183,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -12082,7 +12068,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 46.0,
"DisplayLocation": 3
},
@@ -12176,7 +12162,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -13061,7 +13047,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 46.0,
"DisplayLocation": 3
},
@@ -13149,7 +13135,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -14049,7 +14034,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -14143,7 +14128,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 46.0
},
{
@@ -14233,7 +14217,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -14320,7 +14303,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14443,7 +14425,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14528,7 +14509,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14947,7 +14927,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 4
@@ -15082,7 +15061,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15215,7 +15193,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15349,7 +15326,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15482,7 +15458,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15615,7 +15590,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15749,7 +15723,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15882,7 +15855,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16015,7 +15987,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16149,7 +16120,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16282,7 +16252,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16415,7 +16384,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16548,7 +16516,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16681,7 +16648,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16814,7 +16780,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16947,7 +16912,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17080,7 +17044,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17203,7 +17166,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17294,7 +17256,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -17521,7 +17482,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -17738,7 +17699,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17792,7 +17752,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -17946,7 +17906,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18040,7 +17999,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -18123,7 +18082,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -18206,7 +18165,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -18284,7 +18243,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -18383,7 +18342,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -19103,7 +19062,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -19193,7 +19151,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19664,7 +19621,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -19842,7 +19798,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 22
@@ -19938,7 +19893,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20033,7 +19988,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20138,7 +20093,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20242,7 +20197,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20336,7 +20291,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20430,7 +20385,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20525,7 +20480,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20619,7 +20574,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20713,7 +20668,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -20925,7 +20880,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 21
@@ -21104,7 +21058,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 23
@@ -21200,7 +21153,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -21294,7 +21247,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -21471,7 +21424,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 25
@@ -21650,7 +21602,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 24
@@ -21768,7 +21719,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -21883,7 +21834,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22080,7 +22030,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22186,7 +22135,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22291,7 +22240,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22396,7 +22345,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22490,7 +22439,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22584,7 +22533,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22678,7 +22627,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -22844,7 +22793,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -22977,7 +22926,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -23177,7 +23126,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -23344,7 +23293,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -23519,7 +23468,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"AoEModifier": 1.24149275
},
{
@@ -24048,7 +23997,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 10.164,
+ "CastTime": 10.0,
"AoEModifier": 7.0
},
{
@@ -24209,7 +24158,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -24304,7 +24253,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -24399,7 +24348,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -24574,7 +24523,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -24669,7 +24617,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -24764,7 +24712,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -24849,7 +24797,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -24943,7 +24891,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -25320,7 +25268,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -25415,7 +25363,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -25510,7 +25458,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -25615,7 +25563,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -25740,7 +25688,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 6.072,
+ "CastTime": 5.93,
"AoEModifier": 1.0
},
{
@@ -25834,7 +25782,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -25939,7 +25887,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -26033,7 +25981,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -26117,7 +26065,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26199,7 +26146,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26317,7 +26263,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -26695,7 +26641,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -26819,7 +26764,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -26947,7 +26891,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -27208,7 +27151,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -27583,7 +27526,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -27681,7 +27624,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -27850,7 +27793,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"AoEModifier": 1.0
},
{
@@ -28127,7 +28070,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 4
@@ -28221,7 +28164,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -28374,7 +28317,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -28441,7 +28383,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -28618,7 +28560,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 1
@@ -29052,7 +28993,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 10.0,
"DisplayLocation": 3
},
@@ -29434,7 +29375,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29539,7 +29479,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -30709,7 +30649,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -30762,7 +30701,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30853,7 +30791,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 46.0
},
{
@@ -31730,7 +31667,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31883,7 +31819,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 3
},
@@ -32433,7 +32368,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32982,7 +32916,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33531,7 +33464,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34300,7 +34232,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 2
@@ -34467,7 +34399,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34600,7 +34531,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -34736,7 +34667,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -34869,7 +34800,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -35367,7 +35298,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35876,7 +35806,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36434,7 +36363,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36926,7 +36854,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37389,7 +37316,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0,
"DisplayLocation": 16
},
@@ -37620,7 +37547,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37773,7 +37699,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 6.204,
+ "CastTime": 6.03,
"AoEModifier": 1.0
},
{
@@ -38448,7 +38374,6 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 5
@@ -38592,7 +38517,7 @@
}
],
"FullSetName": "Inherent.Inherent",
- "CastTime": 6.072,
+ "CastTime": 5.93,
"Slottable": true,
"AoEModifier": 1.0,
"DisplayLocation": 5
diff --git a/Hero Designer/Data/db/Other/_Inherent.Savage_Melee.json b/Hero Designer/Data/db/Other/_Inherent.Savage_Melee.json
index a09777bd..b2fa8249 100644
--- a/Hero Designer/Data/db/Other/_Inherent.Savage_Melee.json
+++ b/Hero Designer/Data/db/Other/_Inherent.Savage_Melee.json
@@ -199,7 +199,6 @@
}
],
"FullSetName": "Inherent.Savage_Melee",
- "CastTime": 0.132,
"AoEModifier": 1.0,
"DisplayLocation": 6
}
diff --git a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone1.json b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone1.json
index c25c32e0..4008720a 100644
--- a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone1.json
+++ b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone1.json
@@ -184,7 +184,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone1",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -335,7 +334,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone1",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -448,7 +446,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone1",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone2.json b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone2.json
index dfc8a32d..f4bc2949 100644
--- a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone2.json
+++ b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone2.json
@@ -184,7 +184,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone2",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -335,7 +334,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -448,7 +446,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone2",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone3.json b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone3.json
index 84ff0aef..0563a93d 100644
--- a/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone3.json
+++ b/Hero Designer/Data/db/Other/_Kheldian_Pets.Energy_Drone3.json
@@ -184,7 +184,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone3",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -335,7 +334,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -448,7 +446,6 @@
}
],
"FullSetName": "Kheldian_Pets.Energy_Drone3",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Kheldian_Pets.Omega_Bomb.json b/Hero Designer/Data/db/Other/_Kheldian_Pets.Omega_Bomb.json
index 76e4d490..0f87cbf6 100644
--- a/Hero Designer/Data/db/Other/_Kheldian_Pets.Omega_Bomb.json
+++ b/Hero Designer/Data/db/Other/_Kheldian_Pets.Omega_Bomb.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Kheldian_Pets.Omega_Bomb",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -369,7 +368,6 @@
}
],
"FullSetName": "Kheldian_Pets.Omega_Bomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -458,7 +456,6 @@
}
],
"FullSetName": "Kheldian_Pets.Omega_Bomb",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Kheldian_Pets.Warshade_Extraction.json b/Hero Designer/Data/db/Other/_Kheldian_Pets.Warshade_Extraction.json
index 0f32804d..7a61dcc1 100644
--- a/Hero Designer/Data/db/Other/_Kheldian_Pets.Warshade_Extraction.json
+++ b/Hero Designer/Data/db/Other/_Kheldian_Pets.Warshade_Extraction.json
@@ -296,7 +296,7 @@
}
],
"FullSetName": "Kheldian_Pets.Warshade_Extraction",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -474,7 +474,6 @@
}
],
"FullSetName": "Kheldian_Pets.Warshade_Extraction",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -752,7 +751,7 @@
}
],
"FullSetName": "Kheldian_Pets.Warshade_Extraction",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 3.06993747
},
{
@@ -834,7 +833,6 @@
}
],
"FullSetName": "Kheldian_Pets.Warshade_Extraction",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1180,7 +1178,7 @@
}
],
"FullSetName": "Kheldian_Pets.Warshade_Extraction",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf.json
index d64134ae..d6791c17 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf.json
@@ -509,7 +509,6 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -593,7 +592,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Alpha_Wolf",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -815,7 +813,6 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -982,7 +979,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf",
- "CastTime": 1.452,
+ "CastTime": 1.27,
"AoEModifier": 1.0
},
{
@@ -1477,7 +1474,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf",
- "CastTime": 0.792,
+ "CastTime": 0.6,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_2.json
index 40f00d35..8b2acf9a 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_2.json
@@ -334,7 +334,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_2",
- "CastTime": 2.63999987,
+ "CastTime": 2.47,
"AoEModifier": 1.0
},
{
@@ -712,7 +712,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_2",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"AoEModifier": 3.25
},
{
@@ -796,7 +796,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Alpha_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -880,7 +879,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Alpha_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -964,7 +962,6 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_3.json
index 3fe30afc..bc6cc559 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Alpha_Wolf_3.json
@@ -389,7 +389,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_3",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 3.25
},
{
@@ -518,7 +518,7 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_3",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"AoEModifier": 1.0
},
{
@@ -602,7 +602,6 @@
}
],
"FullSetName": "Mastermind_Pets.Alpha_Wolf_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Arsonist_Burn.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Arsonist_Burn.json
index 78294b52..a623061a 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Arsonist_Burn.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Arsonist_Burn.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Mastermind_Pets.Arsonist_Burn",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -197,7 +196,6 @@
}
],
"FullSetName": "Mastermind_Pets.Arsonist_Burn",
- "CastTime": 0.132,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault.json
index 2c9c81c5..5dde54a4 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault.json
@@ -339,7 +339,6 @@
}
],
"FullSetName": "Mastermind_Pets.Assault",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -585,7 +584,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -791,7 +790,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -1013,7 +1012,6 @@
}
],
"FullSetName": "Mastermind_Pets.Assault",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_2.json
index 4d73be93..a2897ff6 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_2.json
@@ -305,7 +305,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_2",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.75
},
{
@@ -389,7 +389,6 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -495,7 +494,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_2",
- "CastTime": 6.468,
+ "CastTime": 6.33,
"AoEModifier": 2.15995646
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_3.json
index 8cde975f..7efad7bf 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Assault_3.json
@@ -196,7 +196,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 4.0
},
{
@@ -335,7 +335,7 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 4.0
},
{
@@ -419,7 +419,6 @@
}
],
"FullSetName": "Mastermind_Pets.Assault_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling.json
index d28aebd0..e5b11e28 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling.json
@@ -374,7 +374,6 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -505,7 +504,7 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -820,7 +819,7 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1042,7 +1041,6 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_2.json
index bc88d7ad..9e98fde8 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_2.json
@@ -333,7 +333,7 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling_2",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -417,7 +417,6 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_3.json
index e15bb929..0af276d0 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Cold_Demonling_3.json
@@ -305,7 +305,7 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
},
{
@@ -389,7 +389,6 @@
}
],
"FullSetName": "Mastermind_Pets.Cold_Demonling_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando.json
index b0f87317..399af07d 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando.json
@@ -408,7 +408,6 @@
}
],
"FullSetName": "Mastermind_Pets.Commando",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -507,7 +506,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -647,7 +646,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -819,7 +818,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -1041,7 +1040,6 @@
}
],
"FullSetName": "Mastermind_Pets.Commando",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_2.json
index 03b1d698..a860652a 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_2.json
@@ -194,7 +194,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_2",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.15995646
},
{
@@ -279,7 +279,6 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -418,7 +417,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_2",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 2.99724317
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_3.json
index 1b17b29f..69a98989 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Commando_3.json
@@ -229,7 +229,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_3",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
},
{
@@ -331,7 +331,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_3",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -437,7 +437,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_3",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 2.37995839
},
{
@@ -715,7 +715,7 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_3",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 3.25
},
{
@@ -800,7 +800,6 @@
}
],
"FullSetName": "Mastermind_Pets.Commando_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince.json
index 61476140..19443741 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince.json
@@ -608,7 +608,6 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -923,7 +922,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1205,7 +1204,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 5.04995537
},
{
@@ -1427,7 +1426,6 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_2.json
index 418a179b..aa6a89be 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_2.json
@@ -517,7 +517,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_2",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -601,7 +601,6 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -881,7 +880,6 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_2",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -1194,7 +1192,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_2",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_3.json
index a70feaa3..970e2475 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Demon_Prince_3.json
@@ -334,7 +334,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_3",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -451,7 +451,6 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -628,7 +627,7 @@
}
],
"FullSetName": "Mastermind_Pets.Demon_Prince_3",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf.json
index 27ada571..b1283e85 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf.json
@@ -511,7 +511,6 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -902,7 +901,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.99724317
},
{
@@ -986,7 +985,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -1070,7 +1068,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -1292,7 +1289,6 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1459,7 +1455,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 1.452,
+ "CastTime": 1.27,
"AoEModifier": 1.0
},
{
@@ -1954,7 +1950,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf",
- "CastTime": 0.792,
+ "CastTime": 0.6,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_2.json
index ae441417..37d05817 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_2.json
@@ -412,7 +412,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_2",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"AoEModifier": 2.44994545
},
{
@@ -725,7 +725,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_2",
- "CastTime": 2.63999987,
+ "CastTime": 2.47,
"AoEModifier": 1.0
},
{
@@ -809,7 +809,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Dire_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -893,7 +892,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Dire_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -977,7 +975,6 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_3.json
index f7cfdb2f..ccb3e05b 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Dire_Wolf_3.json
@@ -476,7 +476,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_3",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 3.25
},
{
@@ -560,7 +560,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Dire_Wolf_3",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -644,7 +643,6 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -939,7 +937,7 @@
}
],
"FullSetName": "Mastermind_Pets.Dire_Wolf_3",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid.json
index 4c2302b8..7175d0a8 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid.json
@@ -339,7 +339,6 @@
}
],
"FullSetName": "Mastermind_Pets.Droid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -441,7 +440,7 @@
}
],
"FullSetName": "Mastermind_Pets.Droid",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -540,7 +539,7 @@
}
],
"FullSetName": "Mastermind_Pets.Droid",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -762,7 +761,6 @@
}
],
"FullSetName": "Mastermind_Pets.Droid",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_2.json
index 8c24c69b..483ee846 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_2.json
@@ -224,7 +224,7 @@
}
],
"FullSetName": "Mastermind_Pets.Droid_2",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -308,7 +308,6 @@
}
],
"FullSetName": "Mastermind_Pets.Droid_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_3.json
index 929a69e1..a06ebadf 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Droid_3.json
@@ -123,7 +123,7 @@
}
],
"FullSetName": "Mastermind_Pets.Droid_3",
- "CastTime": 6.468,
+ "CastTime": 6.33,
"AoEModifier": 2.8799088
},
{
@@ -207,7 +207,6 @@
}
],
"FullSetName": "Mastermind_Pets.Droid_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon.json
index 1faa826b..97443b25 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon.json
@@ -304,7 +304,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -540,7 +539,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -678,7 +676,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -1083,7 +1081,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -1305,7 +1302,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_2.json
index b5c64946..1545c228 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_2.json
@@ -125,7 +125,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
},
{
@@ -219,7 +219,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_2",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -303,7 +303,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_3.json
index 2b88ae4d..377bb6c7 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ember_Demon_3.json
@@ -193,7 +193,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_3",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 3.25
},
{
@@ -310,7 +310,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -405,7 +404,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ember_Demon_3",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling.json
index 3299746f..52e0f9e2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling.json
@@ -374,7 +374,6 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -505,7 +504,7 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -639,7 +638,7 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -861,7 +860,6 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_2.json
index d87d6bf7..39e0dea0 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_2.json
@@ -156,7 +156,7 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling_2",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -240,7 +240,6 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_3.json
index c11e0d9a..2551e4a9 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Fiery_Demonling_3.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
},
{
@@ -208,7 +208,6 @@
}
],
"FullSetName": "Mastermind_Pets.Fiery_Demonling_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin.json
index 9763a3a3..ffd1fd09 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin.json
@@ -314,7 +314,6 @@
}
],
"FullSetName": "Mastermind_Pets.Genin",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -449,7 +448,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -675,7 +674,6 @@
}
],
"FullSetName": "Mastermind_Pets.Genin",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -886,7 +884,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_2.json
index 6873734f..d0fb494d 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_2.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_2",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -288,7 +288,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_2",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -372,7 +372,6 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_3.json
index a4eb5946..29ad4635 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Genin_3.json
@@ -156,7 +156,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_3",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.5
},
{
@@ -241,7 +241,6 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -448,7 +447,7 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_3",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -532,7 +531,6 @@
}
],
"FullSetName": "Mastermind_Pets.Genin_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ghosts.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ghosts.json
index 242411b3..87f74744 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Ghosts.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Ghosts.json
@@ -445,7 +445,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -529,7 +528,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -613,7 +611,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -800,7 +797,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -937,7 +933,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1113,7 +1109,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -1324,7 +1320,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -1614,7 +1610,7 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -1696,7 +1692,6 @@
}
],
"FullSetName": "Mastermind_Pets.Ghosts",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling.json
index e7a40bb3..433c07c2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling.json
@@ -374,7 +374,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -505,7 +504,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -923,7 +922,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1145,7 +1144,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_2.json
index 4f86723b..01892046 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_2.json
@@ -432,7 +432,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling_2",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -516,7 +516,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_3.json
index ae2b1c48..a14afc6e 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Demonling_3.json
@@ -442,7 +442,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
},
{
@@ -526,7 +526,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Demonling_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle.json
index 375cfe7f..c6e940a8 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle.json
@@ -441,7 +441,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -572,7 +571,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -844,7 +843,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1262,7 +1261,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1484,7 +1483,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_2.json
index 15a522f4..9c633a7f 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_2.json
@@ -438,7 +438,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.43498361
},
{
@@ -522,7 +522,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -620,7 +619,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_2",
- "CastTime": 0.132,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_3.json
index 06e07016..49d359b7 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Hellfire_Gargoyle_3.json
@@ -261,7 +261,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_3",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -378,7 +378,6 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -513,7 +512,7 @@
}
],
"FullSetName": "Mastermind_Pets.Hellfire_Gargoyle_3",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf.json
index 3e388ec3..9ba4f6ed 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf.json
@@ -509,7 +509,6 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -593,7 +592,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Howler_Wolf",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -815,7 +813,6 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -982,7 +979,7 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf",
- "CastTime": 1.452,
+ "CastTime": 1.27,
"AoEModifier": 1.0
},
{
@@ -1477,7 +1474,7 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf",
- "CastTime": 0.792,
+ "CastTime": 0.6,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_2.json
index fe05da1b..cd454c41 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_2.json
@@ -332,7 +332,7 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf_2",
- "CastTime": 2.63999987,
+ "CastTime": 2.47,
"AoEModifier": 1.0
},
{
@@ -416,7 +416,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Howler_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -500,7 +499,6 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_3.json
index 33d522f1..f85a68dc 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Howler_Wolf_3.json
@@ -390,7 +390,7 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf_3",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 3.25
},
{
@@ -474,7 +474,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Howler_Wolf_3",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -558,7 +557,6 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -800,7 +798,7 @@
}
],
"FullSetName": "Mastermind_Pets.Howler_Wolf_3",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin.json
index 43ddc2c1..4d35e7cf 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin.json
@@ -315,7 +315,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -454,7 +453,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -627,7 +626,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -800,7 +799,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1022,7 +1021,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_2.json
index 7a01ffb6..236a5e2b 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_2.json
@@ -267,7 +267,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_2",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_2",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -742,7 +742,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_2",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -934,7 +934,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1051,7 +1050,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_3.json
index 8b51c16c..256882e4 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Jonin_3.json
@@ -303,7 +303,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_3",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.24965537
},
{
@@ -632,7 +632,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_3",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.862474
},
{
@@ -720,7 +720,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -804,7 +803,6 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1248,7 +1246,7 @@
}
],
"FullSetName": "Mastermind_Pets.Jonin_3",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich.json
index 08c0cd41..78e6b11b 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich.json
@@ -239,7 +239,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -376,7 +375,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -598,7 +597,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -811,7 +809,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"AoEModifier": 3.31991267
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_2.json
index bc065391..9789df00 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_2.json
@@ -273,7 +273,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_2",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.15995646
},
{
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -445,7 +444,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -618,7 +616,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_2",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_3.json
index 01aa73fb..ba9ff22e 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lich_3.json
@@ -202,7 +202,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_3",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 3.02992368
},
{
@@ -287,7 +287,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -371,7 +370,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -456,7 +454,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -596,7 +593,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lich_3",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness.json
index 8909ad97..2f3cd66b 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness.json
@@ -511,7 +511,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -678,7 +677,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 1.452,
+ "CastTime": 1.27,
"AoEModifier": 1.0
},
{
@@ -762,7 +761,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -846,7 +844,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -1068,7 +1065,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1235,7 +1231,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"AoEModifier": 1.0
},
{
@@ -1730,7 +1726,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness",
- "CastTime": 0.792,
+ "CastTime": 0.6,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_2.json
index 2b085c31..74b5c39d 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_2.json
@@ -431,7 +431,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_2",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.25
},
{
@@ -560,7 +560,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_2",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"AoEModifier": 1.0
},
{
@@ -644,7 +644,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_3.json
index c5d15519..e770718d 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Lioness_3.json
@@ -159,7 +159,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_3",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.25
},
{
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_3",
- "CastTime": 2.376,
+ "CastTime": 2.13,
"AoEModifier": 1.35699379
},
{
@@ -514,7 +514,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Lioness_3",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -598,7 +597,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Pets.Lioness_3",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -682,7 +680,6 @@
}
],
"FullSetName": "Mastermind_Pets.Lioness_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Living_Hellfire.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Living_Hellfire.json
index 629b9003..7f9631ff 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Living_Hellfire.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Living_Hellfire.json
@@ -171,7 +171,6 @@
}
],
"FullSetName": "Mastermind_Pets.Living_Hellfire",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -302,7 +301,7 @@
}
],
"FullSetName": "Mastermind_Pets.Living_Hellfire",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -384,7 +383,6 @@
}
],
"FullSetName": "Mastermind_Pets.Living_Hellfire",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic.json
index 8a8777f3..1d74c478 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic.json
@@ -244,7 +244,6 @@
}
],
"FullSetName": "Mastermind_Pets.Medic",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -343,7 +342,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -440,7 +439,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -580,7 +579,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -802,7 +801,6 @@
}
],
"FullSetName": "Mastermind_Pets.Medic",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_2.json
index c7b1f679..4d1ac643 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_2.json
@@ -158,7 +158,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -243,7 +243,6 @@
}
],
"FullSetName": "Mastermind_Pets.Medic_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_3.json
index 291c549a..dd831abc 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Medic_3.json
@@ -290,7 +290,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic_3",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -488,7 +488,7 @@
}
],
"FullSetName": "Mastermind_Pets.Medic_3",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
},
{
@@ -573,7 +573,6 @@
}
],
"FullSetName": "Mastermind_Pets.Medic_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni.json
index b8498600..cf0559b7 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni.json
@@ -413,7 +413,6 @@
}
],
"FullSetName": "Mastermind_Pets.Oni",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -586,7 +585,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -791,7 +790,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1017,7 +1016,6 @@
}
],
"FullSetName": "Mastermind_Pets.Oni",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_2.json
index 5397e084..743247df 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_2.json
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_2",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -371,7 +371,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
},
{
@@ -762,7 +762,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_2",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -846,7 +846,6 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_3.json
index 8b34162c..3c160013 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Oni_3.json
@@ -237,7 +237,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_3",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -321,7 +321,6 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -422,7 +421,7 @@
}
],
"FullSetName": "Mastermind_Pets.Oni_3",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector.json
index 58f063f0..74a454fb 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector.json
@@ -339,7 +339,6 @@
}
],
"FullSetName": "Mastermind_Pets.Protector",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -717,7 +716,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -819,7 +818,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -1041,7 +1040,6 @@
}
],
"FullSetName": "Mastermind_Pets.Protector",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_2.json
index b5858aab..c152a230 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_2.json
@@ -231,7 +231,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_2",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -315,7 +315,6 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -409,7 +408,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_2",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_3.json
index 3321cec7..71d78200 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Protector_3.json
@@ -232,7 +232,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_3",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.25
},
{
@@ -857,7 +857,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_3",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 4.75
},
{
@@ -993,7 +993,7 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -1077,7 +1077,6 @@
}
],
"FullSetName": "Mastermind_Pets.Protector_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton.json
index 31399b87..d2c21082 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton.json
@@ -440,7 +440,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -577,7 +576,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -715,7 +714,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -853,7 +852,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -1075,7 +1074,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_2.json
index a46561a5..aa3e11cc 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_2.json
@@ -233,7 +233,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -318,7 +318,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -435,7 +434,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -575,7 +573,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"AoEModifier": 1.0
},
{
@@ -713,7 +711,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -851,7 +849,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_2",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_3.json
index 568adac4..ac6a1c77 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Skeleton_3.json
@@ -272,7 +272,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.24965537
},
{
@@ -357,7 +357,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -568,7 +567,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -685,7 +684,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -823,7 +821,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -908,7 +906,6 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1117,7 +1114,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -1255,7 +1252,7 @@
}
],
"FullSetName": "Mastermind_Pets.Skeleton_3",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier.json
index 2c5a16a1..f146aa6d 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier.json
@@ -239,7 +239,6 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -379,7 +378,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -478,7 +477,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -700,7 +699,6 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_2.json
index 20720320..24b97e2a 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_2.json
@@ -159,7 +159,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -299,7 +299,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -417,7 +417,6 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_3.json
index ba957945..886a23d6 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Soldier_3.json
@@ -163,7 +163,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_3",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 2.557239
},
{
@@ -303,7 +303,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_3",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -443,7 +443,7 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_3",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -561,7 +561,6 @@
}
],
"FullSetName": "Mastermind_Pets.Soldier_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops.json
index ae537833..11d45d96 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops.json
@@ -241,7 +241,6 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -340,7 +339,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -480,7 +479,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -620,7 +619,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -842,7 +841,6 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1300,7 +1298,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_2.json
index 84fa85a9..d08340ca 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_2.json
@@ -185,7 +185,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_2",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -270,7 +270,6 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -522,7 +521,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_2",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_3.json
index edb06410..5fe353e2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Spec_Ops_3.json
@@ -119,7 +119,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_3",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
},
{
@@ -953,7 +953,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_3",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -1038,7 +1038,6 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1460,7 +1459,7 @@
}
],
"FullSetName": "Mastermind_Pets.Spec_Ops_3",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist.json
index fb82cebc..690496d3 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist.json
@@ -106,7 +106,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -204,7 +203,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -307,7 +306,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.75
},
{
@@ -529,7 +528,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_2.json
index 8466b01a..dda42d71 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_2.json
@@ -211,7 +211,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"AoEModifier": 2.15995646
},
{
@@ -295,7 +295,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -380,7 +379,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -465,7 +463,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -550,7 +547,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -635,7 +631,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -720,7 +715,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -805,7 +799,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_3.json
index 70160622..149f3256 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Arsonist_3.json
@@ -199,7 +199,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -283,7 +283,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -368,7 +367,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -453,7 +451,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -538,7 +535,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -623,7 +619,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -708,7 +703,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -793,7 +787,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Arsonist_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss.json
index 99cfdd1c..599683e3 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss.json
@@ -410,7 +410,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -520,7 +519,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -850,7 +848,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1026,7 +1023,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -1198,7 +1195,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -1281,7 +1278,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1503,7 +1499,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_2.json
index 24d478b2..e414201b 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_2.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -194,7 +193,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -279,7 +277,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -364,7 +361,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -449,7 +445,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -534,7 +529,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -619,7 +613,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -792,7 +785,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -1044,7 +1037,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_2",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_3.json
index 5cf9d18c..4e7c9282 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Boss_3.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -195,7 +194,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -280,7 +278,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -365,7 +362,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -450,7 +446,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -535,7 +530,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -620,7 +614,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -870,7 +863,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"AoEModifier": 1.0
},
{
@@ -1078,7 +1071,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
},
{
@@ -1255,7 +1248,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Boss_3",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt.json
index b9b3e8b0..a53041ff 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -206,7 +205,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -345,7 +344,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -485,7 +484,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -893,7 +892,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -1115,7 +1113,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_2.json
index 7386fc85..9a81453a 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_2.json
@@ -169,7 +169,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"AoEModifier": 1.0
},
{
@@ -253,7 +253,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -338,7 +337,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -423,7 +421,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -508,7 +505,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -593,7 +589,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -678,7 +673,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -763,7 +757,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -848,7 +841,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -933,7 +925,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1025,7 +1016,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -1168,7 +1158,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"AoEModifier": 2.49793243
},
{
@@ -1308,7 +1298,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_2",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_3.json
index 101125d9..12503a59 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Lt_3.json
@@ -171,7 +171,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"AoEModifier": 2.52327943
},
{
@@ -500,7 +500,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -601,7 +600,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 3.25
},
{
@@ -685,7 +684,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -770,7 +768,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -855,7 +852,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -940,7 +936,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1025,7 +1020,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1110,7 +1104,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1195,7 +1188,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1280,7 +1272,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1365,7 +1356,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Lt_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion.json
index 814e8391..7a099c6c 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -204,7 +203,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -303,7 +302,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -525,7 +524,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_2.json
index 4fcd3c45..93113ad8 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_2.json
@@ -128,7 +128,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -302,7 +302,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -386,7 +386,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -471,7 +470,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -556,7 +554,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -641,7 +638,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -726,7 +722,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -811,7 +806,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -896,7 +890,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -981,7 +974,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1066,7 +1058,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1151,7 +1142,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1236,7 +1226,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_3.json
index b881b5ed..7a9d4250 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Minion_3.json
@@ -206,7 +206,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 2.44994545
},
{
@@ -290,7 +290,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -375,7 +374,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -460,7 +458,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -545,7 +542,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -630,7 +626,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -715,7 +710,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -800,7 +794,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -885,7 +878,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -970,7 +962,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1055,7 +1046,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1140,7 +1130,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Minion_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose.json
index 839a781f..387dd8ee 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose.json
@@ -170,7 +170,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -252,7 +251,6 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Axe.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Axe.json
index dc15a53a..de1102f2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Axe.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Axe.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Axe",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Bat.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Bat.json
index 3b06d7b6..c4c5c177 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Bat.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Bat.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Bat",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Brawl.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Brawl.json
index 8a8d8245..82095ac2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Brawl.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Brawl.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Brawl",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Knife.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Knife.json
index 77bbaec8..f71ae6e0 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Knife.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Knife.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Knife",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pipe.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pipe.json
index 03d12a8e..11fc37e5 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pipe.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pipe.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Pipe",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pistol.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pistol.json
index 590d9e17..1da20313 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pistol.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Pistol.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Pistol",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Revolver.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Revolver.json
index 9eb4989d..78074705 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Revolver.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Revolver.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Revolver",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Rock.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Rock.json
index 8f4eb243..7772c7b8 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Rock.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Rock.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Rock",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Sledgehammer.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Sledgehammer.json
index f4db8803..473505f2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Sledgehammer.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Thug_Pose_Sledgehammer.json
@@ -221,7 +221,7 @@
}
],
"FullSetName": "Mastermind_Pets.Thug_Pose_Sledgehammer",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie.json
index f5210463..283d6ac2 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie.json
@@ -472,7 +472,6 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -694,7 +693,6 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -793,7 +791,7 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_2.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_2.json
index 49f89dd6..8d61c511 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_2.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_2.json
@@ -157,7 +157,7 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie_2",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.99862158
},
{
@@ -241,7 +241,6 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie_2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -380,7 +379,7 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie_2",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_3.json b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_3.json
index 569305b0..4583f5e7 100644
--- a/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_3.json
+++ b/Hero Designer/Data/db/Other/_Mastermind_Pets.Zombie_3.json
@@ -191,7 +191,7 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie_3",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -275,7 +275,6 @@
}
],
"FullSetName": "Mastermind_Pets.Zombie_3",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Air_Bomb.json b/Hero Designer/Data/db/Other/_Pets.Air_Bomb.json
index 099b23cf..1f0e0b8a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Air_Bomb.json
+++ b/Hero Designer/Data/db/Other/_Pets.Air_Bomb.json
@@ -211,7 +211,6 @@
}
],
"FullSetName": "Pets.Air_Bomb",
- "CastTime": 0.132,
"AoEModifier": 8.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_AR_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_AR_Snipe.json
index b92f3d23..733fb2fb 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_AR_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_AR_Snipe.json
@@ -584,7 +584,7 @@
}
],
"FullSetName": "Pets.Blaster_AR_Snipe",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -1147,7 +1147,7 @@
}
],
"FullSetName": "Pets.Blaster_AR_Snipe",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Archery_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Archery_Snipe.json
index 7baae236..f0038a9b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Archery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Archery_Snipe.json
@@ -477,7 +477,7 @@
}
],
"FullSetName": "Pets.Blaster_Archery_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -933,7 +933,7 @@
}
],
"FullSetName": "Pets.Blaster_Archery_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_BR_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_BR_Snipe.json
index 5f73a36e..49b5188a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_BR_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_BR_Snipe.json
@@ -667,7 +667,7 @@
}
],
"FullSetName": "Pets.Blaster_BR_Snipe",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"AoEModifier": 1.0
},
{
@@ -1315,7 +1315,7 @@
}
],
"FullSetName": "Pets.Blaster_BR_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Dark_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Dark_Snipe.json
index 58e3d82b..3199d1b8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Dark_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Dark_Snipe.json
@@ -517,7 +517,7 @@
}
],
"FullSetName": "Pets.Blaster_Dark_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -1015,7 +1015,7 @@
}
],
"FullSetName": "Pets.Blaster_Dark_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Electric_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Electric_Snipe.json
index dba306e9..e04293d3 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Electric_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Electric_Snipe.json
@@ -617,7 +617,7 @@
}
],
"FullSetName": "Pets.Blaster_Electric_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -1215,7 +1215,7 @@
}
],
"FullSetName": "Pets.Blaster_Electric_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Energy_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Energy_Snipe.json
index 9c21958d..1d19c022 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Energy_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Energy_Snipe.json
@@ -586,7 +586,7 @@
}
],
"FullSetName": "Pets.Blaster_Energy_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -1153,7 +1153,7 @@
}
],
"FullSetName": "Pets.Blaster_Energy_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Fire_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Fire_Snipe.json
index 6d99d8d1..891526a5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Fire_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Fire_Snipe.json
@@ -516,7 +516,7 @@
}
],
"FullSetName": "Pets.Blaster_Fire_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -1013,7 +1013,7 @@
}
],
"FullSetName": "Pets.Blaster_Fire_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Psychic_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Psychic_Snipe.json
index 7f904c68..b838c74e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Psychic_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Psychic_Snipe.json
@@ -513,7 +513,7 @@
}
],
"FullSetName": "Pets.Blaster_Psychic_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
},
{
@@ -1007,7 +1007,7 @@
}
],
"FullSetName": "Pets.Blaster_Psychic_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blaster_Radiation_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Blaster_Radiation_Snipe.json
index 4742e0c9..7e93b2c9 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blaster_Radiation_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blaster_Radiation_Snipe.json
@@ -524,7 +524,7 @@
}
],
"FullSetName": "Pets.Blaster_Radiation_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -1029,7 +1029,7 @@
}
],
"FullSetName": "Pets.Blaster_Radiation_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blind.json b/Hero Designer/Data/db/Other/_Pets.Blind.json
index 23080345..d1255ea5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blind.json
@@ -150,7 +150,6 @@
}
],
"FullSetName": "Pets.Blind",
- "CastTime": 0.132,
"AoEModifier": 1.3
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blizzard.json b/Hero Designer/Data/db/Other/_Pets.Blizzard.json
index 6d1f6c4b..ea19d6f2 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blizzard.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blizzard.json
@@ -529,7 +529,6 @@
}
],
"FullSetName": "Pets.Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -617,7 +616,6 @@
}
],
"FullSetName": "Pets.Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -698,7 +696,6 @@
}
],
"FullSetName": "Pets.Blizzard",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Blizzard_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.Blizzard_Sentinel.json
index 1b47e2cc..8ba46eb2 100644
--- a/Hero Designer/Data/db/Other/_Pets.Blizzard_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.Blizzard_Sentinel.json
@@ -529,7 +529,6 @@
}
],
"FullSetName": "Pets.Blizzard_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -616,7 +615,6 @@
}
],
"FullSetName": "Pets.Blizzard_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -696,7 +694,6 @@
}
],
"FullSetName": "Pets.Blizzard_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Bomb.json b/Hero Designer/Data/db/Other/_Pets.Bomb.json
index e9a667f7..54873a92 100644
--- a/Hero Designer/Data/db/Other/_Pets.Bomb.json
+++ b/Hero Designer/Data/db/Other/_Pets.Bomb.json
@@ -302,7 +302,6 @@
}
],
"FullSetName": "Pets.Bomb",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1541,7 +1540,6 @@
}
],
"FullSetName": "Pets.Bomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1624,7 +1622,6 @@
}
],
"FullSetName": "Pets.Bomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Bomb_Controller.json b/Hero Designer/Data/db/Other/_Pets.Bomb_Controller.json
index 87767ff9..7f3cb03c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Bomb_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Bomb_Controller.json
@@ -181,7 +181,6 @@
}
],
"FullSetName": "Pets.Bomb_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1419,7 +1418,6 @@
}
],
"FullSetName": "Pets.Bomb_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1501,7 +1499,6 @@
}
],
"FullSetName": "Pets.Bomb_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Bomb_Defender.json b/Hero Designer/Data/db/Other/_Pets.Bomb_Defender.json
index e3e396da..120d1fbe 100644
--- a/Hero Designer/Data/db/Other/_Pets.Bomb_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Bomb_Defender.json
@@ -302,7 +302,6 @@
}
],
"FullSetName": "Pets.Bomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1541,7 +1540,6 @@
}
],
"FullSetName": "Pets.Bomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1624,7 +1622,6 @@
}
],
"FullSetName": "Pets.Bomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Bonfire.json b/Hero Designer/Data/db/Other/_Pets.Bonfire.json
index b11d13ed..f72312d8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Bonfire.json
+++ b/Hero Designer/Data/db/Other/_Pets.Bonfire.json
@@ -183,7 +183,6 @@
}
],
"FullSetName": "Pets.Bonfire",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.BounceWorld.json b/Hero Designer/Data/db/Other/_Pets.BounceWorld.json
index 13ab439c..bdd15ed3 100644
--- a/Hero Designer/Data/db/Other/_Pets.BounceWorld.json
+++ b/Hero Designer/Data/db/Other/_Pets.BounceWorld.json
@@ -101,7 +101,6 @@
}
],
"FullSetName": "Pets.BounceWorld",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Brute_Savage_Melee.json b/Hero Designer/Data/db/Other/_Pets.Brute_Savage_Melee.json
index 07db413d..28efa6d8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Brute_Savage_Melee.json
+++ b/Hero Designer/Data/db/Other/_Pets.Brute_Savage_Melee.json
@@ -409,7 +409,7 @@
}
],
"FullSetName": "Pets.Brute_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 2.2
},
{
@@ -831,7 +831,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Brute_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Burn.json b/Hero Designer/Data/db/Other/_Pets.Burn.json
index df778fc8..96957fc1 100644
--- a/Hero Designer/Data/db/Other/_Pets.Burn.json
+++ b/Hero Designer/Data/db/Other/_Pets.Burn.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Pets.Burn",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -163,7 +162,7 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.Burn",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Cairn.json b/Hero Designer/Data/db/Other/_Pets.Cairn.json
index 575aa969..63559534 100644
--- a/Hero Designer/Data/db/Other/_Pets.Cairn.json
+++ b/Hero Designer/Data/db/Other/_Pets.Cairn.json
@@ -309,7 +309,6 @@
}
],
"FullSetName": "Pets.Cairn",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -922,7 +921,7 @@
}
],
"FullSetName": "Pets.Cairn",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Caltrops.json b/Hero Designer/Data/db/Other/_Pets.Caltrops.json
index 5c7fb1e1..061d4d2b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Caltrops.json
+++ b/Hero Designer/Data/db/Other/_Pets.Caltrops.json
@@ -276,7 +276,6 @@
}
],
"FullSetName": "Pets.Caltrops",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump1.json b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump1.json
index 50b78b4d..9550b96e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump1.json
@@ -341,7 +341,6 @@
}
],
"FullSetName": "Pets.Chain_Confuse_Controller_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump2.json b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump2.json
index 67b2772c..0a80e7d8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump2.json
@@ -341,7 +341,6 @@
}
],
"FullSetName": "Pets.Chain_Confuse_Controller_Jump2",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump3.json b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump3.json
index 6334c92c..bdacb548 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Confuse_Controller_Jump3.json
@@ -267,7 +267,6 @@
}
],
"FullSetName": "Pets.Chain_Confuse_Controller_Jump3",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump1_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump1_Scrapper.json
index faab8b30..3497712e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump1_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump1_Scrapper.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Pets.Chain_Induction_Jump1_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump2_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump2_Scrapper.json
index d23c3f13..642fd07e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump2_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump2_Scrapper.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Pets.Chain_Induction_Jump2_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump3_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump3_Scrapper.json
index 13c903f3..dff8b5c4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump3_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump3_Scrapper.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Pets.Chain_Induction_Jump3_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump4_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump4_Scrapper.json
index 12ac2ddf..d0a6494d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump4_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Induction_Jump4_Scrapper.json
@@ -148,7 +148,6 @@
}
],
"FullSetName": "Pets.Chain_Induction_Jump4_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump1.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump1.json
index c0e28b11..7611387b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump1.json
@@ -400,7 +400,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Controller_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump2.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump2.json
index c035539d..77e99933 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump2.json
@@ -400,7 +400,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Controller_Jump2",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump3.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump3.json
index 1ecaf2bc..af88fc3e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Controller_Jump3.json
@@ -326,7 +326,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Controller_Jump3",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump1.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump1.json
index 4ff422c3..9d8c4e6b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump1.json
@@ -295,7 +295,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Gremlin_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump2.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump2.json
index 7fde7965..542ae7e7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump2.json
@@ -295,7 +295,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Gremlin_Jump2",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump3.json b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump3.json
index 3b5a77d5..34c69982 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Jolt_Gremlin_Jump3.json
@@ -221,7 +221,6 @@
}
],
"FullSetName": "Pets.Chain_Jolt_Gremlin_Jump3",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Chain_Stun_Controller_Jump1.json b/Hero Designer/Data/db/Other/_Pets.Chain_Stun_Controller_Jump1.json
index e8dbf4ea..d11b5887 100644
--- a/Hero Designer/Data/db/Other/_Pets.Chain_Stun_Controller_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Pets.Chain_Stun_Controller_Jump1.json
@@ -294,7 +294,6 @@
}
],
"FullSetName": "Pets.Chain_Stun_Controller_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ChargeCone.json b/Hero Designer/Data/db/Other/_Pets.ChargeCone.json
index 831bfa4a..cdda7aac 100644
--- a/Hero Designer/Data/db/Other/_Pets.ChargeCone.json
+++ b/Hero Designer/Data/db/Other/_Pets.ChargeCone.json
@@ -187,7 +187,6 @@
}
],
"FullSetName": "Pets.ChargeCone",
- "CastTime": 0.132,
"AoEModifier": 2.40993142
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ChargeImpact.json b/Hero Designer/Data/db/Other/_Pets.ChargeImpact.json
index 2110823a..22ff3f2e 100644
--- a/Hero Designer/Data/db/Other/_Pets.ChargeImpact.json
+++ b/Hero Designer/Data/db/Other/_Pets.ChargeImpact.json
@@ -185,7 +185,6 @@
}
],
"FullSetName": "Pets.ChargeImpact",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Brute.json b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Brute.json
index 3645395f..6e34c602 100644
--- a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Brute.json
+++ b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Brute.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Contaminated_Lightning_Rod_Brute",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Scrapper.json
index 3baa13c5..8d46db6d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Scrapper.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Contaminated_Lightning_Rod_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Stalker.json b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Stalker.json
index 9207ed8a..6246052c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Stalker.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Contaminated_Lightning_Rod_Stalker",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Tanker.json b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Tanker.json
index 26b4e8d3..346d1df7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Tanker.json
+++ b/Hero Designer/Data/db/Other/_Pets.Contaminated_Lightning_Rod_Tanker.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Contaminated_Lightning_Rod_Tanker",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Corruptor_Blizzard.json b/Hero Designer/Data/db/Other/_Pets.Corruptor_Blizzard.json
index 0d977b8e..df084449 100644
--- a/Hero Designer/Data/db/Other/_Pets.Corruptor_Blizzard.json
+++ b/Hero Designer/Data/db/Other/_Pets.Corruptor_Blizzard.json
@@ -532,7 +532,6 @@
}
],
"FullSetName": "Pets.Corruptor_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -620,7 +619,6 @@
}
],
"FullSetName": "Pets.Corruptor_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -701,7 +699,6 @@
}
],
"FullSetName": "Pets.Corruptor_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Corruptor_FlameThrower.json b/Hero Designer/Data/db/Other/_Pets.Corruptor_FlameThrower.json
index 53c67818..07144f55 100644
--- a/Hero Designer/Data/db/Other/_Pets.Corruptor_FlameThrower.json
+++ b/Hero Designer/Data/db/Other/_Pets.Corruptor_FlameThrower.json
@@ -180,7 +180,6 @@
}
],
"FullSetName": "Pets.Corruptor_FlameThrower",
- "CastTime": 0.132,
"AoEModifier": 1.6
},
{
@@ -269,7 +268,6 @@
}
],
"FullSetName": "Pets.Corruptor_FlameThrower",
- "CastTime": 0.132,
"AoEModifier": 1.6
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Corruptor_IceStorm.json b/Hero Designer/Data/db/Other/_Pets.Corruptor_IceStorm.json
index eb619381..83430585 100644
--- a/Hero Designer/Data/db/Other/_Pets.Corruptor_IceStorm.json
+++ b/Hero Designer/Data/db/Other/_Pets.Corruptor_IceStorm.json
@@ -425,7 +425,6 @@
}
],
"FullSetName": "Pets.Corruptor_IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -513,7 +512,6 @@
}
],
"FullSetName": "Pets.Corruptor_IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Corruptor_RainofFire.json b/Hero Designer/Data/db/Other/_Pets.Corruptor_RainofFire.json
index 7f97c3d7..7b6ef37c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Corruptor_RainofFire.json
+++ b/Hero Designer/Data/db/Other/_Pets.Corruptor_RainofFire.json
@@ -354,7 +354,6 @@
}
],
"FullSetName": "Pets.Corruptor_RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -442,7 +441,6 @@
}
],
"FullSetName": "Pets.Corruptor_RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Crab_Spider.json b/Hero Designer/Data/db/Other/_Pets.Crab_Spider.json
index d0600d5e..ada8dd4f 100644
--- a/Hero Designer/Data/db/Other/_Pets.Crab_Spider.json
+++ b/Hero Designer/Data/db/Other/_Pets.Crab_Spider.json
@@ -139,7 +139,6 @@
}
],
"FullSetName": "Pets.Crab_Spider",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -269,7 +268,7 @@
}
],
"FullSetName": "Pets.Crab_Spider",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -397,7 +396,7 @@
}
],
"FullSetName": "Pets.Crab_Spider",
- "CastTime": 1.056,
+ "CastTime": 0.87,
"AoEModifier": 1.0
},
{
@@ -488,7 +487,7 @@
}
],
"FullSetName": "Pets.Crab_Spider",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -585,7 +584,7 @@
}
],
"FullSetName": "Pets.Crab_Spider",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 3.02992368
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DarkFaerie.json b/Hero Designer/Data/db/Other/_Pets.DarkFaerie.json
index 5054f15c..e156c688 100644
--- a/Hero Designer/Data/db/Other/_Pets.DarkFaerie.json
+++ b/Hero Designer/Data/db/Other/_Pets.DarkFaerie.json
@@ -614,7 +614,6 @@
}
],
"FullSetName": "Pets.DarkFaerie",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -716,7 +715,7 @@
}
],
"FullSetName": "Pets.DarkFaerie",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DarkServant.json b/Hero Designer/Data/db/Other/_Pets.DarkServant.json
index cb99da5d..4053a510 100644
--- a/Hero Designer/Data/db/Other/_Pets.DarkServant.json
+++ b/Hero Designer/Data/db/Other/_Pets.DarkServant.json
@@ -152,7 +152,7 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 2.5
},
{
@@ -822,7 +822,7 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 4.75
},
{
@@ -939,7 +939,6 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1737,7 +1736,7 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 1.0
},
{
@@ -1983,7 +1982,7 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.29195762
},
{
@@ -2118,7 +2117,7 @@
}
],
"FullSetName": "Pets.DarkServant",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Decoy.json b/Hero Designer/Data/db/Other/_Pets.Decoy.json
index 30eae466..b8baccfe 100644
--- a/Hero Designer/Data/db/Other/_Pets.Decoy.json
+++ b/Hero Designer/Data/db/Other/_Pets.Decoy.json
@@ -208,7 +208,6 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -405,7 +404,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -601,7 +600,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -768,7 +767,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -965,7 +964,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1161,7 +1160,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1327,7 +1326,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1493,7 +1492,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1658,7 +1657,7 @@
}
],
"FullSetName": "Pets.Decoy",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DecoyPhantasm.json b/Hero Designer/Data/db/Other/_Pets.DecoyPhantasm.json
index 9a51510b..e2d36573 100644
--- a/Hero Designer/Data/db/Other/_Pets.DecoyPhantasm.json
+++ b/Hero Designer/Data/db/Other/_Pets.DecoyPhantasm.json
@@ -186,7 +186,7 @@
}
],
"FullSetName": "Pets.DecoyPhantasm",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -354,7 +354,7 @@
}
],
"FullSetName": "Pets.DecoyPhantasm",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -536,7 +536,6 @@
}
],
"FullSetName": "Pets.DecoyPhantasm",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -606,7 +605,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Pets.DecoyPhantasm",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -822,7 +821,6 @@
}
],
"FullSetName": "Pets.DecoyPhantasm",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_AR_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_AR_Snipe.json
index 4d30d786..bb50cb40 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_AR_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_AR_Snipe.json
@@ -237,7 +237,7 @@
}
],
"FullSetName": "Pets.Defender_AR_Snipe",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -455,7 +455,7 @@
}
],
"FullSetName": "Pets.Defender_AR_Snipe",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Archery_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Archery_Snipe.json
index b3e7b868..e8d88cc5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Archery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Archery_Snipe.json
@@ -163,7 +163,7 @@
}
],
"FullSetName": "Pets.Defender_Archery_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Pets.Defender_Archery_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_BR_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_BR_Snipe.json
index 0c786122..85f77b55 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_BR_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_BR_Snipe.json
@@ -353,7 +353,7 @@
}
],
"FullSetName": "Pets.Defender_BR_Snipe",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"AoEModifier": 1.0
},
{
@@ -687,7 +687,7 @@
}
],
"FullSetName": "Pets.Defender_BR_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Blizzard.json b/Hero Designer/Data/db/Other/_Pets.Defender_Blizzard.json
index 85a77bde..7a7c3fd4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Blizzard.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Blizzard.json
@@ -529,7 +529,6 @@
}
],
"FullSetName": "Pets.Defender_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -617,7 +616,6 @@
}
],
"FullSetName": "Pets.Defender_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -698,7 +696,6 @@
}
],
"FullSetName": "Pets.Defender_Blizzard",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Dark_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Dark_Snipe.json
index 062ff2e9..22386ffb 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Dark_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Dark_Snipe.json
@@ -203,7 +203,7 @@
}
],
"FullSetName": "Pets.Defender_Dark_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -387,7 +387,7 @@
}
],
"FullSetName": "Pets.Defender_Dark_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Electric_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Electric_Snipe.json
index 25d730a9..fb16c1d2 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Electric_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Electric_Snipe.json
@@ -303,7 +303,7 @@
}
],
"FullSetName": "Pets.Defender_Electric_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -587,7 +587,7 @@
}
],
"FullSetName": "Pets.Defender_Electric_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Energy_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Energy_Snipe.json
index 1ae8fc7d..d27f3515 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Energy_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Energy_Snipe.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Pets.Defender_Energy_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Pets.Defender_Energy_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Fire_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Fire_Snipe.json
index 54e8dffd..4b67ce84 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Fire_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Fire_Snipe.json
@@ -202,7 +202,7 @@
}
],
"FullSetName": "Pets.Defender_Fire_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -385,7 +385,7 @@
}
],
"FullSetName": "Pets.Defender_Fire_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Psychic_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Psychic_Snipe.json
index fd3439f9..d5988f5a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Psychic_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Psychic_Snipe.json
@@ -199,7 +199,7 @@
}
],
"FullSetName": "Pets.Defender_Psychic_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
},
{
@@ -379,7 +379,7 @@
}
],
"FullSetName": "Pets.Defender_Psychic_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_Radiation_Snipe.json b/Hero Designer/Data/db/Other/_Pets.Defender_Radiation_Snipe.json
index 1c07266f..4c937bc7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_Radiation_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_Radiation_Snipe.json
@@ -210,7 +210,7 @@
}
],
"FullSetName": "Pets.Defender_Radiation_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
},
{
@@ -401,7 +401,7 @@
}
],
"FullSetName": "Pets.Defender_Radiation_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defender_RainofFire.json b/Hero Designer/Data/db/Other/_Pets.Defender_RainofFire.json
index bd1ed057..18a24049 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defender_RainofFire.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defender_RainofFire.json
@@ -317,7 +317,6 @@
}
],
"FullSetName": "Pets.Defender_RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -405,7 +404,6 @@
}
],
"FullSetName": "Pets.Defender_RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Defenders_Bastion_Proc.json b/Hero Designer/Data/db/Other/_Pets.Defenders_Bastion_Proc.json
index 36afc3c0..67781847 100644
--- a/Hero Designer/Data/db/Other/_Pets.Defenders_Bastion_Proc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Defenders_Bastion_Proc.json
@@ -106,7 +106,6 @@
}
],
"FullSetName": "Pets.Defenders_Bastion_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DimensionShift.json b/Hero Designer/Data/db/Other/_Pets.DimensionShift.json
index 11e785a2..66b81a3f 100644
--- a/Hero Designer/Data/db/Other/_Pets.DimensionShift.json
+++ b/Hero Designer/Data/db/Other/_Pets.DimensionShift.json
@@ -443,7 +443,6 @@
}
],
"FullSetName": "Pets.DimensionShift",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -631,7 +630,6 @@
}
],
"FullSetName": "Pets.DimensionShift",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -752,7 +750,6 @@
}
],
"FullSetName": "Pets.DimensionShift",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DisintegrateSpread.json b/Hero Designer/Data/db/Other/_Pets.DisintegrateSpread.json
index 4229115c..4e27eda4 100644
--- a/Hero Designer/Data/db/Other/_Pets.DisintegrateSpread.json
+++ b/Hero Designer/Data/db/Other/_Pets.DisintegrateSpread.json
@@ -84,7 +84,6 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.DisintegrateSpread",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -326,7 +325,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.DisintegrateSpread",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DistortionField_Controller.json b/Hero Designer/Data/db/Other/_Pets.DistortionField_Controller.json
index e4e8932f..0696b0de 100644
--- a/Hero Designer/Data/db/Other/_Pets.DistortionField_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.DistortionField_Controller.json
@@ -477,7 +477,6 @@
}
],
"FullSetName": "Pets.DistortionField_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.DistortionField_Defender.json b/Hero Designer/Data/db/Other/_Pets.DistortionField_Defender.json
index a0f839d4..90dbc9ea 100644
--- a/Hero Designer/Data/db/Other/_Pets.DistortionField_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.DistortionField_Defender.json
@@ -477,7 +477,6 @@
}
],
"FullSetName": "Pets.DistortionField_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Dust_Devil.json b/Hero Designer/Data/db/Other/_Pets.Dust_Devil.json
index 98d9052b..27305ba0 100644
--- a/Hero Designer/Data/db/Other/_Pets.Dust_Devil.json
+++ b/Hero Designer/Data/db/Other/_Pets.Dust_Devil.json
@@ -104,7 +104,6 @@
}
],
"FullSetName": "Pets.Dust_Devil",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -190,7 +189,6 @@
}
],
"FullSetName": "Pets.Dust_Devil",
- "CastTime": 0.132,
"AoEModifier": 2.95
},
{
@@ -274,7 +272,6 @@
}
],
"FullSetName": "Pets.Dust_Devil",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Earthquake.json b/Hero Designer/Data/db/Other/_Pets.Earthquake.json
index 8a0d15cf..cd1fa79b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Earthquake.json
+++ b/Hero Designer/Data/db/Other/_Pets.Earthquake.json
@@ -284,7 +284,6 @@
}
],
"FullSetName": "Pets.Earthquake",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Embraced_IceStorm.json b/Hero Designer/Data/db/Other/_Pets.Embraced_IceStorm.json
index 7c829281..cc12aec8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Embraced_IceStorm.json
+++ b/Hero Designer/Data/db/Other/_Pets.Embraced_IceStorm.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Pets.Embraced_IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Brute.json b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Brute.json
index b431ba2e..7bc3e529 100644
--- a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Brute.json
+++ b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Brute.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Embraced_Lightning_Rod_Brute",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Scrapper.json
index 4c276666..c6faf28c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Scrapper.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Embraced_Lightning_Rod_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Tanker.json b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Tanker.json
index 10c26a74..f3834095 100644
--- a/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Tanker.json
+++ b/Hero Designer/Data/db/Other/_Pets.Embraced_Lightning_Rod_Tanker.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Pets.Embraced_Lightning_Rod_Tanker",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Embraced_Quicksand.json b/Hero Designer/Data/db/Other/_Pets.Embraced_Quicksand.json
index 4ae70a54..589e6bb5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Embraced_Quicksand.json
+++ b/Hero Designer/Data/db/Other/_Pets.Embraced_Quicksand.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.Embraced_Quicksand",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Enflame.json b/Hero Designer/Data/db/Other/_Pets.Enflame.json
index 09ed7558..7b7bc448 100644
--- a/Hero Designer/Data/db/Other/_Pets.Enflame.json
+++ b/Hero Designer/Data/db/Other/_Pets.Enflame.json
@@ -374,7 +374,6 @@
}
],
"FullSetName": "Pets.Enflame",
- "CastTime": 0.132,
"AoEModifier": 2.05
},
{
@@ -463,7 +462,6 @@
}
],
"FullSetName": "Pets.Enflame",
- "CastTime": 0.132,
"AoEModifier": 1.6
},
{
@@ -546,7 +544,6 @@
}
],
"FullSetName": "Pets.Enflame",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Epic_FreezingRain.json b/Hero Designer/Data/db/Other/_Pets.Epic_FreezingRain.json
index 7026649e..0c7ffdb0 100644
--- a/Hero Designer/Data/db/Other/_Pets.Epic_FreezingRain.json
+++ b/Hero Designer/Data/db/Other/_Pets.Epic_FreezingRain.json
@@ -1199,7 +1199,6 @@
}
],
"FullSetName": "Pets.Epic_FreezingRain",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1287,7 +1286,6 @@
}
],
"FullSetName": "Pets.Epic_FreezingRain",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Epic_IceStorm.json b/Hero Designer/Data/db/Other/_Pets.Epic_IceStorm.json
index a646df37..1dbf14ce 100644
--- a/Hero Designer/Data/db/Other/_Pets.Epic_IceStorm.json
+++ b/Hero Designer/Data/db/Other/_Pets.Epic_IceStorm.json
@@ -421,7 +421,6 @@
}
],
"FullSetName": "Pets.Epic_IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -509,7 +508,6 @@
}
],
"FullSetName": "Pets.Epic_IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Epic_Quicksand.json b/Hero Designer/Data/db/Other/_Pets.Epic_Quicksand.json
index 90434a18..526b6951 100644
--- a/Hero Designer/Data/db/Other/_Pets.Epic_Quicksand.json
+++ b/Hero Designer/Data/db/Other/_Pets.Epic_Quicksand.json
@@ -277,7 +277,6 @@
}
],
"FullSetName": "Pets.Epic_Quicksand",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Experimentation_Corrosive_Vial.json b/Hero Designer/Data/db/Other/_Pets.Experimentation_Corrosive_Vial.json
index d11d05b0..2d70724a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Experimentation_Corrosive_Vial.json
+++ b/Hero Designer/Data/db/Other/_Pets.Experimentation_Corrosive_Vial.json
@@ -417,7 +417,6 @@
}
],
"FullSetName": "Pets.Experimentation_Corrosive_Vial",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.FaerieResists.json b/Hero Designer/Data/db/Other/_Pets.FaerieResists.json
index c9846e0f..acc9ee99 100644
--- a/Hero Designer/Data/db/Other/_Pets.FaerieResists.json
+++ b/Hero Designer/Data/db/Other/_Pets.FaerieResists.json
@@ -530,7 +530,6 @@
}
],
"FullSetName": "Pets.FaerieResists",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Fallout.json b/Hero Designer/Data/db/Other/_Pets.Fallout.json
index 09a920e3..2a5beb7b 100644
--- a/Hero Designer/Data/db/Other/_Pets.Fallout.json
+++ b/Hero Designer/Data/db/Other/_Pets.Fallout.json
@@ -1395,7 +1395,6 @@
}
],
"FullSetName": "Pets.Fallout",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Fallout_Controller.json b/Hero Designer/Data/db/Other/_Pets.Fallout_Controller.json
index f26e84db..0ef1371d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Fallout_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Fallout_Controller.json
@@ -737,7 +737,6 @@
}
],
"FullSetName": "Pets.Fallout_Controller",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Fallout_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.Fallout_Mastermind.json
index 602489fe..1acdf3f4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Fallout_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Fallout_Mastermind.json
@@ -737,7 +737,6 @@
}
],
"FullSetName": "Pets.Fallout_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.FlameThrower.json b/Hero Designer/Data/db/Other/_Pets.FlameThrower.json
index 0d4cebaa..3a99d64d 100644
--- a/Hero Designer/Data/db/Other/_Pets.FlameThrower.json
+++ b/Hero Designer/Data/db/Other/_Pets.FlameThrower.json
@@ -173,7 +173,6 @@
}
],
"FullSetName": "Pets.FlameThrower",
- "CastTime": 0.132,
"AoEModifier": 1.6
},
{
@@ -262,7 +261,6 @@
}
],
"FullSetName": "Pets.FlameThrower",
- "CastTime": 0.132,
"AoEModifier": 1.6
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.FreezingRain.json b/Hero Designer/Data/db/Other/_Pets.FreezingRain.json
index 3a87cc49..c2d897c7 100644
--- a/Hero Designer/Data/db/Other/_Pets.FreezingRain.json
+++ b/Hero Designer/Data/db/Other/_Pets.FreezingRain.json
@@ -1199,7 +1199,6 @@
}
],
"FullSetName": "Pets.FreezingRain",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1287,7 +1286,6 @@
}
],
"FullSetName": "Pets.FreezingRain",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.FreezingRain_Controller.json b/Hero Designer/Data/db/Other/_Pets.FreezingRain_Controller.json
index eea5bbde..ef1ee54d 100644
--- a/Hero Designer/Data/db/Other/_Pets.FreezingRain_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.FreezingRain_Controller.json
@@ -911,7 +911,6 @@
}
],
"FullSetName": "Pets.FreezingRain_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -999,7 +998,6 @@
}
],
"FullSetName": "Pets.FreezingRain_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Fungi.json b/Hero Designer/Data/db/Other/_Pets.Fungi.json
index 6d984e4b..6d20373a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Fungi.json
+++ b/Hero Designer/Data/db/Other/_Pets.Fungi.json
@@ -302,7 +302,6 @@
}
],
"FullSetName": "Pets.Fungi",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -915,7 +914,7 @@
}
],
"FullSetName": "Pets.Fungi",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Gremlin.json b/Hero Designer/Data/db/Other/_Pets.Gremlin.json
index 8c905bad..ba8dc3e8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Gremlin.json
+++ b/Hero Designer/Data/db/Other/_Pets.Gremlin.json
@@ -358,7 +358,7 @@
}
],
"FullSetName": "Pets.Gremlin",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -674,7 +674,7 @@
}
],
"FullSetName": "Pets.Gremlin",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
},
{
@@ -766,7 +766,6 @@
}
],
"FullSetName": "Pets.Gremlin",
- "CastTime": 0.132,
"AoEModifier": 2.05
},
{
@@ -1149,7 +1148,7 @@
}
],
"FullSetName": "Pets.Gremlin",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Guard.json b/Hero Designer/Data/db/Other/_Pets.Guard.json
index 888dd040..d120b604 100644
--- a/Hero Designer/Data/db/Other/_Pets.Guard.json
+++ b/Hero Designer/Data/db/Other/_Pets.Guard.json
@@ -346,7 +346,6 @@
}
],
"FullSetName": "Pets.Guard",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -466,7 +465,6 @@
}
],
"FullSetName": "Pets.Guard",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -682,7 +680,6 @@
}
],
"FullSetName": "Pets.Guard",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.HeatLossBuff_Defender.json b/Hero Designer/Data/db/Other/_Pets.HeatLossBuff_Defender.json
index 71cb72ff..3eaf447d 100644
--- a/Hero Designer/Data/db/Other/_Pets.HeatLossBuff_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.HeatLossBuff_Defender.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Pets.HeatLossBuff_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.HeatLossDebuff_Defender.json b/Hero Designer/Data/db/Other/_Pets.HeatLossDebuff_Defender.json
index b6dde6a8..770c4cec 100644
--- a/Hero Designer/Data/db/Other/_Pets.HeatLossDebuff_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.HeatLossDebuff_Defender.json
@@ -666,7 +666,6 @@
}
],
"FullSetName": "Pets.HeatLossDebuff_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Hibernate.json b/Hero Designer/Data/db/Other/_Pets.Hibernate.json
index 91da7bb6..ad029ae6 100644
--- a/Hero Designer/Data/db/Other/_Pets.Hibernate.json
+++ b/Hero Designer/Data/db/Other/_Pets.Hibernate.json
@@ -443,7 +443,6 @@
}
],
"FullSetName": "Pets.Hibernate",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.High_Explosives.json b/Hero Designer/Data/db/Other/_Pets.High_Explosives.json
index 475dee15..2874c434 100644
--- a/Hero Designer/Data/db/Other/_Pets.High_Explosives.json
+++ b/Hero Designer/Data/db/Other/_Pets.High_Explosives.json
@@ -207,7 +207,6 @@
}
],
"FullSetName": "Pets.High_Explosives",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1350,7 +1349,6 @@
}
],
"FullSetName": "Pets.High_Explosives",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1462,7 +1460,6 @@
}
],
"FullSetName": "Pets.High_Explosives",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.High_Explosives_Tech.json b/Hero Designer/Data/db/Other/_Pets.High_Explosives_Tech.json
index 2d0544f9..4f41b3a5 100644
--- a/Hero Designer/Data/db/Other/_Pets.High_Explosives_Tech.json
+++ b/Hero Designer/Data/db/Other/_Pets.High_Explosives_Tech.json
@@ -274,7 +274,6 @@
}
],
"FullSetName": "Pets.High_Explosives_Tech",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1417,7 +1416,6 @@
}
],
"FullSetName": "Pets.High_Explosives_Tech",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1529,7 +1527,6 @@
}
],
"FullSetName": "Pets.High_Explosives_Tech",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Howling.json b/Hero Designer/Data/db/Other/_Pets.Howling.json
index 40828aaf..fe9f3164 100644
--- a/Hero Designer/Data/db/Other/_Pets.Howling.json
+++ b/Hero Designer/Data/db/Other/_Pets.Howling.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Pets.Howling",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.HowlingVillain.json b/Hero Designer/Data/db/Other/_Pets.HowlingVillain.json
index de1bba6b..f73f249c 100644
--- a/Hero Designer/Data/db/Other/_Pets.HowlingVillain.json
+++ b/Hero Designer/Data/db/Other/_Pets.HowlingVillain.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Pets.HowlingVillain",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.IcePatch.json b/Hero Designer/Data/db/Other/_Pets.IcePatch.json
index f278e0ed..43ae9b6b 100644
--- a/Hero Designer/Data/db/Other/_Pets.IcePatch.json
+++ b/Hero Designer/Data/db/Other/_Pets.IcePatch.json
@@ -274,7 +274,6 @@
}
],
"FullSetName": "Pets.IcePatch",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.IceSlick.json b/Hero Designer/Data/db/Other/_Pets.IceSlick.json
index a4e69fa6..a56bf7f8 100644
--- a/Hero Designer/Data/db/Other/_Pets.IceSlick.json
+++ b/Hero Designer/Data/db/Other/_Pets.IceSlick.json
@@ -274,7 +274,6 @@
}
],
"FullSetName": "Pets.IceSlick",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.IceStorm.json b/Hero Designer/Data/db/Other/_Pets.IceStorm.json
index c6884bbd..02016f5d 100644
--- a/Hero Designer/Data/db/Other/_Pets.IceStorm.json
+++ b/Hero Designer/Data/db/Other/_Pets.IceStorm.json
@@ -422,7 +422,6 @@
}
],
"FullSetName": "Pets.IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -510,7 +509,6 @@
}
],
"FullSetName": "Pets.IceStorm",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.IceStorm_Defender.json b/Hero Designer/Data/db/Other/_Pets.IceStorm_Defender.json
index dc358883..ea289543 100644
--- a/Hero Designer/Data/db/Other/_Pets.IceStorm_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.IceStorm_Defender.json
@@ -422,7 +422,6 @@
}
],
"FullSetName": "Pets.IceStorm_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -510,7 +509,6 @@
}
],
"FullSetName": "Pets.IceStorm_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.IceStorm_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.IceStorm_Sentinel.json
index 7e432907..1e279724 100644
--- a/Hero Designer/Data/db/Other/_Pets.IceStorm_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.IceStorm_Sentinel.json
@@ -421,7 +421,6 @@
}
],
"FullSetName": "Pets.IceStorm_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -508,7 +507,6 @@
}
],
"FullSetName": "Pets.IceStorm_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Imp.json b/Hero Designer/Data/db/Other/_Pets.Imp.json
index ff073dba..b4abc1a9 100644
--- a/Hero Designer/Data/db/Other/_Pets.Imp.json
+++ b/Hero Designer/Data/db/Other/_Pets.Imp.json
@@ -223,7 +223,7 @@
}
],
"FullSetName": "Pets.Imp",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -473,7 +473,7 @@
}
],
"FullSetName": "Pets.Imp",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Infected_Explosion.json b/Hero Designer/Data/db/Other/_Pets.Infected_Explosion.json
index 155f8766..15920836 100644
--- a/Hero Designer/Data/db/Other/_Pets.Infected_Explosion.json
+++ b/Hero Designer/Data/db/Other/_Pets.Infected_Explosion.json
@@ -172,7 +172,6 @@
}
],
"FullSetName": "Pets.Infected_Explosion",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Jack.json b/Hero Designer/Data/db/Other/_Pets.Jack.json
index d521f28a..da7ec946 100644
--- a/Hero Designer/Data/db/Other/_Pets.Jack.json
+++ b/Hero Designer/Data/db/Other/_Pets.Jack.json
@@ -331,7 +331,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -600,7 +600,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 2.5
},
{
@@ -914,7 +914,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1223,7 +1223,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -1537,7 +1537,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -2092,7 +2092,7 @@
}
],
"FullSetName": "Pets.Jack",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff.json
index 472b8d29..1cdd99c0 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.KineticTransferBuff",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf.json
index b2b1d2c3..3d277ef8 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.KineticTransferBuffSelf",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf_Controller.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf_Controller.json
index 691cae9c..205c8692 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuffSelf_Controller.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.KineticTransferBuffSelf_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Controller.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Controller.json
index 4b75d509..f40d65c1 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Controller.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.KineticTransferBuff_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Mastermind.json
index 2586fa5a..99090610 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferBuff_Mastermind.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.KineticTransferBuff_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff.json
index ba566bed..3e47a1e2 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff.json
@@ -699,7 +699,6 @@
}
],
"FullSetName": "Pets.KineticTransferDebuff",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Controller.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Controller.json
index 9f933c3d..ede77cc1 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Controller.json
@@ -395,7 +395,6 @@
}
],
"FullSetName": "Pets.KineticTransferDebuff_Controller",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Mastermind.json
index a556c94a..f6b49b2b 100644
--- a/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.KineticTransferDebuff_Mastermind.json
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Pets.KineticTransferDebuff_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Controller.json b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Controller.json
index 0d69f7b7..72a160c9 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Controller.json
@@ -143,7 +143,7 @@
}
],
"FullSetName": "Pets.Lifegiving_Spores_Controller",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Corruptor.json b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Corruptor.json
index 3df591a0..16a8ac22 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Corruptor.json
@@ -143,7 +143,7 @@
}
],
"FullSetName": "Pets.Lifegiving_Spores_Corruptor",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Defender.json b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Defender.json
index 6d63cb49..44d6058e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Defender.json
@@ -143,7 +143,7 @@
}
],
"FullSetName": "Pets.Lifegiving_Spores_Defender",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Mastermind.json
index e9e766ee..3f5b2275 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lifegiving_Spores_Mastermind.json
@@ -143,7 +143,7 @@
}
],
"FullSetName": "Pets.Lifegiving_Spores_Mastermind",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.LightFaerie.json b/Hero Designer/Data/db/Other/_Pets.LightFaerie.json
index 617c248f..373127af 100644
--- a/Hero Designer/Data/db/Other/_Pets.LightFaerie.json
+++ b/Hero Designer/Data/db/Other/_Pets.LightFaerie.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Pets.LightFaerie",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -245,7 +244,7 @@
}
],
"FullSetName": "Pets.LightFaerie",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.LightningStorm.json b/Hero Designer/Data/db/Other/_Pets.LightningStorm.json
index eeea9edb..447328ea 100644
--- a/Hero Designer/Data/db/Other/_Pets.LightningStorm.json
+++ b/Hero Designer/Data/db/Other/_Pets.LightningStorm.json
@@ -421,7 +421,7 @@
}
],
"FullSetName": "Pets.LightningStorm",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.75
},
{
@@ -506,7 +506,6 @@
}
],
"FullSetName": "Pets.LightningStorm",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -657,7 +656,6 @@
}
],
"FullSetName": "Pets.LightningStorm",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.LightningStorm_Controller.json b/Hero Designer/Data/db/Other/_Pets.LightningStorm_Controller.json
index 2618c78c..94f166ee 100644
--- a/Hero Designer/Data/db/Other/_Pets.LightningStorm_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.LightningStorm_Controller.json
@@ -421,7 +421,7 @@
}
],
"FullSetName": "Pets.LightningStorm_Controller",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.75
},
{
@@ -506,7 +506,6 @@
}
],
"FullSetName": "Pets.LightningStorm_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -657,7 +656,6 @@
}
],
"FullSetName": "Pets.LightningStorm_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.LightningStorm_NPC.json b/Hero Designer/Data/db/Other/_Pets.LightningStorm_NPC.json
index b7ca254f..c8202e97 100644
--- a/Hero Designer/Data/db/Other/_Pets.LightningStorm_NPC.json
+++ b/Hero Designer/Data/db/Other/_Pets.LightningStorm_NPC.json
@@ -260,7 +260,7 @@
}
],
"FullSetName": "Pets.LightningStorm_NPC",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.75
},
{
@@ -345,7 +345,6 @@
}
],
"FullSetName": "Pets.LightningStorm_NPC",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -496,7 +495,6 @@
}
],
"FullSetName": "Pets.LightningStorm_NPC",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod.json b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod.json
index 1ba8ffc4..7b14cf53 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod.json
@@ -183,7 +183,6 @@
}
],
"FullSetName": "Pets.Lightning_Rod",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Scrapper.json b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Scrapper.json
index 24b2849a..77f6b82d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Scrapper.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Scrapper.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Pets.Lightning_Rod_Scrapper",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Tanker.json b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Tanker.json
index 055b1644..18742573 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Tanker.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lightning_Rod_Tanker.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Pets.Lightning_Rod_Tanker",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Liquefy.json b/Hero Designer/Data/db/Other/_Pets.Liquefy.json
index 00d90163..d7ef12c0 100644
--- a/Hero Designer/Data/db/Other/_Pets.Liquefy.json
+++ b/Hero Designer/Data/db/Other/_Pets.Liquefy.json
@@ -354,7 +354,6 @@
}
],
"FullSetName": "Pets.Liquefy",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Liquefy_Defender.json b/Hero Designer/Data/db/Other/_Pets.Liquefy_Defender.json
index 2463d4a6..242e354c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Liquefy_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Liquefy_Defender.json
@@ -314,7 +314,6 @@
}
],
"FullSetName": "Pets.Liquefy_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Liquefy_MM.json b/Hero Designer/Data/db/Other/_Pets.Liquefy_MM.json
index b2fb0103..66a2dd24 100644
--- a/Hero Designer/Data/db/Other/_Pets.Liquefy_MM.json
+++ b/Hero Designer/Data/db/Other/_Pets.Liquefy_MM.json
@@ -354,7 +354,6 @@
}
],
"FullSetName": "Pets.Liquefy_MM",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Longbow_Heavy.json b/Hero Designer/Data/db/Other/_Pets.Longbow_Heavy.json
index 2e065a3e..cafb54f6 100644
--- a/Hero Designer/Data/db/Other/_Pets.Longbow_Heavy.json
+++ b/Hero Designer/Data/db/Other/_Pets.Longbow_Heavy.json
@@ -150,7 +150,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -240,7 +240,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -405,7 +405,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 2.03496885
},
{
@@ -565,7 +565,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 3.25
},
{
@@ -724,7 +724,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
},
{
@@ -907,7 +907,6 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1030,7 +1029,7 @@
}
],
"FullSetName": "Pets.Longbow_Heavy",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Lost_Cure_Counter.json b/Hero Designer/Data/db/Other/_Pets.Lost_Cure_Counter.json
index d5e7143a..b9ee4953 100644
--- a/Hero Designer/Data/db/Other/_Pets.Lost_Cure_Counter.json
+++ b/Hero Designer/Data/db/Other/_Pets.Lost_Cure_Counter.json
@@ -110,7 +110,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Lost_Cure_Counter",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -223,7 +222,6 @@
}
],
"FullSetName": "Pets.Lost_Cure_Counter",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Martial_Manipulation_Burst.json b/Hero Designer/Data/db/Other/_Pets.Martial_Manipulation_Burst.json
index fa47db57..c5519d83 100644
--- a/Hero Designer/Data/db/Other/_Pets.Martial_Manipulation_Burst.json
+++ b/Hero Designer/Data/db/Other/_Pets.Martial_Manipulation_Burst.json
@@ -112,7 +112,6 @@
}
],
"FullSetName": "Pets.Martial_Manipulation_Burst",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Mine.json b/Hero Designer/Data/db/Other/_Pets.Mine.json
index e35fcb60..637bd938 100644
--- a/Hero Designer/Data/db/Other/_Pets.Mine.json
+++ b/Hero Designer/Data/db/Other/_Pets.Mine.json
@@ -275,7 +275,6 @@
}
],
"FullSetName": "Pets.Mine",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1417,7 +1416,6 @@
}
],
"FullSetName": "Pets.Mine",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1529,7 +1527,6 @@
}
],
"FullSetName": "Pets.Mine",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.MonkeyGas.json b/Hero Designer/Data/db/Other/_Pets.MonkeyGas.json
index 8c246815..e632533e 100644
--- a/Hero Designer/Data/db/Other/_Pets.MonkeyGas.json
+++ b/Hero Designer/Data/db/Other/_Pets.MonkeyGas.json
@@ -140,7 +140,6 @@
}
],
"FullSetName": "Pets.MonkeyGas",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Controller.json b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Controller.json
index e9e32c63..df97bfe6 100644
--- a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Controller.json
@@ -222,7 +222,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Controller",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -395,7 +395,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Controller",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Corruptor.json b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Corruptor.json
index 17c8792d..c6527539 100644
--- a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Corruptor.json
@@ -222,7 +222,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Corruptor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -395,7 +395,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Corruptor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Defender.json b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Defender.json
index 4ad8b356..fa96c7bf 100644
--- a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Defender.json
@@ -222,7 +222,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Defender",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -395,7 +395,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Defender",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Mastermind.json
index 83300eff..7d9f9a7d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Nature_Affinity_Mastermind.json
@@ -222,7 +222,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Mastermind",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -395,7 +395,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Nature_Affinity_Mastermind",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.NemesisBang.json b/Hero Designer/Data/db/Other/_Pets.NemesisBang.json
index 306e2645..c94a4b2a 100644
--- a/Hero Designer/Data/db/Other/_Pets.NemesisBang.json
+++ b/Hero Designer/Data/db/Other/_Pets.NemesisBang.json
@@ -103,7 +103,6 @@
}
],
"FullSetName": "Pets.NemesisBang",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.NemesisGas.json b/Hero Designer/Data/db/Other/_Pets.NemesisGas.json
index b696b0a5..2b3f42c2 100644
--- a/Hero Designer/Data/db/Other/_Pets.NemesisGas.json
+++ b/Hero Designer/Data/db/Other/_Pets.NemesisGas.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Pets.NemesisGas",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.OilSlickBurn.json b/Hero Designer/Data/db/Other/_Pets.OilSlickBurn.json
index 081f9d7e..339a8f41 100644
--- a/Hero Designer/Data/db/Other/_Pets.OilSlickBurn.json
+++ b/Hero Designer/Data/db/Other/_Pets.OilSlickBurn.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.OilSlickBurn",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -195,7 +194,6 @@
}
],
"FullSetName": "Pets.OilSlickBurn",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -279,7 +277,6 @@
}
],
"FullSetName": "Pets.OilSlickBurn",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -361,7 +358,6 @@
}
],
"FullSetName": "Pets.OilSlickBurn",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.OilSlickOil.json b/Hero Designer/Data/db/Other/_Pets.OilSlickOil.json
index 07717fdc..50a49be3 100644
--- a/Hero Designer/Data/db/Other/_Pets.OilSlickOil.json
+++ b/Hero Designer/Data/db/Other/_Pets.OilSlickOil.json
@@ -317,7 +317,6 @@
}
],
"FullSetName": "Pets.OilSlickOil",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -405,7 +404,6 @@
}
],
"FullSetName": "Pets.OilSlickOil",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -525,7 +523,6 @@
}
],
"FullSetName": "Pets.OilSlickOil",
- "CastTime": 0.132,
"AoEModifier": 1.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.OilSlickTarget.json b/Hero Designer/Data/db/Other/_Pets.OilSlickTarget.json
index b985712c..677ab1fc 100644
--- a/Hero Designer/Data/db/Other/_Pets.OilSlickTarget.json
+++ b/Hero Designer/Data/db/Other/_Pets.OilSlickTarget.json
@@ -137,7 +137,6 @@
}
],
"FullSetName": "Pets.OilSlickTarget",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -225,7 +224,6 @@
}
],
"FullSetName": "Pets.OilSlickTarget",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1563,7 +1561,6 @@
}
],
"FullSetName": "Pets.OilSlickTarget",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1646,7 +1643,6 @@
}
],
"FullSetName": "Pets.OilSlickTarget",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Overpowering_Presence.json b/Hero Designer/Data/db/Other/_Pets.Overpowering_Presence.json
index 5b551fc4..382ccb69 100644
--- a/Hero Designer/Data/db/Other/_Pets.Overpowering_Presence.json
+++ b/Hero Designer/Data/db/Other/_Pets.Overpowering_Presence.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Pets.Overpowering_Presence",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -228,7 +227,6 @@
}
],
"FullSetName": "Pets.Overpowering_Presence",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -310,7 +308,6 @@
}
],
"FullSetName": "Pets.Overpowering_Presence",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.PPD_Hard_Suit.json b/Hero Designer/Data/db/Other/_Pets.PPD_Hard_Suit.json
index 0eda0050..426e8618 100644
--- a/Hero Designer/Data/db/Other/_Pets.PPD_Hard_Suit.json
+++ b/Hero Designer/Data/db/Other/_Pets.PPD_Hard_Suit.json
@@ -172,7 +172,6 @@
}
],
"FullSetName": "Pets.PPD_Hard_Suit",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -267,7 +266,7 @@
}
],
"FullSetName": "Pets.PPD_Hard_Suit",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -466,7 +465,7 @@
}
],
"FullSetName": "Pets.PPD_Hard_Suit",
- "CastTime": 0.792,
+ "CastTime": 0.57,
"AoEModifier": 1.0
},
{
@@ -563,7 +562,7 @@
}
],
"FullSetName": "Pets.PPD_Hard_Suit",
- "CastTime": 4.092,
+ "CastTime": 3.87,
"AoEModifier": 1.99862158
},
{
@@ -762,7 +761,7 @@
}
],
"FullSetName": "Pets.PPD_Hard_Suit",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.PPD_Sergeant.json b/Hero Designer/Data/db/Other/_Pets.PPD_Sergeant.json
index 354d56af..cc7799c2 100644
--- a/Hero Designer/Data/db/Other/_Pets.PPD_Sergeant.json
+++ b/Hero Designer/Data/db/Other/_Pets.PPD_Sergeant.json
@@ -172,7 +172,6 @@
}
],
"FullSetName": "Pets.PPD_Sergeant",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -368,7 +367,7 @@
}
],
"FullSetName": "Pets.PPD_Sergeant",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -567,7 +566,7 @@
}
],
"FullSetName": "Pets.PPD_Sergeant",
- "CastTime": 0.792,
+ "CastTime": 0.57,
"AoEModifier": 1.0
},
{
@@ -765,7 +764,7 @@
}
],
"FullSetName": "Pets.PPD_Sergeant",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.25499558
},
{
@@ -961,7 +960,7 @@
}
],
"FullSetName": "Pets.PPD_Sergeant",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Phantasm.json b/Hero Designer/Data/db/Other/_Pets.Phantasm.json
index 67b64e8c..41b10b29 100644
--- a/Hero Designer/Data/db/Other/_Pets.Phantasm.json
+++ b/Hero Designer/Data/db/Other/_Pets.Phantasm.json
@@ -186,7 +186,7 @@
}
],
"FullSetName": "Pets.Phantasm",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -276,7 +276,7 @@
}
],
"FullSetName": "Pets.Phantasm",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -443,7 +443,7 @@
}
],
"FullSetName": "Pets.Phantasm",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -625,7 +625,6 @@
}
],
"FullSetName": "Pets.Phantasm",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -676,7 +675,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Pets.Phantasm",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -860,7 +859,6 @@
}
],
"FullSetName": "Pets.Phantasm",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Phoenix.json b/Hero Designer/Data/db/Other/_Pets.Phoenix.json
index de8dbf1c..010218c8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Phoenix.json
+++ b/Hero Designer/Data/db/Other/_Pets.Phoenix.json
@@ -258,7 +258,6 @@
}
],
"FullSetName": "Pets.Phoenix",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow.json b/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow.json
index 08d0d93e..7e9e3a31 100644
--- a/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow.json
+++ b/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow.json
@@ -1065,7 +1065,6 @@
}
],
"FullSetName": "Pets.PoisonGasArrow",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -1115,7 +1114,6 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.PoisonGasArrow",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow_Controller.json b/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow_Controller.json
index 25d439e8..1ec427fc 100644
--- a/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.PoisonGasArrow_Controller.json
@@ -71,7 +71,6 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.PoisonGasArrow_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -121,7 +120,6 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.PoisonGasArrow_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.PoisonGasGrenade.json b/Hero Designer/Data/db/Other/_Pets.PoisonGasGrenade.json
index efb37552..c6e5fb6d 100644
--- a/Hero Designer/Data/db/Other/_Pets.PoisonGasGrenade.json
+++ b/Hero Designer/Data/db/Other/_Pets.PoisonGasGrenade.json
@@ -489,7 +489,6 @@
}
],
"FullSetName": "Pets.PoisonGasGrenade",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Pool_Leadership_VictoryRush.json b/Hero Designer/Data/db/Other/_Pets.Pool_Leadership_VictoryRush.json
index 277c130b..932438c0 100644
--- a/Hero Designer/Data/db/Other/_Pets.Pool_Leadership_VictoryRush.json
+++ b/Hero Designer/Data/db/Other/_Pets.Pool_Leadership_VictoryRush.json
@@ -149,7 +149,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
},
{
@@ -276,7 +275,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
},
{
@@ -403,7 +401,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
},
{
@@ -530,7 +527,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
},
{
@@ -657,7 +653,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
},
{
@@ -784,7 +779,6 @@
}
],
"FullSetName": "Pets.Pool_Leadership_VictoryRush",
- "CastTime": 0.132,
"AoEModifier": 23.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Pool_Medicine_AidOther.json b/Hero Designer/Data/db/Other/_Pets.Pool_Medicine_AidOther.json
index 03882c30..12ec8dcd 100644
--- a/Hero Designer/Data/db/Other/_Pets.Pool_Medicine_AidOther.json
+++ b/Hero Designer/Data/db/Other/_Pets.Pool_Medicine_AidOther.json
@@ -116,7 +116,7 @@
}
],
"FullSetName": "Pets.Pool_Medicine_AidOther",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 1.0
},
{
@@ -217,7 +217,7 @@
}
],
"FullSetName": "Pets.Pool_Medicine_AidOther",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Quartz.json b/Hero Designer/Data/db/Other/_Pets.Quartz.json
index 086725a2..c9ddb3db 100644
--- a/Hero Designer/Data/db/Other/_Pets.Quartz.json
+++ b/Hero Designer/Data/db/Other/_Pets.Quartz.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Quartz",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -718,7 +717,7 @@
}
],
"FullSetName": "Pets.Quartz",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Quicksand.json b/Hero Designer/Data/db/Other/_Pets.Quicksand.json
index 39e72fe6..d758d337 100644
--- a/Hero Designer/Data/db/Other/_Pets.Quicksand.json
+++ b/Hero Designer/Data/db/Other/_Pets.Quicksand.json
@@ -277,7 +277,6 @@
}
],
"FullSetName": "Pets.Quicksand",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RadiationCloud_Visual.json b/Hero Designer/Data/db/Other/_Pets.RadiationCloud_Visual.json
index 41e3a097..f8d5f324 100644
--- a/Hero Designer/Data/db/Other/_Pets.RadiationCloud_Visual.json
+++ b/Hero Designer/Data/db/Other/_Pets.RadiationCloud_Visual.json
@@ -157,7 +157,6 @@
}
],
"FullSetName": "Pets.RadiationCloud_Visual",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Radiation_Melee.json b/Hero Designer/Data/db/Other/_Pets.Radiation_Melee.json
index f8c67012..6774c498 100644
--- a/Hero Designer/Data/db/Other/_Pets.Radiation_Melee.json
+++ b/Hero Designer/Data/db/Other/_Pets.Radiation_Melee.json
@@ -277,7 +277,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Radiation_Melee",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -359,7 +358,6 @@
}
],
"FullSetName": "Pets.Radiation_Melee",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon.json b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon.json
index 1d1010ee..973d40ac 100644
--- a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon.json
+++ b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon.json
@@ -101,7 +101,6 @@
}
],
"FullSetName": "Pets.Raid_Disruptor_Pylon",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Create.json b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Create.json
index 89ccfb6c..25286ead 100644
--- a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Create.json
+++ b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Create.json
@@ -134,7 +134,6 @@
}
],
"FullSetName": "Pets.Raid_Disruptor_Pylon_Create",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Kill.json b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Kill.json
index d6023fcd..15410c17 100644
--- a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Kill.json
+++ b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Kill.json
@@ -130,7 +130,6 @@
}
],
"FullSetName": "Pets.Raid_Disruptor_Pylon_Kill",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Nuke.json b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Nuke.json
index 68112d03..1d3a41e9 100644
--- a/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Nuke.json
+++ b/Hero Designer/Data/db/Other/_Pets.Raid_Disruptor_Pylon_Nuke.json
@@ -132,7 +132,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Raid_Disruptor_Pylon_Nuke",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofArrows.json b/Hero Designer/Data/db/Other/_Pets.RainofArrows.json
index 54bf049c..ccc50a47 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofArrows.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofArrows.json
@@ -179,7 +179,6 @@
}
],
"FullSetName": "Pets.RainofArrows",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -267,7 +266,6 @@
}
],
"FullSetName": "Pets.RainofArrows",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Critter.json b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Critter.json
index 08e690c3..8512b719 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Critter.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Critter.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Critter",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -199,7 +198,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Critter",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Defender.json b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Defender.json
index 1b39dee0..adc0694c 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Defender.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -232,7 +231,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Sentinel.json
index 68215ebe..5faa5d20 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Sentinel.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -263,7 +262,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Visual.json b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Visual.json
index 306c03ee..6b0544af 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofArrows_Visual.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofArrows_Visual.json
@@ -99,7 +99,6 @@
}
],
"FullSetName": "Pets.RainofArrows_Visual",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofFire.json b/Hero Designer/Data/db/Other/_Pets.RainofFire.json
index 3770eac0..54c7d70a 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofFire.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofFire.json
@@ -351,7 +351,6 @@
}
],
"FullSetName": "Pets.RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -439,7 +438,6 @@
}
],
"FullSetName": "Pets.RainofFire",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RainofFire_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.RainofFire_Sentinel.json
index 0b40b37d..5ad8572c 100644
--- a/Hero Designer/Data/db/Other/_Pets.RainofFire_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.RainofFire_Sentinel.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.RainofFire_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -437,7 +436,6 @@
}
],
"FullSetName": "Pets.RainofFire_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ResistAll.json b/Hero Designer/Data/db/Other/_Pets.ResistAll.json
index aa25307d..182a8eae 100644
--- a/Hero Designer/Data/db/Other/_Pets.ResistAll.json
+++ b/Hero Designer/Data/db/Other/_Pets.ResistAll.json
@@ -134,7 +134,6 @@
}
],
"FullSetName": "Pets.ResistAll",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ResistAllFast.json b/Hero Designer/Data/db/Other/_Pets.ResistAllFast.json
index 4372212b..d351e16b 100644
--- a/Hero Designer/Data/db/Other/_Pets.ResistAllFast.json
+++ b/Hero Designer/Data/db/Other/_Pets.ResistAllFast.json
@@ -200,7 +200,6 @@
}
],
"FullSetName": "Pets.ResistAllFast",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly.json b/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly.json
index 1fb1b8b1..599ee508 100644
--- a/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly.json
+++ b/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly.json
@@ -101,7 +101,6 @@
}
],
"FullSetName": "Pets.ResistAll_NoFly",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly_Fast.json b/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly_Fast.json
index 6679337a..caee71e7 100644
--- a/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly_Fast.json
+++ b/Hero Designer/Data/db/Other/_Pets.ResistAll_NoFly_Fast.json
@@ -134,7 +134,6 @@
}
],
"FullSetName": "Pets.ResistAll_NoFly_Fast",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Resistance_Rifle.json b/Hero Designer/Data/db/Other/_Pets.Resistance_Rifle.json
index a2d0bad3..255447d9 100644
--- a/Hero Designer/Data/db/Other/_Pets.Resistance_Rifle.json
+++ b/Hero Designer/Data/db/Other/_Pets.Resistance_Rifle.json
@@ -172,7 +172,6 @@
}
],
"FullSetName": "Pets.Resistance_Rifle",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -339,7 +338,7 @@
}
],
"FullSetName": "Pets.Resistance_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -466,7 +465,7 @@
}
],
"FullSetName": "Pets.Resistance_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -740,7 +739,7 @@
}
],
"FullSetName": "Pets.Resistance_Rifle",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -873,7 +872,7 @@
}
],
"FullSetName": "Pets.Resistance_Rifle",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.RiktiPortal.json b/Hero Designer/Data/db/Other/_Pets.RiktiPortal.json
index 86df7d92..7c2f3a51 100644
--- a/Hero Designer/Data/db/Other/_Pets.RiktiPortal.json
+++ b/Hero Designer/Data/db/Other/_Pets.RiktiPortal.json
@@ -442,7 +442,6 @@
}
],
"FullSetName": "Pets.RiktiPortal",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -528,7 +527,6 @@
}
],
"FullSetName": "Pets.RiktiPortal",
- "CastTime": 0.132,
"AoEModifier": 1.6
},
{
@@ -1714,7 +1712,6 @@
}
],
"FullSetName": "Pets.RiktiPortal",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Savage_Assault_Feral_Charge.json b/Hero Designer/Data/db/Other/_Pets.Savage_Assault_Feral_Charge.json
index f12a94c7..493c1334 100644
--- a/Hero Designer/Data/db/Other/_Pets.Savage_Assault_Feral_Charge.json
+++ b/Hero Designer/Data/db/Other/_Pets.Savage_Assault_Feral_Charge.json
@@ -147,7 +147,7 @@
}
],
"FullSetName": "Pets.Savage_Assault_Feral_Charge",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Savage_Leap.json b/Hero Designer/Data/db/Other/_Pets.Savage_Leap.json
index 67fbb126..47243ae0 100644
--- a/Hero Designer/Data/db/Other/_Pets.Savage_Leap.json
+++ b/Hero Designer/Data/db/Other/_Pets.Savage_Leap.json
@@ -81,7 +81,6 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.Savage_Leap",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Savage_Melee_Savage_Leap.json b/Hero Designer/Data/db/Other/_Pets.Savage_Melee_Savage_Leap.json
index 6007d5b5..b10c22de 100644
--- a/Hero Designer/Data/db/Other/_Pets.Savage_Melee_Savage_Leap.json
+++ b/Hero Designer/Data/db/Other/_Pets.Savage_Melee_Savage_Leap.json
@@ -443,7 +443,6 @@
}
],
"FullSetName": "Pets.Savage_Melee_Savage_Leap",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Scrapper_Savage_Melee.json b/Hero Designer/Data/db/Other/_Pets.Scrapper_Savage_Melee.json
index a17f2eb9..e4918677 100644
--- a/Hero Designer/Data/db/Other/_Pets.Scrapper_Savage_Melee.json
+++ b/Hero Designer/Data/db/Other/_Pets.Scrapper_Savage_Melee.json
@@ -428,7 +428,7 @@
}
],
"FullSetName": "Pets.Scrapper_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 2.2
},
{
@@ -869,7 +869,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Scrapper_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Shivan_Summon_FX.json b/Hero Designer/Data/db/Other/_Pets.Shivan_Summon_FX.json
index 291f4dbc..264f80ad 100644
--- a/Hero Designer/Data/db/Other/_Pets.Shivan_Summon_FX.json
+++ b/Hero Designer/Data/db/Other/_Pets.Shivan_Summon_FX.json
@@ -96,7 +96,6 @@
}
],
"FullSetName": "Pets.Shivan_Summon_FX",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ShockCont.json b/Hero Designer/Data/db/Other/_Pets.ShockCont.json
index 248b30a0..c21ee45f 100644
--- a/Hero Designer/Data/db/Other/_Pets.ShockCont.json
+++ b/Hero Designer/Data/db/Other/_Pets.ShockCont.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Pets.ShockCont",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ShockDef.json b/Hero Designer/Data/db/Other/_Pets.ShockDef.json
index 7781fe7e..996d2a69 100644
--- a/Hero Designer/Data/db/Other/_Pets.ShockDef.json
+++ b/Hero Designer/Data/db/Other/_Pets.ShockDef.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Pets.ShockDef",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ShockMM.json b/Hero Designer/Data/db/Other/_Pets.ShockMM.json
index 0a5d0e56..bafd8bd3 100644
--- a/Hero Designer/Data/db/Other/_Pets.ShockMM.json
+++ b/Hero Designer/Data/db/Other/_Pets.ShockMM.json
@@ -254,7 +254,6 @@
}
],
"FullSetName": "Pets.ShockMM",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Singularity.json b/Hero Designer/Data/db/Other/_Pets.Singularity.json
index 1e8d4343..48b889e5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Singularity.json
+++ b/Hero Designer/Data/db/Other/_Pets.Singularity.json
@@ -151,7 +151,6 @@
}
],
"FullSetName": "Pets.Singularity",
- "CastTime": 0.132,
"AoEModifier": 2.35000014
},
{
@@ -542,7 +541,7 @@
}
],
"FullSetName": "Pets.Singularity",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1036,7 +1035,7 @@
}
],
"FullSetName": "Pets.Singularity",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -1204,7 +1203,7 @@
}
],
"FullSetName": "Pets.Singularity",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"AoEModifier": 1.0
},
{
@@ -1983,7 +1982,7 @@
}
],
"FullSetName": "Pets.Singularity",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SiphonPower.json b/Hero Designer/Data/db/Other/_Pets.SiphonPower.json
index f480d844..cd1f1cba 100644
--- a/Hero Designer/Data/db/Other/_Pets.SiphonPower.json
+++ b/Hero Designer/Data/db/Other/_Pets.SiphonPower.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.SiphonPower",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SiphonPower_Controller.json b/Hero Designer/Data/db/Other/_Pets.SiphonPower_Controller.json
index 5de714f6..6c929284 100644
--- a/Hero Designer/Data/db/Other/_Pets.SiphonPower_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.SiphonPower_Controller.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.SiphonPower_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SiphonPower_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.SiphonPower_Mastermind.json
index fbc3c3db..82e07fdf 100644
--- a/Hero Designer/Data/db/Other/_Pets.SiphonPower_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.SiphonPower_Mastermind.json
@@ -350,7 +350,6 @@
}
],
"FullSetName": "Pets.SiphonPower_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Sleet_Defender.json b/Hero Designer/Data/db/Other/_Pets.Sleet_Defender.json
index 2f071a79..bc599049 100644
--- a/Hero Designer/Data/db/Other/_Pets.Sleet_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Sleet_Defender.json
@@ -1647,7 +1647,6 @@
}
],
"FullSetName": "Pets.Sleet_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -1735,7 +1734,6 @@
}
],
"FullSetName": "Pets.Sleet_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Snowangel.json b/Hero Designer/Data/db/Other/_Pets.Snowangel.json
index 24c37bac..056e271d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Snowangel.json
+++ b/Hero Designer/Data/db/Other/_Pets.Snowangel.json
@@ -333,7 +333,6 @@
}
],
"FullSetName": "Pets.Snowangel",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow.json b/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow.json
index 8d50f4f6..8a086b60 100644
--- a/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow.json
+++ b/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow.json
@@ -631,7 +631,6 @@
}
],
"FullSetName": "Pets.SonicDebuffArrow",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow_Controller.json b/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow_Controller.json
index bf3119ef..b17d71c9 100644
--- a/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.SonicDebuffArrow_Controller.json
@@ -343,7 +343,6 @@
}
],
"FullSetName": "Pets.SonicDebuffArrow_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.SoulAbsorptionBuff.json b/Hero Designer/Data/db/Other/_Pets.SoulAbsorptionBuff.json
index 7e234c56..7507a947 100644
--- a/Hero Designer/Data/db/Other/_Pets.SoulAbsorptionBuff.json
+++ b/Hero Designer/Data/db/Other/_Pets.SoulAbsorptionBuff.json
@@ -215,7 +215,6 @@
}
],
"FullSetName": "Pets.SoulAbsorptionBuff",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Spring_Attack.json b/Hero Designer/Data/db/Other/_Pets.Spring_Attack.json
index 120f2632..e97d166a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Spring_Attack.json
+++ b/Hero Designer/Data/db/Other/_Pets.Spring_Attack.json
@@ -626,7 +626,6 @@
}
],
"FullSetName": "Pets.Spring_Attack",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Static_Field_Controller.json b/Hero Designer/Data/db/Other/_Pets.Static_Field_Controller.json
index d679b250..81072ea7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Static_Field_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Static_Field_Controller.json
@@ -478,7 +478,6 @@
}
],
"FullSetName": "Pets.Static_Field_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Static_Field_End_Recovery_Controller.json b/Hero Designer/Data/db/Other/_Pets.Static_Field_End_Recovery_Controller.json
index 758681a3..85e21e17 100644
--- a/Hero Designer/Data/db/Other/_Pets.Static_Field_End_Recovery_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Static_Field_End_Recovery_Controller.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Pets.Static_Field_End_Recovery_Controller",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.StickyArrow.json b/Hero Designer/Data/db/Other/_Pets.StickyArrow.json
index dead77fc..90e43b0e 100644
--- a/Hero Designer/Data/db/Other/_Pets.StickyArrow.json
+++ b/Hero Designer/Data/db/Other/_Pets.StickyArrow.json
@@ -277,7 +277,6 @@
}
],
"FullSetName": "Pets.StickyArrow",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -389,7 +388,6 @@
}
],
"FullSetName": "Pets.StickyArrow",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.StickyArrow_Blaster.json b/Hero Designer/Data/db/Other/_Pets.StickyArrow_Blaster.json
index 4004917b..bb63c255 100644
--- a/Hero Designer/Data/db/Other/_Pets.StickyArrow_Blaster.json
+++ b/Hero Designer/Data/db/Other/_Pets.StickyArrow_Blaster.json
@@ -277,7 +277,6 @@
}
],
"FullSetName": "Pets.StickyArrow_Blaster",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -388,7 +387,6 @@
}
],
"FullSetName": "Pets.StickyArrow_Blaster",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -479,7 +477,6 @@
}
],
"FullSetName": "Pets.StickyArrow_Blaster",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Stone.json b/Hero Designer/Data/db/Other/_Pets.Stone.json
index a024e83d..0d9142d1 100644
--- a/Hero Designer/Data/db/Other/_Pets.Stone.json
+++ b/Hero Designer/Data/db/Other/_Pets.Stone.json
@@ -229,7 +229,7 @@
}
],
"FullSetName": "Pets.Stone",
- "CastTime": 0.792,
+ "CastTime": 0.57,
"AoEModifier": 1.0
},
{
@@ -402,7 +402,7 @@
}
],
"FullSetName": "Pets.Stone",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
},
{
@@ -1013,7 +1013,7 @@
}
],
"FullSetName": "Pets.Stone",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
},
{
@@ -1223,7 +1223,7 @@
}
],
"FullSetName": "Pets.Stone",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -1334,7 +1334,7 @@
"ForcedClass": "Class_Minion_Pets",
"Effects": [],
"FullSetName": "Pets.Stone",
- "CastTime": 3.036,
+ "CastTime": 2.904,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Superior_Defenders_Bastion_Proc.json b/Hero Designer/Data/db/Other/_Pets.Superior_Defenders_Bastion_Proc.json
index 2c1eeb26..5e06b8ec 100644
--- a/Hero Designer/Data/db/Other/_Pets.Superior_Defenders_Bastion_Proc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Superior_Defenders_Bastion_Proc.json
@@ -106,7 +106,6 @@
}
],
"FullSetName": "Pets.Superior_Defenders_Bastion_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Superior_Vigilant_Assault_Proc.json b/Hero Designer/Data/db/Other/_Pets.Superior_Vigilant_Assault_Proc.json
index 3cd3e2f4..10d6528a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Superior_Vigilant_Assault_Proc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Superior_Vigilant_Assault_Proc.json
@@ -132,7 +132,6 @@
}
],
"FullSetName": "Pets.Superior_Vigilant_Assault_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.TPFoeTaunt.json b/Hero Designer/Data/db/Other/_Pets.TPFoeTaunt.json
index 4b9d784d..b55bcfa2 100644
--- a/Hero Designer/Data/db/Other/_Pets.TPFoeTaunt.json
+++ b/Hero Designer/Data/db/Other/_Pets.TPFoeTaunt.json
@@ -137,7 +137,6 @@
}
],
"FullSetName": "Pets.TPFoeTaunt",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tanker_Savage_Melee.json b/Hero Designer/Data/db/Other/_Pets.Tanker_Savage_Melee.json
index 35a1d747..f42ae85d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tanker_Savage_Melee.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tanker_Savage_Melee.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Pets.Tanker_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 2.2
},
{
@@ -905,7 +905,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Tanker_Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.TarPatch.json b/Hero Designer/Data/db/Other/_Pets.TarPatch.json
index 6b97841b..3004da9f 100644
--- a/Hero Designer/Data/db/Other/_Pets.TarPatch.json
+++ b/Hero Designer/Data/db/Other/_Pets.TarPatch.json
@@ -794,7 +794,6 @@
}
],
"FullSetName": "Pets.TarPatch",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Target.json b/Hero Designer/Data/db/Other/_Pets.Target.json
index 442b57ad..9ecf93fc 100644
--- a/Hero Designer/Data/db/Other/_Pets.Target.json
+++ b/Hero Designer/Data/db/Other/_Pets.Target.json
@@ -431,7 +431,6 @@
}
],
"FullSetName": "Pets.Target",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Team_Transport.json b/Hero Designer/Data/db/Other/_Pets.Team_Transport.json
index ddc78036..02f08779 100644
--- a/Hero Designer/Data/db/Other/_Pets.Team_Transport.json
+++ b/Hero Designer/Data/db/Other/_Pets.Team_Transport.json
@@ -107,7 +107,7 @@
}
],
"FullSetName": "Pets.Team_Transport",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 3.25
},
{
@@ -190,7 +190,6 @@
}
],
"FullSetName": "Pets.Team_Transport",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Acc.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Acc.json
index fd4fcbac..40f82232 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Acc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Acc.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Buff_Acc",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Dam.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Dam.json
index 95b91e2a..c7e1143c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Dam.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Dam.json
@@ -351,7 +351,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Buff_Dam",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Recovery.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Recovery.json
index b228c19e..db550530 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Recovery.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Buff_Recovery",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Regeneration.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Regeneration.json
index 1f10c56c..fcc17b85 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Regeneration.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Buff_Regeneration.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Buff_Regeneration",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Damage.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Damage.json
index e93a5ae1..74fa9b70 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Damage.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Damage.json
@@ -206,7 +206,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Damage",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Acc.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Acc.json
index 652923f7..c0d2e9b7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Acc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Acc.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_DeBuff_Acc",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Dam.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Dam.json
index 8d0caa58..9d6745b3 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Dam.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Dam.json
@@ -358,7 +358,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_DeBuff_Dam",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Recovery.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Recovery.json
index af192ea9..45d3ece4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Recovery.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Recovery.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_DeBuff_Recovery",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Regeneration.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Regeneration.json
index 780084b7..18bd00f6 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Regeneration.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_DeBuff_Regeneration.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_DeBuff_Regeneration",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Haste.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Haste.json
index 4ab77d1b..b916fe2d 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Haste.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Haste.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Haste",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Inherent.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Inherent.json
index 18d7d31f..a1ae9b08 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Inherent.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Inherent.json
@@ -862,7 +862,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Inherent",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Slow.json b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Slow.json
index 7e02aa24..a470f813 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Slow.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tech_Lab_Slow.json
@@ -250,7 +250,6 @@
}
],
"FullSetName": "Pets.Tech_Lab_Slow",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.TempPower_Amy_Jonsson_Pet.json b/Hero Designer/Data/db/Other/_Pets.TempPower_Amy_Jonsson_Pet.json
index a65128a3..51595daf 100644
--- a/Hero Designer/Data/db/Other/_Pets.TempPower_Amy_Jonsson_Pet.json
+++ b/Hero Designer/Data/db/Other/_Pets.TempPower_Amy_Jonsson_Pet.json
@@ -96,7 +96,6 @@
}
],
"FullSetName": "Pets.TempPower_Amy_Jonsson_Pet",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.TempPower_Warwolf_Wistel_Pet.json b/Hero Designer/Data/db/Other/_Pets.TempPower_Warwolf_Wistel_Pet.json
index 48499c29..025ba1ea 100644
--- a/Hero Designer/Data/db/Other/_Pets.TempPower_Warwolf_Wistel_Pet.json
+++ b/Hero Designer/Data/db/Other/_Pets.TempPower_Warwolf_Wistel_Pet.json
@@ -96,7 +96,6 @@
}
],
"FullSetName": "Pets.TempPower_Warwolf_Wistel_Pet",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Terror.json b/Hero Designer/Data/db/Other/_Pets.Terror.json
index 8565741d..5122ea35 100644
--- a/Hero Designer/Data/db/Other/_Pets.Terror.json
+++ b/Hero Designer/Data/db/Other/_Pets.Terror.json
@@ -233,7 +233,6 @@
}
],
"FullSetName": "Pets.Terror",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -397,7 +396,6 @@
}
],
"FullSetName": "Pets.Terror",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -605,7 +603,7 @@
}
],
"FullSetName": "Pets.Terror",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.TestBurn.json b/Hero Designer/Data/db/Other/_Pets.TestBurn.json
index e570e815..00ae83e9 100644
--- a/Hero Designer/Data/db/Other/_Pets.TestBurn.json
+++ b/Hero Designer/Data/db/Other/_Pets.TestBurn.json
@@ -107,7 +107,6 @@
}
],
"FullSetName": "Pets.TestBurn",
- "CastTime": 0.132,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.ThunderStrikePunch.json b/Hero Designer/Data/db/Other/_Pets.ThunderStrikePunch.json
index cf1def16..569dae90 100644
--- a/Hero Designer/Data/db/Other/_Pets.ThunderStrikePunch.json
+++ b/Hero Designer/Data/db/Other/_Pets.ThunderStrikePunch.json
@@ -148,7 +148,6 @@
}
],
"FullSetName": "Pets.ThunderStrikePunch",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Titan_Weapons.json b/Hero Designer/Data/db/Other/_Pets.Titan_Weapons.json
index e767d175..a18ecd2a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Titan_Weapons.json
+++ b/Hero Designer/Data/db/Other/_Pets.Titan_Weapons.json
@@ -445,7 +445,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.61999214
},
{
@@ -761,7 +761,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.61999214
},
{
@@ -1143,7 +1143,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"AoEModifier": 1.61999214
},
{
@@ -1454,7 +1454,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -1831,7 +1831,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -2184,7 +2184,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -2768,7 +2768,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"AoEModifier": 1.0
},
{
@@ -3418,7 +3418,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"AoEModifier": 1.0
},
{
@@ -3766,7 +3766,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -4180,7 +4180,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.61999214
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Titan_Weapons_Tanker.json b/Hero Designer/Data/db/Other/_Pets.Titan_Weapons_Tanker.json
index cda4156e..d2acdf59 100644
--- a/Hero Designer/Data/db/Other/_Pets.Titan_Weapons_Tanker.json
+++ b/Hero Designer/Data/db/Other/_Pets.Titan_Weapons_Tanker.json
@@ -709,7 +709,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.61999214
},
{
@@ -1074,7 +1074,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.61999214
},
{
@@ -1505,7 +1505,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"AoEModifier": 1.61999214
},
{
@@ -1834,7 +1834,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 2.35000014
},
{
@@ -2229,7 +2229,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 2.35000014
},
{
@@ -2846,7 +2846,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -3448,7 +3448,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"AoEModifier": 3.25
},
{
@@ -4116,7 +4116,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"AoEModifier": 3.25
},
{
@@ -4480,7 +4480,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -4910,7 +4910,7 @@
}
],
"FullSetName": "Pets.Titan_Weapons_Tanker",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.61999214
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tornado.json b/Hero Designer/Data/db/Other/_Pets.Tornado.json
index da09a702..2e9552d1 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tornado.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tornado.json
@@ -336,7 +336,6 @@
}
],
"FullSetName": "Pets.Tornado",
- "CastTime": 0.132,
"AoEModifier": 2.05
},
{
@@ -520,7 +519,6 @@
}
],
"FullSetName": "Pets.Tornado",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -604,7 +602,6 @@
}
],
"FullSetName": "Pets.Tornado",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -691,7 +688,6 @@
}
],
"FullSetName": "Pets.Tornado",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transference.json b/Hero Designer/Data/db/Other/_Pets.Transference.json
index 490949fd..eb19faa8 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transference.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transference.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Pets.Transference",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transference_Controller.json b/Hero Designer/Data/db/Other/_Pets.Transference_Controller.json
index 2a40e864..e101466e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transference_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transference_Controller.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Pets.Transference_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transference_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.Transference_Mastermind.json
index 04171f04..4dd34e08 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transference_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transference_Mastermind.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Pets.Transference_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transfusion.json b/Hero Designer/Data/db/Other/_Pets.Transfusion.json
index 2351b5c9..9b3d7066 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transfusion.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transfusion.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.Transfusion",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transfusion_Controller.json b/Hero Designer/Data/db/Other/_Pets.Transfusion_Controller.json
index e040ac9c..0416a05f 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transfusion_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transfusion_Controller.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.Transfusion_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transfusion_Mastermind.json b/Hero Designer/Data/db/Other/_Pets.Transfusion_Mastermind.json
index c18c0a62..f8a60e78 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transfusion_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transfusion_Mastermind.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.Transfusion_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Transponder.json b/Hero Designer/Data/db/Other/_Pets.Transponder.json
index 520bdd84..491fc0c7 100644
--- a/Hero Designer/Data/db/Other/_Pets.Transponder.json
+++ b/Hero Designer/Data/db/Other/_Pets.Transponder.json
@@ -203,7 +203,6 @@
}
],
"FullSetName": "Pets.Transponder",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -289,7 +288,6 @@
}
],
"FullSetName": "Pets.Transponder",
- "CastTime": 0.132,
"AoEModifier": 1.6
},
{
@@ -374,7 +372,6 @@
}
],
"FullSetName": "Pets.Transponder",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1559,7 +1556,6 @@
}
],
"FullSetName": "Pets.Transponder",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Controller.json b/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Controller.json
index a4aff508..7d404de6 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Controller.json
@@ -425,7 +425,6 @@
}
],
"FullSetName": "Pets.Traps_Acid_Mortar_Controller",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -1830,7 +1829,6 @@
}
],
"FullSetName": "Pets.Traps_Acid_Mortar_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Defender.json
index fa66859e..148fb635 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Acid_Mortar_Defender.json
@@ -426,7 +426,6 @@
}
],
"FullSetName": "Pets.Traps_Acid_Mortar_Defender",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -1832,7 +1831,6 @@
}
],
"FullSetName": "Pets.Traps_Acid_Mortar_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Bomb.json b/Hero Designer/Data/db/Other/_Pets.Traps_Bomb.json
index 850ff974..e8d653c4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Bomb.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Bomb.json
@@ -366,7 +366,6 @@
}
],
"FullSetName": "Pets.Traps_Bomb",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_FF_Generator_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_FF_Generator_Defender.json
index 47a143b2..164d4b28 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_FF_Generator_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_FF_Generator_Defender.json
@@ -639,7 +639,7 @@
}
],
"FullSetName": "Pets.Traps_FF_Generator_Defender",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 4.75
},
{
@@ -790,7 +790,6 @@
}
],
"FullSetName": "Pets.Traps_FF_Generator_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1337,7 +1336,6 @@
}
],
"FullSetName": "Pets.Traps_FF_Generator_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Gas_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Gas_Defender.json
index f6bde2dd..f16ab026 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Gas_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Gas_Defender.json
@@ -335,7 +335,6 @@
}
],
"FullSetName": "Pets.Traps_Poison_Gas_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -469,7 +468,6 @@
}
],
"FullSetName": "Pets.Traps_Poison_Gas_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -551,7 +549,6 @@
}
],
"FullSetName": "Pets.Traps_Poison_Gas_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Trap_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Trap_Defender.json
index ae429c3a..16f43210 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Trap_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Poison_Trap_Defender.json
@@ -167,7 +167,6 @@
}
],
"FullSetName": "Pets.Traps_Poison_Trap_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.4
},
{
@@ -1310,7 +1309,6 @@
}
],
"FullSetName": "Pets.Traps_Poison_Trap_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Controller.json b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Controller.json
index 076e2e70..1adea30c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Controller.json
@@ -579,7 +579,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Controller",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -729,7 +728,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -842,7 +840,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Controller",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Defender.json
index bebc0e3f..817d72cf 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker1_Defender.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker1_Defender",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Controller.json b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Controller.json
index 2d847081..4b81dcaf 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Controller.json
@@ -579,7 +579,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Controller",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -729,7 +728,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -842,7 +840,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Controller",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Defender.json
index b33a0271..f78e38f1 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker2_Defender.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker2_Defender",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker3_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker3_Defender.json
index c06ee769..05c135f4 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Seeker3_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Seeker3_Defender.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker3_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker3_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Pets.Traps_Seeker3_Defender",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Set_TimeBomb_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Set_TimeBomb_Defender.json
index 1f2bb8d5..cd6ff6ea 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Set_TimeBomb_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Set_TimeBomb_Defender.json
@@ -210,7 +210,7 @@
}
],
"FullSetName": "Pets.Traps_Set_TimeBomb_Defender",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_TimeBomb_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_TimeBomb_Defender.json
index efecc0b8..ba260f76 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_TimeBomb_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_TimeBomb_Defender.json
@@ -302,7 +302,6 @@
}
],
"FullSetName": "Pets.Traps_TimeBomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -1542,7 +1541,6 @@
}
],
"FullSetName": "Pets.Traps_TimeBomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1625,7 +1623,6 @@
}
],
"FullSetName": "Pets.Traps_TimeBomb_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Controller.json b/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Controller.json
index 7e75b3e3..3ce987f5 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Controller.json
@@ -212,7 +212,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Controller",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1354,7 +1353,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Controller",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1465,7 +1463,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Controller",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Defender.json b/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Defender.json
index 80f46ba6..0e119191 100644
--- a/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Traps_Trip_Mine_Defender.json
@@ -273,7 +273,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Defender",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1416,7 +1415,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1528,7 +1526,6 @@
}
],
"FullSetName": "Pets.Traps_Trip_Mine_Defender",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Tree.json b/Hero Designer/Data/db/Other/_Pets.Tree.json
index 6a6333de..ecd7e91e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Tree.json
+++ b/Hero Designer/Data/db/Other/_Pets.Tree.json
@@ -105,7 +105,6 @@
}
],
"FullSetName": "Pets.Tree",
- "CastTime": 0.132,
"AoEModifier": 8.5
},
{
@@ -718,7 +717,7 @@
}
],
"FullSetName": "Pets.Tree",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Turret.json b/Hero Designer/Data/db/Other/_Pets.Turret.json
index 928a4dae..48eaab9c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Turret.json
+++ b/Hero Designer/Data/db/Other/_Pets.Turret.json
@@ -116,7 +116,7 @@
}
],
"FullSetName": "Pets.Turret",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1457,7 +1457,6 @@
}
],
"FullSetName": "Pets.Turret",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1538,7 +1537,6 @@
}
],
"FullSetName": "Pets.Turret",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Twilight.json b/Hero Designer/Data/db/Other/_Pets.Twilight.json
index 6520d655..37e0ce02 100644
--- a/Hero Designer/Data/db/Other/_Pets.Twilight.json
+++ b/Hero Designer/Data/db/Other/_Pets.Twilight.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Pets.Twilight",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Vahzilok_Explode.json b/Hero Designer/Data/db/Other/_Pets.Vahzilok_Explode.json
index 57a935af..0d4f2b40 100644
--- a/Hero Designer/Data/db/Other/_Pets.Vahzilok_Explode.json
+++ b/Hero Designer/Data/db/Other/_Pets.Vahzilok_Explode.json
@@ -136,7 +136,6 @@
}
],
"FullSetName": "Pets.Vahzilok_Explode",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Venomous_Gas.json b/Hero Designer/Data/db/Other/_Pets.Venomous_Gas.json
index c7dbe1c2..af01d4c3 100644
--- a/Hero Designer/Data/db/Other/_Pets.Venomous_Gas.json
+++ b/Hero Designer/Data/db/Other/_Pets.Venomous_Gas.json
@@ -765,7 +765,6 @@
}
],
"FullSetName": "Pets.Venomous_Gas",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Vigilant_Assault_Proc.json b/Hero Designer/Data/db/Other/_Pets.Vigilant_Assault_Proc.json
index 6639f9c2..6297ae3f 100644
--- a/Hero Designer/Data/db/Other/_Pets.Vigilant_Assault_Proc.json
+++ b/Hero Designer/Data/db/Other/_Pets.Vigilant_Assault_Proc.json
@@ -132,7 +132,6 @@
}
],
"FullSetName": "Pets.Vigilant_Assault_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VillainBomb.json b/Hero Designer/Data/db/Other/_Pets.VillainBomb.json
index acee29b6..74dec835 100644
--- a/Hero Designer/Data/db/Other/_Pets.VillainBomb.json
+++ b/Hero Designer/Data/db/Other/_Pets.VillainBomb.json
@@ -175,7 +175,6 @@
}
],
"FullSetName": "Pets.VillainBomb",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -263,7 +262,6 @@
}
],
"FullSetName": "Pets.VillainBomb",
- "CastTime": 0.132,
"AoEModifier": 6.25
},
{
@@ -1509,7 +1507,6 @@
}
],
"FullSetName": "Pets.VillainBomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1592,7 +1589,6 @@
}
],
"FullSetName": "Pets.VillainBomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Villain_Mine.json b/Hero Designer/Data/db/Other/_Pets.Villain_Mine.json
index b7393043..7d7df011 100644
--- a/Hero Designer/Data/db/Other/_Pets.Villain_Mine.json
+++ b/Hero Designer/Data/db/Other/_Pets.Villain_Mine.json
@@ -215,7 +215,6 @@
}
],
"FullSetName": "Pets.Villain_Mine",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1456,7 +1455,6 @@
}
],
"FullSetName": "Pets.Villain_Mine",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1568,7 +1566,6 @@
}
],
"FullSetName": "Pets.Villain_Mine",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VolcanicGasses.json b/Hero Designer/Data/db/Other/_Pets.VolcanicGasses.json
index 80a78a69..a47d28a5 100644
--- a/Hero Designer/Data/db/Other/_Pets.VolcanicGasses.json
+++ b/Hero Designer/Data/db/Other/_Pets.VolcanicGasses.json
@@ -136,7 +136,6 @@
}
],
"FullSetName": "Pets.VolcanicGasses",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -293,7 +292,6 @@
}
],
"FullSetName": "Pets.VolcanicGasses",
- "CastTime": 0.132,
"AoEModifier": 5.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VolcanicGeyser.json b/Hero Designer/Data/db/Other/_Pets.VolcanicGeyser.json
index a775ac25..8af7df2c 100644
--- a/Hero Designer/Data/db/Other/_Pets.VolcanicGeyser.json
+++ b/Hero Designer/Data/db/Other/_Pets.VolcanicGeyser.json
@@ -154,7 +154,6 @@
}
],
"FullSetName": "Pets.VolcanicGeyser",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -272,7 +271,6 @@
}
],
"FullSetName": "Pets.VolcanicGeyser",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel.json
index 51e68ba7..3b3c0919 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel.json
@@ -257,7 +257,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -442,7 +442,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Corruptor.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Corruptor.json
index 82df5885..c4fe6e39 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Corruptor.json
@@ -260,7 +260,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Corruptor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -445,7 +445,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Critter.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Critter.json
index d2f518ee..5759d1e3 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Critter.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Critter.json
@@ -186,7 +186,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Critter",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -371,7 +371,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Critter",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Defender.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Defender.json
index 6eff70fc..276c69fe 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Defender.json
@@ -186,7 +186,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Defender",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -371,7 +371,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Defender",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Dominator.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Dominator.json
index 6aa98eab..f59f5846 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Dominator.json
@@ -186,7 +186,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Dominator",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -371,7 +371,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Dominator",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Sentinel.json
index 7d5f9ff7..29abe6c5 100644
--- a/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.VoltaicSentinel_Sentinel.json
@@ -256,7 +256,7 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Sentinel",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -440,7 +440,6 @@
}
],
"FullSetName": "Pets.VoltaicSentinel_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Warburg_Afterglow.json b/Hero Designer/Data/db/Other/_Pets.Warburg_Afterglow.json
index 0830c15f..63304240 100644
--- a/Hero Designer/Data/db/Other/_Pets.Warburg_Afterglow.json
+++ b/Hero Designer/Data/db/Other/_Pets.Warburg_Afterglow.json
@@ -104,7 +104,6 @@
}
],
"FullSetName": "Pets.Warburg_Afterglow",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Warburg_Biological.json b/Hero Designer/Data/db/Other/_Pets.Warburg_Biological.json
index d71e805b..577877cd 100644
--- a/Hero Designer/Data/db/Other/_Pets.Warburg_Biological.json
+++ b/Hero Designer/Data/db/Other/_Pets.Warburg_Biological.json
@@ -386,7 +386,7 @@
}
],
"FullSetName": "Pets.Warburg_Biological",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Warburg_Chemical.json b/Hero Designer/Data/db/Other/_Pets.Warburg_Chemical.json
index bcb4bd85..dbfba1cb 100644
--- a/Hero Designer/Data/db/Other/_Pets.Warburg_Chemical.json
+++ b/Hero Designer/Data/db/Other/_Pets.Warburg_Chemical.json
@@ -465,7 +465,6 @@
}
],
"FullSetName": "Pets.Warburg_Chemical",
- "CastTime": 0.132,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Warburg_Nuclear.json b/Hero Designer/Data/db/Other/_Pets.Warburg_Nuclear.json
index 4212a98b..680c6d62 100644
--- a/Hero Designer/Data/db/Other/_Pets.Warburg_Nuclear.json
+++ b/Hero Designer/Data/db/Other/_Pets.Warburg_Nuclear.json
@@ -320,7 +320,6 @@
}
],
"FullSetName": "Pets.Warburg_Nuclear",
- "CastTime": 0.132,
"AoEModifier": 10.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Blaster.json b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Blaster.json
index 80d7c282..eb1fac10 100644
--- a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Blaster.json
+++ b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Blaster.json
@@ -688,7 +688,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Blaster",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"AoEModifier": 1.0
},
{
@@ -1421,7 +1421,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Blaster",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Corruptor.json b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Corruptor.json
index a24e2283..3680280c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Corruptor.json
@@ -482,7 +482,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Corruptor",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"AoEModifier": 1.0
},
{
@@ -1009,7 +1009,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Corruptor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Defender.json b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Defender.json
index 0d5ad4df..dac353ad 100644
--- a/Hero Designer/Data/db/Other/_Pets.Water_Blast_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Water_Blast_Defender.json
@@ -408,7 +408,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Defender",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"AoEModifier": 1.0
},
{
@@ -894,7 +894,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pets.Water_Blast_Defender",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Blaster.json b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Blaster.json
index 5692ad42..a764e04c 100644
--- a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Blaster.json
+++ b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Blaster.json
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Blaster",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -449,7 +448,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Blaster",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Corruptor.json b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Corruptor.json
index 3b5135ff..69bc7255 100644
--- a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Corruptor.json
@@ -432,7 +432,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -520,7 +519,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Defender.json b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Defender.json
index 31920788..d66dc665 100644
--- a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Defender.json
+++ b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Defender.json
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -449,7 +448,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Defender",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Sentinel.json b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Sentinel.json
index eb1eaa11..3baf0847 100644
--- a/Hero Designer/Data/db/Other/_Pets.Whirlpool_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Pets.Whirlpool_Sentinel.json
@@ -360,7 +360,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -447,7 +446,6 @@
}
],
"FullSetName": "Pets.Whirlpool_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Wind_Control_HailOfDebris.json b/Hero Designer/Data/db/Other/_Pets.Wind_Control_HailOfDebris.json
index 61efd828..3314da4e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Wind_Control_HailOfDebris.json
+++ b/Hero Designer/Data/db/Other/_Pets.Wind_Control_HailOfDebris.json
@@ -665,7 +665,6 @@
}
],
"FullSetName": "Pets.Wind_Control_HailOfDebris",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Controller.json b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Controller.json
index 9034520e..874b1b8a 100644
--- a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Controller.json
+++ b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Controller.json
@@ -464,7 +464,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vacuum_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -635,7 +634,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vacuum_Controller",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Dominator.json b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Dominator.json
index eeeeff35..2b5c5a1e 100644
--- a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vacuum_Dominator.json
@@ -394,7 +394,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vacuum_Dominator",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -601,7 +600,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vacuum_Dominator",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vortex.json b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vortex.json
index 3abd7abc..cca163dd 100644
--- a/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vortex.json
+++ b/Hero Designer/Data/db/Other/_Pets.Wind_Control_Vortex.json
@@ -439,7 +439,7 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"AoEModifier": 1.0
},
{
@@ -720,7 +720,7 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 4.75
},
{
@@ -821,7 +821,7 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -936,7 +936,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1779,7 +1778,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1973,7 +1971,6 @@
}
],
"FullSetName": "Pets.Wind_Control_Vortex",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Pets.Zombie.json b/Hero Designer/Data/db/Other/_Pets.Zombie.json
index 21afe16e..39952417 100644
--- a/Hero Designer/Data/db/Other/_Pets.Zombie.json
+++ b/Hero Designer/Data/db/Other/_Pets.Zombie.json
@@ -472,7 +472,6 @@
}
],
"FullSetName": "Pets.Zombie",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -597,7 +596,7 @@
}
],
"FullSetName": "Pets.Zombie",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -685,7 +684,7 @@
}
],
"FullSetName": "Pets.Zombie",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -814,7 +813,7 @@
}
],
"FullSetName": "Pets.Zombie",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Pool.Fighting.json b/Hero Designer/Data/db/Other/_Pool.Fighting.json
index f9a7118b..39f5b5bc 100644
--- a/Hero Designer/Data/db/Other/_Pool.Fighting.json
+++ b/Hero Designer/Data/db/Other/_Pool.Fighting.json
@@ -2303,7 +2303,7 @@
}
],
"FullSetName": "Pool.Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4269,7 +4269,7 @@
}
],
"FullSetName": "Pool.Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5585,7 +5585,7 @@
}
],
"FullSetName": "Pool.Fighting",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -6025,7 +6025,7 @@
}
],
"FullSetName": "Pool.Fighting",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6885,7 +6885,7 @@
}
],
"FullSetName": "Pool.Fighting",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Flight.json b/Hero Designer/Data/db/Other/_Pool.Flight.json
index 930ac4d3..834b12f8 100644
--- a/Hero Designer/Data/db/Other/_Pool.Flight.json
+++ b/Hero Designer/Data/db/Other/_Pool.Flight.json
@@ -1071,7 +1071,7 @@
}
],
"FullSetName": "Pool.Flight",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1491,7 +1491,7 @@
}
],
"FullSetName": "Pool.Flight",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2533,7 +2533,6 @@
}
],
"FullSetName": "Pool.Flight",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3527,7 +3526,6 @@
}
],
"FullSetName": "Pool.Flight",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3800,7 +3798,7 @@
}
],
"FullSetName": "Pool.Flight",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 10.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Invisibility.json b/Hero Designer/Data/db/Other/_Pool.Invisibility.json
index a77f6029..9a82cb38 100644
--- a/Hero Designer/Data/db/Other/_Pool.Invisibility.json
+++ b/Hero Designer/Data/db/Other/_Pool.Invisibility.json
@@ -1803,7 +1803,7 @@
}
],
"FullSetName": "Pool.Invisibility",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2719,7 +2719,7 @@
}
],
"FullSetName": "Pool.Invisibility",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3638,7 +3638,7 @@
}
],
"FullSetName": "Pool.Invisibility",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4108,7 +4108,7 @@
}
],
"FullSetName": "Pool.Invisibility",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -4475,7 +4475,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Pool.Invisibility",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Leadership.json b/Hero Designer/Data/db/Other/_Pool.Leadership.json
index bf238dda..59a60be7 100644
--- a/Hero Designer/Data/db/Other/_Pool.Leadership.json
+++ b/Hero Designer/Data/db/Other/_Pool.Leadership.json
@@ -820,7 +820,7 @@
}
],
"FullSetName": "Pool.Leadership",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -1236,7 +1236,7 @@
}
],
"FullSetName": "Pool.Leadership",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -1572,7 +1572,7 @@
}
],
"FullSetName": "Pool.Leadership",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -2799,7 +2799,7 @@
}
],
"FullSetName": "Pool.Leadership",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 16.0
},
@@ -3121,7 +3121,7 @@
}
],
"FullSetName": "Pool.Leadership",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Leaping.json b/Hero Designer/Data/db/Other/_Pool.Leaping.json
index ec34f17c..fbd500ec 100644
--- a/Hero Designer/Data/db/Other/_Pool.Leaping.json
+++ b/Hero Designer/Data/db/Other/_Pool.Leaping.json
@@ -1003,7 +1003,7 @@
}
],
"FullSetName": "Pool.Leaping",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1362,7 +1362,6 @@
}
],
"FullSetName": "Pool.Leaping",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2379,7 +2378,7 @@
}
],
"FullSetName": "Pool.Leaping",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2856,7 +2855,7 @@
}
],
"FullSetName": "Pool.Leaping",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3028,7 +3027,7 @@
}
],
"FullSetName": "Pool.Leaping",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Manipulation.json b/Hero Designer/Data/db/Other/_Pool.Manipulation.json
index 8664c3da..cfea7e0c 100644
--- a/Hero Designer/Data/db/Other/_Pool.Manipulation.json
+++ b/Hero Designer/Data/db/Other/_Pool.Manipulation.json
@@ -160,7 +160,7 @@
}
],
"FullSetName": "Pool.Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -302,7 +302,7 @@
}
],
"FullSetName": "Pool.Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -619,7 +619,7 @@
}
],
"FullSetName": "Pool.Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -906,7 +906,7 @@
}
],
"FullSetName": "Pool.Manipulation",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1464,7 +1464,7 @@
}
],
"FullSetName": "Pool.Manipulation",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Medicine.json b/Hero Designer/Data/db/Other/_Pool.Medicine.json
index 93f76fba..0470cdbc 100644
--- a/Hero Designer/Data/db/Other/_Pool.Medicine.json
+++ b/Hero Designer/Data/db/Other/_Pool.Medicine.json
@@ -189,7 +189,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Pool.Medicine",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1425,7 +1425,7 @@
}
],
"FullSetName": "Pool.Medicine",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1616,7 +1616,7 @@
}
],
"FullSetName": "Pool.Medicine",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1800,7 +1800,7 @@
}
],
"FullSetName": "Pool.Medicine",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1964,7 +1964,7 @@
}
],
"FullSetName": "Pool.Medicine",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Sorcery.json b/Hero Designer/Data/db/Other/_Pool.Sorcery.json
index c33e6544..6c3b3d12 100644
--- a/Hero Designer/Data/db/Other/_Pool.Sorcery.json
+++ b/Hero Designer/Data/db/Other/_Pool.Sorcery.json
@@ -154,7 +154,7 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -548,7 +548,7 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1590,7 +1590,7 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2006,7 +2006,6 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2332,7 +2331,7 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3127,7 +3126,7 @@
}
],
"FullSetName": "Pool.Sorcery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Speed.json b/Hero Designer/Data/db/Other/_Pool.Speed.json
index e72a27fb..b3d64e0b 100644
--- a/Hero Designer/Data/db/Other/_Pool.Speed.json
+++ b/Hero Designer/Data/db/Other/_Pool.Speed.json
@@ -1208,7 +1208,7 @@
}
],
"FullSetName": "Pool.Speed",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1401,7 +1401,7 @@
}
],
"FullSetName": "Pool.Speed",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1612,7 +1612,6 @@
}
],
"FullSetName": "Pool.Speed",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3185,7 +3184,7 @@
}
],
"FullSetName": "Pool.Speed",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3452,7 +3451,7 @@
}
],
"FullSetName": "Pool.Speed",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.05
}
diff --git a/Hero Designer/Data/db/Other/_Pool.Teleportation.json b/Hero Designer/Data/db/Other/_Pool.Teleportation.json
index 0bca384c..fa2562df 100644
--- a/Hero Designer/Data/db/Other/_Pool.Teleportation.json
+++ b/Hero Designer/Data/db/Other/_Pool.Teleportation.json
@@ -157,7 +157,7 @@
}
],
"FullSetName": "Pool.Teleportation",
- "CastTime": 6.072,
+ "CastTime": 5.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Pool.Teleportation",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -898,7 +898,7 @@
}
],
"FullSetName": "Pool.Teleportation",
- "CastTime": 5.808,
+ "CastTime": 5.676,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1125,7 +1125,7 @@
}
],
"FullSetName": "Pool.Teleportation",
- "CastTime": 12.144,
+ "CastTime": 12.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1425,7 +1425,7 @@
}
],
"FullSetName": "Pool.Teleportation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Other/_Set_Bonus.PVP_Set_Bonus.json b/Hero Designer/Data/db/Other/_Set_Bonus.PVP_Set_Bonus.json
index cbda4255..77f28950 100644
--- a/Hero Designer/Data/db/Other/_Set_Bonus.PVP_Set_Bonus.json
+++ b/Hero Designer/Data/db/Other/_Set_Bonus.PVP_Set_Bonus.json
@@ -732,7 +732,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -818,7 +817,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -904,7 +902,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -990,7 +987,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1076,7 +1072,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1162,7 +1157,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1248,7 +1242,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1334,7 +1327,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1421,7 +1413,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1508,7 +1499,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1595,7 +1585,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1682,7 +1671,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1769,7 +1757,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1856,7 +1843,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1943,7 +1929,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2028,7 +2013,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2113,7 +2097,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2198,7 +2181,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2283,7 +2265,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2368,7 +2349,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2453,7 +2433,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2538,7 +2517,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2623,7 +2601,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2708,7 +2685,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2793,7 +2769,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2878,7 +2853,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2963,7 +2937,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3048,7 +3021,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3133,7 +3105,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3219,7 +3190,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3305,7 +3275,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3391,7 +3360,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3477,7 +3445,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3563,7 +3530,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3649,7 +3615,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3735,7 +3700,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4051,7 +4015,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4367,7 +4330,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4683,7 +4645,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4999,7 +4960,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5315,7 +5275,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5631,7 +5590,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5947,7 +5905,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6034,7 +5991,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6121,7 +6077,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6208,7 +6163,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6295,7 +6249,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6382,7 +6335,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6469,7 +6421,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6556,7 +6507,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6641,7 +6591,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6726,7 +6675,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6811,7 +6759,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6896,7 +6843,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6981,7 +6927,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7066,7 +7011,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7151,7 +7095,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7467,7 +7410,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7783,7 +7725,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8099,7 +8040,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8415,7 +8355,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8731,7 +8670,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9047,7 +8985,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9363,7 +9300,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9450,7 +9386,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9537,7 +9472,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9624,7 +9558,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9711,7 +9644,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9798,7 +9730,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9885,7 +9816,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9972,7 +9902,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10057,7 +9986,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10142,7 +10070,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10227,7 +10154,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10312,7 +10238,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10397,7 +10322,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10482,7 +10406,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10567,7 +10490,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10654,7 +10576,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10741,7 +10662,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10828,7 +10748,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10915,7 +10834,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11002,7 +10920,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11089,7 +11006,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11176,7 +11092,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11261,7 +11176,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11346,7 +11260,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11431,7 +11344,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11516,7 +11428,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11601,7 +11512,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11686,7 +11596,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11771,7 +11680,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11857,7 +11765,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11943,7 +11850,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12029,7 +11935,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12115,7 +12020,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12201,7 +12105,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12287,7 +12190,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12373,7 +12275,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12495,7 +12396,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12617,7 +12517,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12739,7 +12638,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12861,7 +12759,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12983,7 +12880,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13105,7 +13001,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13227,7 +13122,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13313,7 +13207,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13399,7 +13292,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13485,7 +13377,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13571,7 +13462,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13660,7 +13550,7 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -13746,7 +13636,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13832,7 +13721,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13917,7 +13805,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14002,7 +13889,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14087,7 +13973,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14175,7 +14060,7 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -14263,7 +14148,7 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -14348,7 +14233,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14433,7 +14317,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14518,7 +14401,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14603,7 +14485,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14688,7 +14569,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14773,7 +14653,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14858,7 +14737,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14943,7 +14821,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15028,7 +14905,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15113,7 +14989,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15198,7 +15073,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15283,7 +15157,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15368,7 +15241,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15453,7 +15325,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15538,7 +15409,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15623,7 +15493,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15816,7 +15685,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16009,7 +15877,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16202,7 +16069,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16395,7 +16261,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16588,7 +16453,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16781,7 +16645,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16974,7 +16837,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17059,7 +16921,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17144,7 +17005,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17229,7 +17089,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17314,7 +17173,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17399,7 +17257,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17484,7 +17341,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17569,7 +17425,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17687,7 +17542,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17805,7 +17659,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17923,7 +17776,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18041,7 +17893,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18159,7 +18010,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18277,7 +18127,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18395,7 +18244,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18481,7 +18329,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18567,7 +18414,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18653,7 +18499,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18739,7 +18584,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18825,7 +18669,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18911,7 +18754,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18997,7 +18839,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19151,7 +18992,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19305,7 +19145,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19459,7 +19298,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19613,7 +19451,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19767,7 +19604,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19921,7 +19757,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20075,7 +19910,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20161,7 +19995,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20247,7 +20080,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20333,7 +20165,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20419,7 +20250,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20505,7 +20335,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20591,7 +20420,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20677,7 +20505,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20762,7 +20589,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20847,7 +20673,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20932,7 +20757,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21017,7 +20841,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21102,7 +20925,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21187,7 +21009,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21272,7 +21093,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21596,7 +21416,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21920,7 +21739,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22244,7 +22062,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22568,7 +22385,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22892,7 +22708,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23216,7 +23031,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23540,7 +23354,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23624,7 +23437,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23708,7 +23520,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23792,7 +23603,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23876,7 +23686,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23960,7 +23769,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24044,7 +23852,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24128,7 +23935,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24214,7 +24020,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24300,7 +24105,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24386,7 +24190,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24472,7 +24275,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24558,7 +24360,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24644,7 +24445,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24730,7 +24530,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24884,7 +24683,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25038,7 +24836,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25192,7 +24989,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25346,7 +25142,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25500,7 +25295,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25654,7 +25448,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25808,7 +25601,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25893,7 +25685,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25978,7 +25769,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26063,7 +25853,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26148,7 +25937,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26233,7 +26021,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26318,7 +26105,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26403,7 +26189,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26557,7 +26342,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26711,7 +26495,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26865,7 +26648,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27019,7 +26801,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27173,7 +26954,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27327,7 +27107,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27481,7 +27260,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27601,7 +27379,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27721,7 +27498,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27841,7 +27617,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27961,7 +27736,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28081,7 +27855,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28201,7 +27974,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28321,7 +28093,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28439,7 +28210,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28557,7 +28327,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28675,7 +28444,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28793,7 +28561,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28911,7 +28678,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29029,7 +28795,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29147,7 +28912,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29233,7 +28997,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29319,7 +29082,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29405,7 +29167,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29491,7 +29252,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29577,7 +29337,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29663,7 +29422,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29749,7 +29507,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29834,7 +29591,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29919,7 +29675,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30004,7 +29759,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30089,7 +29843,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30174,7 +29927,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30259,7 +30011,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30344,7 +30095,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30428,7 +30178,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30512,7 +30261,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30596,7 +30344,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30680,7 +30427,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30764,7 +30510,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30848,7 +30593,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30932,7 +30676,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31018,7 +30761,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31104,7 +30846,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31190,7 +30931,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31276,7 +31016,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31362,7 +31101,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31448,7 +31186,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31534,7 +31271,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31619,7 +31355,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31704,7 +31439,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31789,7 +31523,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31874,7 +31607,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31959,7 +31691,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32044,7 +31775,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32129,7 +31859,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32283,7 +32012,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32437,7 +32165,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32591,7 +32318,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32745,7 +32471,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32899,7 +32624,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33053,7 +32777,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33207,7 +32930,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33293,7 +33015,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33379,7 +33100,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33465,7 +33185,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33551,7 +33270,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33637,7 +33355,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33723,7 +33440,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33809,7 +33525,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33963,7 +33678,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34117,7 +33831,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34271,7 +33984,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34425,7 +34137,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34579,7 +34290,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34733,7 +34443,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34887,7 +34596,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35071,7 +34779,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35255,7 +34962,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35439,7 +35145,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35623,7 +35328,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35807,7 +35511,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35991,7 +35694,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36175,7 +35877,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36261,7 +35962,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36347,7 +36047,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36433,7 +36132,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36519,7 +36217,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36605,7 +36302,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36691,7 +36387,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36777,7 +36472,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36862,7 +36556,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36947,7 +36640,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37032,7 +36724,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37117,7 +36808,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37202,7 +36892,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37287,7 +36976,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37372,7 +37060,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37492,7 +37179,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37612,7 +37298,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37732,7 +37417,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37852,7 +37536,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37972,7 +37655,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38092,7 +37774,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38212,7 +37893,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38330,7 +38010,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38448,7 +38127,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38566,7 +38244,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38684,7 +38361,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38802,7 +38478,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38920,7 +38595,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39038,7 +38712,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39124,7 +38797,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39210,7 +38882,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39296,7 +38967,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39382,7 +39052,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39468,7 +39137,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39554,7 +39222,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39640,7 +39307,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39725,7 +39391,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39810,7 +39475,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39895,7 +39559,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39980,7 +39643,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40065,7 +39727,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40150,7 +39811,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40235,7 +39895,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40321,7 +39980,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40407,7 +40065,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40493,7 +40150,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40579,7 +40235,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40665,7 +40320,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40751,7 +40405,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40837,7 +40490,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40991,7 +40643,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41145,7 +40796,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41299,7 +40949,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41453,7 +41102,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41607,7 +41255,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41761,7 +41408,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41915,7 +41561,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42001,7 +41646,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42087,7 +41731,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42173,7 +41816,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42259,7 +41901,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42345,7 +41986,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42431,7 +42071,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42517,7 +42156,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42603,7 +42241,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42689,7 +42326,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42775,7 +42411,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42895,7 +42530,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43015,7 +42649,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43135,7 +42768,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43255,7 +42887,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43375,7 +43006,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43495,7 +43125,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43615,7 +43244,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43733,7 +43361,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43851,7 +43478,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43969,7 +43595,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44087,7 +43712,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44205,7 +43829,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44323,7 +43946,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44441,7 +44063,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44526,7 +44147,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44611,7 +44231,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44696,7 +44315,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44781,7 +44399,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44866,7 +44483,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44951,7 +44567,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45036,7 +44651,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45154,7 +44768,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45272,7 +44885,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45390,7 +45002,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45508,7 +45119,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45626,7 +45236,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45744,7 +45353,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45862,7 +45470,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45947,7 +45554,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46032,7 +45638,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46117,7 +45722,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46202,7 +45806,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46287,7 +45890,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46372,7 +45974,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46457,7 +46058,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46575,7 +46175,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46693,7 +46292,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46811,7 +46409,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46929,7 +46526,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47047,7 +46643,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47165,7 +46760,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47283,7 +46877,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47599,7 +47192,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47915,7 +47507,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48231,7 +47822,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48547,7 +48137,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48863,7 +48452,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49179,7 +48767,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49495,7 +49082,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49747,7 +49333,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -49999,7 +49584,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -50086,7 +49670,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50173,7 +49756,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50260,7 +49842,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50347,7 +49928,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50434,7 +50014,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50521,7 +50100,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50608,7 +50186,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50695,7 +50272,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50782,7 +50358,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50869,7 +50444,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50956,7 +50530,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51043,7 +50616,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51128,7 +50700,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51213,7 +50784,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51298,7 +50868,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51383,7 +50952,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51468,7 +51036,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51553,7 +51120,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51638,7 +51204,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51793,7 +51358,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51948,7 +51512,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52103,7 +51666,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52258,7 +51820,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52413,7 +51974,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52500,7 +52060,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52587,7 +52146,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52674,7 +52232,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52761,7 +52318,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52848,7 +52404,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52935,7 +52490,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53022,7 +52576,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53107,7 +52660,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53192,7 +52744,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53277,7 +52828,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53362,7 +52912,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53447,7 +52996,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53532,7 +53080,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53617,7 +53164,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53933,7 +53479,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54249,7 +53794,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54565,7 +54109,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54881,7 +54424,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55197,7 +54739,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55513,7 +55054,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55829,7 +55369,6 @@
}
],
"FullSetName": "Set_Bonus.PVP_Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Set_Bonus.Set_Bonus.json b/Hero Designer/Data/db/Other/_Set_Bonus.Set_Bonus.json
index a49a95b6..1984f506 100644
--- a/Hero Designer/Data/db/Other/_Set_Bonus.Set_Bonus.json
+++ b/Hero Designer/Data/db/Other/_Set_Bonus.Set_Bonus.json
@@ -905,7 +905,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -991,7 +990,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1077,7 +1075,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1163,7 +1160,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1249,7 +1245,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1335,7 +1330,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1421,7 +1415,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1507,7 +1500,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1560,7 +1552,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1646,7 +1637,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1699,7 +1689,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1785,7 +1774,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1838,7 +1826,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2163,7 +2150,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2255,7 +2241,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2852,7 +2837,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2905,7 +2889,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3025,7 +3008,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3109,7 +3091,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3196,7 +3177,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3318,7 +3298,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3406,7 +3385,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -3493,7 +3471,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3580,7 +3557,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3667,7 +3643,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3754,7 +3729,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3841,7 +3815,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3928,7 +3901,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4015,7 +3987,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4100,7 +4071,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4185,7 +4155,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4270,7 +4239,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4355,7 +4323,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4440,7 +4407,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4525,7 +4491,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4610,7 +4575,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4703,7 +4667,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -5053,7 +5016,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5106,7 +5068,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5191,7 +5152,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5276,7 +5236,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5361,7 +5320,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5446,7 +5404,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5531,7 +5488,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5616,7 +5572,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5701,7 +5656,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6166,7 +6120,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6219,7 +6172,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6306,7 +6258,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -6392,7 +6343,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6478,7 +6428,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6564,7 +6513,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6650,7 +6598,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6736,7 +6683,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6822,7 +6768,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6908,7 +6853,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7224,7 +7168,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7540,7 +7483,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7856,7 +7798,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8172,7 +8113,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8488,7 +8428,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8804,7 +8743,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9120,7 +9058,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9237,7 +9174,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9331,7 +9267,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9649,7 +9584,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -9736,7 +9670,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9823,7 +9756,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9910,7 +9842,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9997,7 +9928,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10084,7 +10014,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10171,7 +10100,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10258,7 +10186,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10343,7 +10270,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10428,7 +10354,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10513,7 +10438,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10598,7 +10522,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10683,7 +10606,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10768,7 +10690,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10853,7 +10774,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11169,7 +11089,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11485,7 +11404,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11801,7 +11719,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12117,7 +12034,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12433,7 +12349,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12749,7 +12664,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13065,7 +12979,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13152,7 +13065,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13205,7 +13117,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13322,7 +13233,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13407,7 +13317,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13799,7 +13708,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13885,7 +13793,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13972,7 +13879,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14059,7 +13965,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14146,7 +14051,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14233,7 +14137,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14320,7 +14223,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14407,7 +14309,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14494,7 +14395,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14579,7 +14479,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14664,7 +14563,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14749,7 +14647,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14834,7 +14731,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14919,7 +14815,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15004,7 +14899,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15089,7 +14983,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15176,7 +15069,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15263,7 +15155,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15350,7 +15241,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15437,7 +15327,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15524,7 +15413,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15611,7 +15499,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15698,7 +15585,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15783,7 +15669,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15868,7 +15753,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15953,7 +15837,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16038,7 +15921,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16123,7 +16005,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16208,7 +16089,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16293,7 +16173,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16543,7 +16422,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16629,7 +16507,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16715,7 +16592,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16801,7 +16677,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16887,7 +16762,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16973,7 +16847,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17059,7 +16932,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17145,7 +17017,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17231,7 +17102,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17353,7 +17223,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17475,7 +17344,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17597,7 +17465,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17719,7 +17586,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17841,7 +17707,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17963,7 +17828,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18085,7 +17949,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18171,7 +18034,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18257,7 +18119,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18343,7 +18204,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18429,7 +18289,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18515,7 +18374,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18601,7 +18459,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18687,7 +18544,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18772,7 +18628,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18857,7 +18712,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18942,7 +18796,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19027,7 +18880,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19112,7 +18964,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19197,7 +19048,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19282,7 +19132,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19367,7 +19216,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19452,7 +19300,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19537,7 +19384,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19622,7 +19468,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19707,7 +19552,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19792,7 +19636,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19877,7 +19720,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19962,7 +19804,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20047,7 +19888,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20132,7 +19972,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20217,7 +20056,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20302,7 +20140,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20387,7 +20224,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20472,7 +20308,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20665,7 +20500,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20858,7 +20692,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21051,7 +20884,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21244,7 +21076,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21437,7 +21268,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21630,7 +21460,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21823,7 +21652,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21908,7 +21736,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21993,7 +21820,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22078,7 +21904,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22163,7 +21988,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22248,7 +22072,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22333,7 +22156,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22418,7 +22240,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22536,7 +22357,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22654,7 +22474,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22772,7 +22591,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22890,7 +22708,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23008,7 +22825,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23126,7 +22942,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23244,7 +23059,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23330,7 +23144,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23416,7 +23229,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23502,7 +23314,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23588,7 +23399,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23674,7 +23484,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23760,7 +23569,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23846,7 +23654,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24000,7 +23807,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24154,7 +23960,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24308,7 +24113,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24462,7 +24266,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24616,7 +24419,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24770,7 +24572,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24924,7 +24725,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25010,7 +24810,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25096,7 +24895,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25182,7 +24980,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25268,7 +25065,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25354,7 +25150,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25440,7 +25235,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25526,7 +25320,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25611,7 +25404,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25696,7 +25488,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25781,7 +25572,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25866,7 +25656,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25951,7 +25740,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26036,7 +25824,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26121,7 +25908,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26445,7 +26231,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26769,7 +26554,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27093,7 +26877,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27417,7 +27200,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27741,7 +27523,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28065,7 +27846,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28389,7 +28169,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28473,7 +28252,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28557,7 +28335,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28641,7 +28418,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28725,7 +28501,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28809,7 +28584,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28893,7 +28667,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28977,7 +28750,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29063,7 +28835,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29149,7 +28920,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29235,7 +29005,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29321,7 +29090,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29407,7 +29175,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29493,7 +29260,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29579,7 +29345,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29733,7 +29498,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -29887,7 +29651,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30041,7 +29804,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30195,7 +29957,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30349,7 +30110,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30503,7 +30263,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30657,7 +30416,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30742,7 +30500,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30827,7 +30584,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30912,7 +30668,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30997,7 +30752,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31082,7 +30836,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31167,7 +30920,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31252,7 +31004,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31406,7 +31157,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31560,7 +31310,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31714,7 +31463,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31868,7 +31616,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32022,7 +31769,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32176,7 +31922,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32330,7 +32075,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32450,7 +32194,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32570,7 +32313,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32690,7 +32432,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32810,7 +32551,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32930,7 +32670,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33050,7 +32789,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33170,7 +32908,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33288,7 +33025,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33406,7 +33142,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33524,7 +33259,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33642,7 +33376,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33760,7 +33493,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33878,7 +33610,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33996,7 +33727,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34082,7 +33812,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34168,7 +33897,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34254,7 +33982,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34340,7 +34067,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34426,7 +34152,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34512,7 +34237,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34598,7 +34322,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34683,7 +34406,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34768,7 +34490,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34853,7 +34574,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34938,7 +34658,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35023,7 +34742,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35108,7 +34826,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35193,7 +34910,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35277,7 +34993,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35361,7 +35076,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35445,7 +35159,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35529,7 +35242,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35613,7 +35325,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35697,7 +35408,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35781,7 +35491,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35867,7 +35576,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35953,7 +35661,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36039,7 +35746,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36125,7 +35831,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36211,7 +35916,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36297,7 +36001,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36383,7 +36086,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36468,7 +36170,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36553,7 +36254,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36638,7 +36338,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36723,7 +36422,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36808,7 +36506,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36893,7 +36590,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -36978,7 +36674,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37132,7 +36827,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37286,7 +36980,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37440,7 +37133,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37594,7 +37286,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37748,7 +37439,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37902,7 +37592,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38056,7 +37745,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38142,7 +37830,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38228,7 +37915,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38314,7 +38000,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38400,7 +38085,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38486,7 +38170,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38572,7 +38255,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38658,7 +38340,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38812,7 +38493,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38966,7 +38646,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39120,7 +38799,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39274,7 +38952,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39428,7 +39105,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39582,7 +39258,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39736,7 +39411,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39920,7 +39594,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40104,7 +39777,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40288,7 +39960,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40472,7 +40143,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40656,7 +40326,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40840,7 +40509,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41024,7 +40692,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41110,7 +40777,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41196,7 +40862,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41282,7 +40947,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41368,7 +41032,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41454,7 +41117,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41540,7 +41202,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41626,7 +41287,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41711,7 +41371,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41796,7 +41455,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41881,7 +41539,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41966,7 +41623,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42051,7 +41707,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42136,7 +41791,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42221,7 +41875,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42341,7 +41994,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42461,7 +42113,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42581,7 +42232,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42701,7 +42351,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42821,7 +42470,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -42941,7 +42589,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43061,7 +42708,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43179,7 +42825,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43297,7 +42942,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43415,7 +43059,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43533,7 +43176,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43651,7 +43293,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43769,7 +43410,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43887,7 +43527,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43973,7 +43612,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44059,7 +43697,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44145,7 +43782,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44231,7 +43867,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44317,7 +43952,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44403,7 +44037,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44489,7 +44122,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44574,7 +44206,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44659,7 +44290,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44744,7 +44374,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44829,7 +44458,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44914,7 +44542,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44999,7 +44626,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45084,7 +44710,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45170,7 +44795,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45256,7 +44880,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45342,7 +44965,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45428,7 +45050,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45514,7 +45135,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45600,7 +45220,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45686,7 +45305,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45840,7 +45458,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45994,7 +45611,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46148,7 +45764,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46302,7 +45917,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46456,7 +46070,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46610,7 +46223,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46764,7 +46376,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46850,7 +46461,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46936,7 +46546,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47022,7 +46631,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47108,7 +46716,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47194,7 +46801,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47280,7 +46886,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47366,7 +46971,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47452,7 +47056,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47538,7 +47141,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47624,7 +47226,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47744,7 +47345,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47864,7 +47464,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -47984,7 +47583,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48104,7 +47702,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48224,7 +47821,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48344,7 +47940,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48464,7 +48059,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48582,7 +48176,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48700,7 +48293,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48818,7 +48410,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48936,7 +48527,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49054,7 +48644,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49172,7 +48761,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49290,7 +48878,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49375,7 +48962,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49460,7 +49046,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49545,7 +49130,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49630,7 +49214,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49715,7 +49298,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49800,7 +49382,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49885,7 +49466,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50003,7 +49583,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50121,7 +49700,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50239,7 +49817,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50357,7 +49934,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50475,7 +50051,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50593,7 +50168,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50711,7 +50285,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50796,7 +50369,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50881,7 +50453,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -50966,7 +50537,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51051,7 +50621,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51136,7 +50705,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51221,7 +50789,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51306,7 +50873,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51359,7 +50925,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51513,7 +51078,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51633,7 +51197,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52261,7 +51824,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52379,7 +51941,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52497,7 +52058,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52615,7 +52175,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52733,7 +52292,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52851,7 +52409,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52969,7 +52526,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53087,7 +52643,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53436,7 +52991,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53752,7 +53306,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54068,7 +53621,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54384,7 +53936,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54700,7 +54251,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55016,7 +54566,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55332,7 +54881,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55648,7 +55196,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55734,7 +55281,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -56085,7 +55631,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -56337,7 +55882,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -56589,7 +56133,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -56841,7 +56384,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -57166,7 +56708,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57284,7 +56825,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57337,7 +56877,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57454,7 +56993,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57602,7 +57140,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57910,7 +57447,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57996,7 +57532,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58312,7 +57847,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58398,7 +57932,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58484,7 +58017,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58571,7 +58103,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58658,7 +58189,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58745,7 +58275,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58832,7 +58361,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58919,7 +58447,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59006,7 +58533,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59093,7 +58619,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59178,7 +58703,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59263,7 +58787,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59348,7 +58871,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59433,7 +58955,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59518,7 +59039,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59603,7 +59123,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59688,7 +59207,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59843,7 +59361,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -59998,7 +59515,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60153,7 +59669,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60308,7 +59823,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60463,7 +59977,6 @@
],
"BuffMode": 2,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60812,7 +60325,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61130,7 +60642,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -61226,7 +60737,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61415,7 +60925,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61807,7 +61316,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61927,7 +61435,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62014,7 +61521,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62101,7 +61607,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62188,7 +61693,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62275,7 +61779,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62362,7 +61865,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62449,7 +61951,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62536,7 +62037,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62621,7 +62121,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62706,7 +62205,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62791,7 +62289,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62876,7 +62373,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62961,7 +62457,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63046,7 +62541,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63131,7 +62625,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63456,7 +62949,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63548,7 +63040,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63632,7 +63123,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63720,7 +63210,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -63773,7 +63262,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63890,7 +63378,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63984,7 +63471,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64101,7 +63587,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64729,7 +64214,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -65080,7 +64564,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 7.0
},
{
@@ -65405,7 +64888,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -65501,7 +64983,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -65624,7 +65105,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -65940,7 +65420,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -66256,7 +65735,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -66572,7 +66050,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -66888,7 +66365,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67204,7 +66680,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67520,7 +66995,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67836,7 +67310,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67921,7 +67394,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68044,7 +67516,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68097,7 +67568,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68248,7 +67718,6 @@
}
],
"FullSetName": "Set_Bonus.Set_Bonus",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Accolades.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Accolades.json
index b0b15b88..24701a89 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Accolades.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Accolades.json
@@ -151,7 +151,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -600,7 +599,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -1089,7 +1088,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -1578,7 +1577,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -1766,7 +1765,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -1850,7 +1849,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2038,7 +2036,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -2122,7 +2120,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2206,7 +2203,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2321,7 +2317,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2405,7 +2400,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2668,7 +2662,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -2758,7 +2752,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -2873,7 +2867,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2993,7 +2986,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -3442,7 +3435,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -3526,7 +3519,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3610,7 +3602,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3694,7 +3685,6 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3957,7 +3947,7 @@
}
],
"FullSetName": "Temporary_Powers.Accolades",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Art_Test.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Art_Test.json
index a875338c..e5140dff 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Art_Test.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Art_Test.json
@@ -118,7 +118,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -213,7 +213,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 2.5
},
{
@@ -308,7 +308,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -407,7 +407,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 3.25
},
{
@@ -501,7 +501,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -597,7 +597,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 3.25
},
{
@@ -692,7 +692,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
},
{
@@ -790,7 +790,7 @@
}
],
"FullSetName": "Temporary_Powers.Art_Test",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Day_Job_Powers.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Day_Job_Powers.json
index a157ad50..6cbd1051 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Day_Job_Powers.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Day_Job_Powers.json
@@ -310,7 +310,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -399,7 +398,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
},
{
@@ -656,7 +655,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -738,7 +737,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -821,7 +819,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -904,7 +901,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -986,7 +982,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1110,7 +1105,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -1192,7 +1187,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1275,7 +1269,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1358,7 +1351,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1440,7 +1432,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1592,7 +1583,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -1744,7 +1735,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -1827,7 +1818,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1910,7 +1900,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1992,7 +1981,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2159,7 +2147,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 6.25
},
{
@@ -2241,7 +2229,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2323,7 +2310,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2406,7 +2392,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2489,7 +2474,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2571,7 +2555,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2624,7 +2607,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2677,7 +2659,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2759,7 +2740,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2841,7 +2821,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3003,7 +2982,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -3085,7 +3064,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3168,7 +3146,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3250,7 +3227,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3332,7 +3308,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3524,7 +3499,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3716,7 +3690,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4042,7 +4015,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4368,7 +4340,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4771,7 +4742,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5174,7 +5144,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5261,7 +5230,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5348,7 +5316,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5433,7 +5400,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5518,7 +5484,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5606,7 +5571,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5694,7 +5658,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5782,7 +5745,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5870,7 +5832,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6165,7 +6126,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6350,7 +6310,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6473,7 +6432,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6596,7 +6554,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6679,7 +6636,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6762,7 +6718,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6844,7 +6799,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6926,7 +6880,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7051,7 +7004,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"AoEModifier": 1.0
},
{
@@ -7133,7 +7086,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7215,7 +7167,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7268,7 +7219,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7350,7 +7300,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7436,7 +7385,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7522,7 +7470,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7608,7 +7555,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7694,7 +7640,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7776,7 +7721,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7859,7 +7803,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7941,7 +7884,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8023,7 +7965,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8106,7 +8047,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8189,7 +8129,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8341,7 +8280,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -8493,7 +8432,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -8682,7 +8621,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -8764,7 +8703,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8847,7 +8785,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8930,7 +8867,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9012,7 +8948,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9094,7 +9029,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9177,7 +9111,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9260,7 +9193,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9312,7 +9244,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9393,7 +9324,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9578,7 +9508,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9763,7 +9692,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9845,7 +9773,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9927,7 +9854,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10009,7 +9935,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10131,7 +10056,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -10214,7 +10139,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10296,7 +10220,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10378,7 +10301,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10461,7 +10383,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10594,7 +10515,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -10727,7 +10648,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -10810,7 +10731,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10892,7 +10812,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10975,7 +10894,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11057,7 +10975,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11254,7 +11171,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 2.5
},
{
@@ -11336,7 +11253,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11419,7 +11335,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11502,7 +11417,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11585,7 +11499,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11805,7 +11718,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11935,7 +11847,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -12018,7 +11930,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12101,7 +12012,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12183,7 +12093,6 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12348,7 +12257,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -12797,7 +12706,7 @@
}
],
"FullSetName": "Temporary_Powers.Day_Job_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Level_Shift.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Level_Shift.json
index 5b43d3f1..95ac2df7 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Level_Shift.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Level_Shift.json
@@ -168,7 +168,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -220,7 +219,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -272,7 +270,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -324,7 +321,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -376,7 +372,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -428,7 +423,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -480,7 +474,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -532,7 +525,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -584,7 +576,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -636,7 +627,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -688,7 +678,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -740,7 +729,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -792,7 +780,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -844,7 +831,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -896,7 +882,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -948,7 +933,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1000,7 +984,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1052,7 +1035,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1104,7 +1086,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1156,7 +1137,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1208,7 +1188,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1260,7 +1239,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1312,7 +1290,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1364,7 +1341,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1416,7 +1392,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1468,7 +1443,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1520,7 +1494,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1572,7 +1545,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1624,7 +1596,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1676,7 +1647,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1728,7 +1698,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1780,7 +1749,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1832,7 +1800,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1884,7 +1851,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1936,7 +1902,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1988,7 +1953,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2040,7 +2004,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2092,7 +2055,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2144,7 +2106,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2196,7 +2157,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2248,7 +2208,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2300,7 +2259,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2352,7 +2310,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2404,7 +2361,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2456,7 +2412,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2508,7 +2463,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2560,7 +2514,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2612,7 +2565,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2664,7 +2616,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2716,7 +2667,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2768,7 +2718,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2820,7 +2769,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2872,7 +2820,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2924,7 +2871,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2976,7 +2922,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3028,7 +2973,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3080,7 +3024,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3132,7 +3075,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3184,7 +3126,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3236,7 +3177,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3288,7 +3228,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3340,7 +3279,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3392,7 +3330,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3444,7 +3381,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3496,7 +3432,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3548,7 +3483,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3600,7 +3534,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3652,7 +3585,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3704,7 +3636,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3756,7 +3687,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3808,7 +3738,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3860,7 +3789,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3912,7 +3840,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3964,7 +3891,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4016,7 +3942,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4068,7 +3993,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4120,7 +4044,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4172,7 +4095,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4224,7 +4146,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4276,7 +4197,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4328,7 +4248,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4380,7 +4299,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4432,7 +4350,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4484,7 +4401,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4536,7 +4452,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4588,7 +4503,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4640,7 +4554,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4692,7 +4605,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4744,7 +4656,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4796,7 +4707,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4848,7 +4758,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4900,7 +4809,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4952,7 +4860,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5004,7 +4911,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5056,7 +4962,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5108,7 +5013,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5160,7 +5064,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5212,7 +5115,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5264,7 +5166,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5316,7 +5217,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Level_Shift",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Phasing.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Phasing.json
index 69e02179..06427d26 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Phasing.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Phasing.json
@@ -129,7 +129,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -246,7 +245,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -331,7 +329,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -416,7 +413,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -501,7 +497,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -586,7 +581,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -703,7 +697,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1108,7 +1101,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1194,7 +1186,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1311,7 +1302,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1396,7 +1386,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1513,7 +1502,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1598,7 +1586,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1715,7 +1702,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1800,7 +1786,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1918,7 +1903,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2035,7 +2019,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2184,7 +2167,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2333,7 +2315,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2418,7 +2399,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2535,7 +2515,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2654,7 +2633,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2771,7 +2749,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2889,7 +2866,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2974,7 +2950,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3091,7 +3066,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3464,7 +3438,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3581,7 +3554,6 @@
}
],
"FullSetName": "Temporary_Powers.Phasing",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Replacement_Powers.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Replacement_Powers.json
index 1bee78c8..866cd169 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Replacement_Powers.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Replacement_Powers.json
@@ -208,7 +208,7 @@
}
],
"FullSetName": "Temporary_Powers.Replacement_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -265,7 +265,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Replacement_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"AoEModifier": 2.5
},
{
@@ -319,7 +319,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Replacement_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Savage_Melee.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Savage_Melee.json
index 07cd19e3..cbcc29f3 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Savage_Melee.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Savage_Melee.json
@@ -171,7 +171,6 @@
}
],
"FullSetName": "Temporary_Powers.Savage_Melee",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.SilentPowers.json b/Hero Designer/Data/db/Other/_Temporary_Powers.SilentPowers.json
index d0364b83..7d724f03 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.SilentPowers.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.SilentPowers.json
@@ -241,7 +241,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -323,7 +322,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -474,7 +472,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -559,7 +556,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -644,7 +640,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -969,7 +964,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1294,7 +1288,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1619,7 +1612,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1944,7 +1936,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2269,7 +2260,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2594,7 +2584,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -2919,7 +2908,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3244,7 +3232,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3569,7 +3556,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3894,7 +3880,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4219,7 +4204,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4544,7 +4528,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4869,7 +4852,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5194,7 +5176,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5519,7 +5500,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5844,7 +5824,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6169,7 +6148,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6494,7 +6472,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6819,7 +6796,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7144,7 +7120,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7469,7 +7444,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7794,7 +7768,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8119,7 +8092,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8444,7 +8416,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8769,7 +8740,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9094,7 +9064,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9419,7 +9388,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9744,7 +9712,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10069,7 +10036,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10394,7 +10360,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10711,7 +10676,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11028,7 +10992,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11345,7 +11308,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11662,7 +11624,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11979,7 +11940,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12296,7 +12256,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12613,7 +12572,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12930,7 +12888,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13247,7 +13204,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13564,7 +13520,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13881,7 +13836,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14198,7 +14152,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14515,7 +14468,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14832,7 +14784,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15149,7 +15100,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15234,7 +15184,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15331,7 +15280,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15412,7 +15360,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15527,7 +15474,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15612,7 +15558,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15828,7 +15773,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15913,7 +15857,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16065,7 +16008,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16154,7 +16096,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -16237,7 +16178,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19443,7 +19383,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19529,7 +19468,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19613,7 +19551,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19728,7 +19665,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19911,7 +19847,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20228,7 +20163,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20545,7 +20479,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20862,7 +20795,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21179,7 +21111,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21496,7 +21427,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21813,7 +21743,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22130,7 +22059,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22447,7 +22375,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22764,7 +22691,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23081,7 +23007,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23398,7 +23323,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23715,7 +23639,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24032,7 +23955,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24349,7 +24271,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24666,7 +24587,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24751,7 +24671,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24906,7 +24825,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -24990,7 +24908,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25106,7 +25023,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25220,7 +25136,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25334,7 +25249,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25449,7 +25363,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25568,7 +25481,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25682,7 +25594,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25797,7 +25708,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25916,7 +25826,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26030,7 +25939,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26145,7 +26053,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26324,7 +26231,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26503,7 +26409,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26588,7 +26493,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26707,7 +26611,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26821,7 +26724,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -26936,7 +26838,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27153,7 +27054,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27268,7 +27168,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27353,7 +27252,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27567,7 +27465,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27746,7 +27643,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27832,7 +27728,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27913,7 +27808,6 @@
}
],
"FullSetName": "Temporary_Powers.SilentPowers",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Temporary_Powers.Temporary_Powers.json b/Hero Designer/Data/db/Other/_Temporary_Powers.Temporary_Powers.json
index c09f066d..66a44652 100644
--- a/Hero Designer/Data/db/Other/_Temporary_Powers.Temporary_Powers.json
+++ b/Hero Designer/Data/db/Other/_Temporary_Powers.Temporary_Powers.json
@@ -4058,7 +4058,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4145,7 +4144,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4277,7 +4275,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4359,7 +4356,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4445,7 +4441,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4588,7 +4583,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -4715,7 +4709,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5042,7 +5035,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5123,7 +5115,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5204,7 +5195,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5285,7 +5275,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5421,7 +5410,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5503,7 +5491,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5664,7 +5651,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 5.5
},
{
@@ -5895,7 +5881,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -6286,7 +6272,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -6410,7 +6396,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -6525,7 +6511,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -6640,7 +6626,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -6766,7 +6752,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -7059,7 +7045,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7606,7 +7591,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7692,7 +7676,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7778,7 +7761,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7864,7 +7846,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7950,7 +7931,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -8036,7 +8017,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -8122,7 +8103,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -8210,7 +8191,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8298,7 +8278,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8386,7 +8365,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8507,7 +8485,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -8641,7 +8619,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8775,7 +8752,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -8909,7 +8885,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9077,7 +9052,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -9211,7 +9185,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -10160,7 +10133,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -11109,7 +11081,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12058,7 +12029,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12147,7 +12117,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12233,7 +12202,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -12319,7 +12288,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -12453,7 +12422,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12587,7 +12555,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12746,7 +12713,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -12874,7 +12841,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -12990,7 +12956,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13124,7 +13089,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13208,7 +13172,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -13342,7 +13306,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13476,7 +13439,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13610,7 +13572,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13770,7 +13731,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.15995646
},
{
@@ -13893,7 +13854,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -13980,7 +13940,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14065,7 +14024,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -14199,7 +14158,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14333,7 +14291,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14420,7 +14377,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14505,7 +14461,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -14639,7 +14595,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -14839,7 +14794,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -15038,7 +14993,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -15234,7 +15189,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 2.5
},
{
@@ -15529,7 +15484,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -15686,7 +15640,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -15773,7 +15727,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -15970,7 +15924,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -16058,7 +16012,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -16187,7 +16141,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 4.0
},
{
@@ -16353,7 +16307,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -16487,7 +16441,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16621,7 +16574,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -16745,7 +16697,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -16879,7 +16831,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17283,7 +17234,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -17687,7 +17637,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18091,7 +18040,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18214,7 +18162,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18348,7 +18295,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18516,7 +18462,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18650,7 +18595,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18784,7 +18728,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -18918,7 +18861,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19052,7 +18994,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19175,7 +19116,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19262,7 +19202,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -19347,7 +19286,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -19471,7 +19410,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -19595,7 +19534,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -19816,7 +19755,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -19950,7 +19889,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20073,7 +20011,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20207,7 +20144,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20341,7 +20277,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20424,7 +20359,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -20593,7 +20527,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -20762,7 +20696,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -20931,7 +20865,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -21100,7 +21034,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -21234,7 +21168,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21368,7 +21301,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21502,7 +21434,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21625,7 +21556,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -21711,7 +21642,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -21799,7 +21730,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21887,7 +21817,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -21975,7 +21904,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22132,7 +22060,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22289,7 +22216,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22446,7 +22372,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22569,7 +22494,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22703,7 +22627,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -22837,7 +22760,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23005,7 +22927,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23128,7 +23049,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23262,7 +23182,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -23351,7 +23270,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -23800,7 +23719,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -24198,7 +24117,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24332,7 +24250,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24419,7 +24336,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -24504,7 +24420,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -24593,7 +24509,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -24720,7 +24636,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 2.37995839
},
{
@@ -25169,7 +25085,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25464,7 +25379,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -25628,7 +25542,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -25721,7 +25635,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -25910,7 +25824,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -26003,7 +25917,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -26333,7 +26247,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -26462,7 +26376,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -26556,7 +26470,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -26643,7 +26557,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27001,7 +26914,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27085,7 +26997,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27168,7 +27079,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27289,7 +27199,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -27413,7 +27322,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -27595,7 +27504,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -27988,7 +27897,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28075,7 +27983,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28399,7 +28306,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28481,7 +28387,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -28571,7 +28476,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -28965,7 +28870,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -29161,7 +29066,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -29563,7 +29468,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -29758,7 +29663,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -30024,7 +29929,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -30077,7 +29982,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30259,7 +30163,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30349,7 +30252,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -30432,7 +30335,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -30522,7 +30424,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 1.0
},
{
@@ -31158,7 +31060,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31640,7 +31541,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -31807,7 +31707,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -31858,7 +31758,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 1.0
},
{
@@ -32188,7 +32088,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -32348,7 +32247,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -32441,7 +32340,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -32534,7 +32433,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -32627,7 +32526,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -32720,7 +32619,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -32806,7 +32705,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33146,7 +33044,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -33231,7 +33129,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33316,7 +33213,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33401,7 +33297,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33566,7 +33461,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -33652,7 +33547,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -33834,7 +33728,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -33924,7 +33818,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -34014,7 +33908,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -34140,7 +34034,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"AoEModifier": 1.0
},
{
@@ -34233,7 +34127,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.01328826
},
{
@@ -34327,7 +34221,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -34515,7 +34409,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -34706,7 +34599,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -34867,7 +34760,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -35349,7 +35242,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35790,7 +35682,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -35911,7 +35802,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36040,7 +35931,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36368,7 +36259,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36489,7 +36380,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36617,7 +36508,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36706,7 +36597,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -36793,7 +36684,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -37122,7 +37013,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37205,7 +37095,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37289,7 +37178,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37384,7 +37272,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -37709,7 +37597,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -37840,7 +37727,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -37972,7 +37859,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -38408,7 +38295,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38533,7 +38419,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -38663,7 +38548,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -38785,7 +38670,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -38875,7 +38759,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -39029,7 +38913,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39148,7 +39031,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39264,7 +39146,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39349,7 +39230,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39434,7 +39314,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39519,7 +39398,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39604,7 +39482,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39720,7 +39597,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39836,7 +39712,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -39921,7 +39796,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40006,7 +39880,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40090,7 +39963,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40243,7 +40115,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40397,7 +40268,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40512,7 +40382,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40628,7 +40497,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -40778,7 +40646,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41027,7 +40894,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41307,7 +41173,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41392,7 +41257,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41574,7 +41438,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41656,7 +41519,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41742,7 +41604,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -41827,7 +41688,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -41951,7 +41812,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -42081,7 +41942,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -42282,7 +42143,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -42475,7 +42336,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -42604,7 +42465,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -42770,7 +42631,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -42938,7 +42799,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 3.25
},
{
@@ -43023,7 +42884,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43104,7 +42964,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43229,7 +43088,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 5.5
},
{
@@ -43348,7 +43207,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43434,7 +43292,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43558,7 +43415,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -43641,7 +43498,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43759,7 +43615,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -43877,7 +43732,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -44067,7 +43921,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -44257,7 +44110,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -44385,7 +44237,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45012,7 +44863,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45372,7 +45222,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -45427,7 +45277,6 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45513,7 +45362,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -45599,7 +45448,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -45762,7 +45610,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -45848,7 +45696,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46237,7 +46084,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46366,7 +46212,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -46496,7 +46342,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -46717,7 +46563,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -46880,7 +46725,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 4.75
},
{
@@ -47757,7 +47602,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -48355,7 +48199,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49095,7 +48938,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -49980,7 +49822,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -51033,7 +50874,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -52154,7 +51994,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53159,7 +52998,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -53527,7 +53365,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -54101,7 +53938,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55038,7 +54874,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55128,7 +54963,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -55253,7 +55087,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 8.5
},
{
@@ -55623,7 +55457,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -55707,7 +55541,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.056,
+ "CastTime": 0.875,
"AoEModifier": 1.0
},
{
@@ -55838,7 +55672,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -56076,7 +55910,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -56236,7 +56070,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 2.5
},
{
@@ -56360,7 +56194,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
},
{
@@ -56481,7 +56315,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -56776,7 +56610,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57079,7 +56912,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -57381,7 +57214,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57683,7 +57515,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -57985,7 +57816,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58287,7 +58117,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58473,7 +58302,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -58838,7 +58666,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 4.75
},
{
@@ -59250,7 +59078,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 3.25
},
{
@@ -59419,7 +59247,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 3.25
},
{
@@ -60226,7 +60054,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -60315,7 +60143,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 6.25
},
{
@@ -60437,7 +60265,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 6.25
},
{
@@ -60559,7 +60387,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -60683,7 +60510,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60807,7 +60633,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -60931,7 +60756,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61089,7 +60913,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61213,7 +61036,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61337,7 +61159,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61495,7 +61316,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61619,7 +61439,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61743,7 +61562,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61867,7 +61685,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -61991,7 +61808,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62115,7 +61931,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62239,7 +62054,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62363,7 +62177,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62487,7 +62300,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62611,7 +62423,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62735,7 +62546,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62859,7 +62669,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -62983,7 +62792,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63107,7 +62915,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63231,7 +63038,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63355,7 +63161,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63513,7 +63318,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63637,7 +63441,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63761,7 +63564,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -63885,7 +63687,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64009,7 +63810,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64133,7 +63933,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64257,7 +64056,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64381,7 +64179,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64505,7 +64302,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64629,7 +64425,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64753,7 +64548,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -64996,7 +64790,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -65728,7 +65521,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -66378,7 +66171,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -66631,7 +66424,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -66760,7 +66553,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
},
{
@@ -66846,7 +66639,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -66998,7 +66790,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67087,7 +66878,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -67383,7 +67173,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67504,7 +67293,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -67665,7 +67453,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.15995646
},
{
@@ -67962,7 +67750,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68110,7 +67897,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68497,7 +68283,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -68952,7 +68737,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -69100,7 +68884,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -69498,7 +69281,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -69906,7 +69689,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -70265,7 +70048,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -70355,7 +70138,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -70479,7 +70262,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -70563,7 +70346,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -70687,7 +70469,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -70811,7 +70593,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -71008,7 +70790,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -71094,7 +70876,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -71176,7 +70957,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -71658,7 +71438,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -71745,7 +71524,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -71832,7 +71610,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -71953,7 +71730,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -72039,7 +71815,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -72125,7 +71900,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -72211,7 +71985,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -72332,7 +72105,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -72519,7 +72292,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -72720,7 +72493,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -72844,7 +72617,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -72967,7 +72740,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -73167,7 +72940,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -73500,7 +73273,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -73697,7 +73470,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 2.5
},
{
@@ -73992,7 +73765,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -74150,7 +73922,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -74238,7 +74010,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -74436,7 +74208,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -74525,7 +74297,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -74649,7 +74421,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -74739,7 +74511,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -74863,7 +74635,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -74993,7 +74765,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 4.0
},
{
@@ -75160,7 +74932,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -75358,7 +75130,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -75616,7 +75388,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -75835,7 +75607,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76055,7 +75826,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76275,7 +76045,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76367,7 +76136,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76492,7 +76260,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.036,
+ "CastTime": 2.87,
"AoEModifier": 1.0
},
{
@@ -76579,7 +76347,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76660,7 +76427,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76750,7 +76516,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -76873,7 +76639,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -76992,7 +76757,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -77187,7 +76951,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -77338,7 +77102,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -77500,7 +77263,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -77586,7 +77349,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -77705,7 +77468,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -77791,7 +77554,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -77957,7 +77719,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -78043,7 +77805,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78129,7 +77890,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78215,7 +77975,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78301,7 +78060,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78387,7 +78145,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78473,7 +78230,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78770,7 +78526,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -78860,7 +78615,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -79153,7 +78908,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -79446,7 +79200,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -79539,7 +79292,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -79737,7 +79490,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -79919,7 +79671,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -80042,7 +79794,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 4.75
},
{
@@ -80266,7 +80018,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -80388,7 +80140,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -80470,7 +80221,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -80635,7 +80386,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -80718,7 +80469,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -80909,7 +80659,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -81070,7 +80820,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -81156,7 +80906,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -81286,7 +81035,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -81516,7 +81265,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -81613,7 +81362,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 2.37995839
},
{
@@ -81908,7 +81657,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -82031,7 +81779,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 6.072,
+ "CastTime": 5.93,
"AoEModifier": 1.0
},
{
@@ -82116,7 +81864,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -82201,7 +81948,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -82390,7 +82136,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -82478,7 +82223,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -82635,7 +82379,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -82725,7 +82469,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -82921,7 +82665,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -83009,7 +82752,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -83170,7 +82913,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -83392,7 +83135,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -83481,7 +83224,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -83648,7 +83391,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 6.25
},
{
@@ -83951,7 +83694,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -84113,7 +83856,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -84280,7 +84023,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -84413,7 +84156,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -84576,7 +84319,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.73993444
},
{
@@ -85025,7 +84768,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -85113,7 +84856,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -85270,7 +85013,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -85466,7 +85209,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -85552,7 +85295,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -85904,7 +85646,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -86089,7 +85830,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -86399,7 +86139,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -86816,7 +86555,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -87029,7 +86767,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -87452,7 +87189,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -87568,7 +87304,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -87651,7 +87386,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -87748,7 +87482,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 2.37995839
},
{
@@ -87954,7 +87688,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"AoEModifier": 2.5
},
{
@@ -88040,7 +87774,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -88152,7 +87885,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -88234,7 +87966,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -88470,7 +88201,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -88638,7 +88369,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -88760,7 +88491,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -88994,7 +88724,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -89376,7 +89106,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 2.37995839
},
{
@@ -89633,7 +89363,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -89755,7 +89485,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -89841,7 +89570,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -90061,7 +89789,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -90183,7 +89911,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -90373,7 +90101,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -90560,7 +90288,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -90709,7 +90437,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -90858,7 +90585,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -91233,7 +90959,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -91360,7 +91086,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -91447,7 +91172,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -91567,7 +91292,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 1.0
},
{
@@ -91691,7 +91416,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -91803,7 +91528,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -91924,7 +91648,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -92329,7 +92053,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 10.0
},
{
@@ -92413,7 +92136,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -93482,7 +93204,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -93563,7 +93284,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -93697,7 +93417,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -93780,7 +93499,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -93914,7 +93632,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94048,7 +93765,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94400,7 +94116,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94534,7 +94249,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94668,7 +94382,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94802,7 +94515,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -94899,7 +94611,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 15.84,
+ "CastTime": 15.67,
"AoEModifier": 1.0
},
{
@@ -95256,7 +94968,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -95613,7 +95324,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -95970,7 +95680,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96089,7 +95798,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96208,7 +95916,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96327,7 +96034,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96447,7 +96153,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96567,7 +96272,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96687,7 +96391,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -96771,7 +96474,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -97240,7 +96942,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -97993,7 +97694,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -98154,7 +97854,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 2.37995839
},
{
@@ -98239,7 +97939,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -98456,7 +98155,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 1.0
},
{
@@ -98751,7 +98450,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -98838,7 +98536,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -98929,7 +98626,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"AoEModifier": 1.0
},
{
@@ -99020,7 +98717,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"AoEModifier": 1.0
},
{
@@ -99113,7 +98810,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"AoEModifier": 1.0
},
{
@@ -99456,7 +99153,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -100147,7 +99843,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -100235,7 +99930,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 1.0
},
{
@@ -100926,7 +100621,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -101285,7 +100979,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -101371,7 +101064,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -101730,7 +101422,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -101850,7 +101541,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -101941,7 +101631,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 13.0
},
{
@@ -102061,7 +101751,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -102279,7 +101968,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -102372,7 +102060,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 13.0
},
{
@@ -102590,7 +102278,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -102783,7 +102470,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -102899,7 +102586,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -103019,7 +102705,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -103283,7 +102969,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -103443,7 +103128,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
},
{
@@ -103560,7 +103245,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -103646,7 +103330,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -103732,7 +103416,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -103815,7 +103499,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -103941,7 +103624,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
},
{
@@ -104137,7 +103820,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -104252,7 +103935,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -104336,7 +104018,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -104422,7 +104103,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -104512,7 +104192,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -104815,7 +104495,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 4.75
},
{
@@ -105015,7 +104695,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -105198,7 +104878,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -105457,7 +105136,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -105620,7 +105299,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 3.31991267
},
{
@@ -106219,7 +105898,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 3.25
},
{
@@ -106349,7 +106028,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 4.0
},
{
@@ -106621,7 +106300,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 4.75
},
{
@@ -106749,7 +106428,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 4.0
},
{
@@ -106880,7 +106559,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 3.25
},
{
@@ -106997,7 +106676,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -107237,7 +106915,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -107396,7 +107074,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -107594,7 +107272,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"AoEModifier": 1.0
},
{
@@ -108540,7 +108218,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -108811,7 +108488,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -108928,7 +108605,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 1.0
},
{
@@ -109091,7 +108768,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 2.2
},
{
@@ -109364,7 +109041,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"AoEModifier": 1.9
},
{
@@ -110060,7 +109737,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -110298,7 +109975,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.25432611
},
{
@@ -110448,7 +110125,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -110598,7 +110274,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -110681,7 +110356,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -111004,7 +110678,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -111087,7 +110760,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -111175,7 +110847,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 4.0
},
{
@@ -111296,7 +110968,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -111392,7 +111063,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 20.196,
+ "CastTime": 20.0,
"AoEModifier": 1.0
},
{
@@ -111689,7 +111360,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -112127,7 +111797,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -112211,7 +111880,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -112888,7 +112556,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -113052,7 +112719,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -113234,7 +112901,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 15.18,
+ "CastTime": 15.0,
"AoEModifier": 1.0
},
{
@@ -113496,7 +113163,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -113614,7 +113281,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -113700,7 +113366,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -114313,7 +113978,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -114407,7 +114071,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -114642,7 +114306,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -114768,7 +114432,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -115097,7 +114761,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -115512,7 +115175,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -116144,7 +115806,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -116233,7 +115894,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -116394,7 +116055,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -116523,7 +116184,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -116731,7 +116392,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"AoEModifier": 1.24149275
},
{
@@ -117133,7 +116794,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -117290,7 +116950,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -117375,7 +117034,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -117502,7 +117160,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.99862158
},
{
@@ -117593,7 +117251,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 4.0
},
{
@@ -117722,7 +117380,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -117851,7 +117509,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -117975,7 +117633,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 4.092,
+ "CastTime": 3.83,
"AoEModifier": 1.0
},
{
@@ -118065,7 +117723,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -118192,7 +117850,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.26661038
},
{
@@ -118352,7 +118010,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.5
},
{
@@ -118822,7 +118480,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.5
},
{
@@ -118951,7 +118609,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -119080,7 +118738,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -119177,7 +118835,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.696,
+ "CastTime": 3.5,
"AoEModifier": 2.37995839
},
{
@@ -119303,7 +118961,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -119432,7 +119090,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 3.25
},
{
@@ -119558,7 +119216,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -119749,7 +119407,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -119979,7 +119637,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -120136,7 +119794,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -120393,7 +120051,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -120555,7 +120213,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -120752,7 +120410,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -121048,7 +120705,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -121215,7 +120871,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 6.25
},
{
@@ -121518,7 +121174,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -121685,7 +121341,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -122134,7 +121790,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -122396,7 +122052,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 19.0
},
{
@@ -122516,7 +122171,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -122667,7 +122321,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"AoEModifier": 1.0
},
{
@@ -123339,7 +122993,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -123456,7 +123110,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -123812,7 +123465,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -124236,7 +123888,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -124353,7 +124004,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -124518,7 +124168,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 2.15995646
},
{
@@ -124813,7 +124463,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -124899,7 +124548,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -125117,7 +124765,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -125203,7 +124850,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -125357,7 +125003,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -125440,7 +125086,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.564,
+ "CastTime": 3.33,
"AoEModifier": 1.0
},
{
@@ -125696,7 +125342,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -125991,7 +125637,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -126081,7 +125727,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -126169,7 +125815,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -126361,7 +126006,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -126655,7 +126300,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -126838,7 +126483,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"AoEModifier": 1.0
},
{
@@ -126923,7 +126568,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -127008,7 +126652,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -127312,7 +126955,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -127478,7 +127121,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.0
},
{
@@ -127571,7 +127214,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -127739,7 +127382,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -127825,7 +127468,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -127975,7 +127618,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128059,7 +127701,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128143,7 +127784,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128227,7 +127867,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128311,7 +127950,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128565,7 +128203,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -128655,7 +128293,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"AoEModifier": 1.0
},
{
@@ -128739,7 +128377,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 17.16,
+ "CastTime": 17.0,
"AoEModifier": 1.0
},
{
@@ -128823,7 +128461,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128905,7 +128542,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -128989,7 +128625,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -129071,7 +128706,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -129393,7 +129027,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.96,
+ "CastTime": 3.7,
"AoEModifier": 4.75
},
{
@@ -129516,7 +129150,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 2.2
},
{
@@ -130041,7 +129675,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -130168,7 +129801,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"AoEModifier": 1.0
},
{
@@ -130301,7 +129934,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 2.51993251
},
{
@@ -130434,7 +130067,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -130517,7 +130150,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -130634,7 +130266,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -130716,7 +130347,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -130988,7 +130618,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -131071,7 +130701,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -131155,7 +130784,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -131240,7 +130868,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -131323,7 +130950,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -131459,7 +131085,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 2.15995646
},
{
@@ -131558,7 +131184,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -131746,7 +131372,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -131990,7 +131616,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132232,7 +131857,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132315,7 +131939,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132398,7 +132021,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132479,7 +132101,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132572,7 +132193,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 6.204,
+ "CastTime": 6.0,
"AoEModifier": 1.0
},
{
@@ -132658,7 +132279,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -132780,7 +132400,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -133083,7 +132703,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"AoEModifier": 1.0
},
{
@@ -133330,7 +132950,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -133579,7 +133198,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -133840,7 +133458,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -134032,7 +133649,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -134150,7 +133767,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -134332,7 +133948,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -134418,7 +134033,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -134511,7 +134126,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -134781,7 +134396,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 4.75
},
{
@@ -134905,7 +134520,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -135375,7 +134990,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 2.5
},
{
@@ -135580,7 +135195,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -136314,7 +135929,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -136964,7 +136579,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -137217,7 +136832,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -137314,7 +136929,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 19.0
},
{
@@ -137411,7 +137025,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -137784,7 +137397,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"AoEModifier": 1.0
},
{
@@ -137871,7 +137484,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 4.75
},
{
@@ -137960,7 +137573,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 7.128,
+ "CastTime": 6.93,
"AoEModifier": 1.0
},
{
@@ -138840,7 +138453,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -138965,7 +138578,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -139091,7 +138704,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -139218,7 +138831,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 3.25
},
{
@@ -139380,7 +138993,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"AoEModifier": 2.15995646
},
{
@@ -139470,7 +139083,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"AoEModifier": 1.0
},
{
@@ -139773,7 +139386,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -139996,7 +139609,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -140122,7 +139735,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -140494,7 +140106,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 10.0
},
{
@@ -140619,7 +140231,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -140701,7 +140313,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -140826,7 +140437,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -140916,7 +140527,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -141006,7 +140617,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -141169,7 +140780,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.73993444
},
{
@@ -141619,7 +141230,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 1.0
},
{
@@ -141941,7 +141552,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -142263,7 +141874,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -142351,7 +141962,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -142436,7 +142047,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142519,7 +142129,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142603,7 +142212,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142688,7 +142296,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142772,7 +142379,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142855,7 +142461,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -142943,7 +142548,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 10.0
},
{
@@ -143071,7 +142676,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"AoEModifier": 1.35699379
},
{
@@ -143200,7 +142805,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -143321,7 +142926,6 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -143440,7 +143044,7 @@
}
],
"FullSetName": "Temporary_Powers.Temporary_Powers",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Blaster.json b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Blaster.json
index 3c7f2d06..14ab906a 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Blaster.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Blaster.json
@@ -199,7 +199,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 1.0
},
{
@@ -298,7 +298,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -469,7 +469,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"AoEModifier": 1.0
},
{
@@ -657,7 +657,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -842,7 +841,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -924,7 +922,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1029,7 +1026,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.45329237
},
{
@@ -1487,7 +1484,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Blaster",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Disrupter.json b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Disrupter.json
index 7d5e28f1..5b1f02d5 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Disrupter.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Disrupter.json
@@ -229,7 +229,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -328,7 +328,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -572,7 +572,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 3.25
},
{
@@ -856,7 +856,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -1044,7 +1044,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1228,7 +1227,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1310,7 +1308,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1770,7 +1767,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Disrupter",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Spiderling.json b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Spiderling.json
index cdd72d55..cab91d01 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Spiderling.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Arachnobot_Spiderling.json
@@ -161,7 +161,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Spiderling",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 1.0
},
{
@@ -260,7 +260,7 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Spiderling",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -448,7 +448,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Spiderling",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -633,7 +632,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Spiderling",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -715,7 +713,6 @@
}
],
"FullSetName": "Villain_Pets.Arachnobot_Spiderling",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Blood_Widow.json b/Hero Designer/Data/db/Other/_Villain_Pets.Blood_Widow.json
index f79a8b3b..b4697ace 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Blood_Widow.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Blood_Widow.json
@@ -424,7 +424,6 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -744,7 +743,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.35699379
},
{
@@ -1061,7 +1060,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -1233,7 +1232,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -1315,7 +1314,6 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1632,7 +1630,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.0
},
{
@@ -1950,7 +1948,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 2.2
},
{
@@ -2267,7 +2265,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -2621,7 +2619,7 @@
}
],
"FullSetName": "Villain_Pets.Blood_Widow",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Broad_Sword_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Broad_Sword_Assassins_Strike.json
index a8838752..6b5f9a83 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Broad_Sword_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Broad_Sword_Assassins_Strike.json
@@ -330,7 +330,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Broad_Sword_Assassins_Strike",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -564,7 +564,7 @@
}
],
"FullSetName": "Villain_Pets.Broad_Sword_Assassins_Strike",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump1.json
index aa18eab6..b793f825 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump1.json
@@ -304,7 +304,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Confuse_Dominator_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump2.json
index 639d3226..30e8f31f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump2.json
@@ -304,7 +304,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Confuse_Dominator_Jump2",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump3.json
index 5c6fcefd..a816e716 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Confuse_Dominator_Jump3.json
@@ -230,7 +230,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Confuse_Dominator_Jump3",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump1.json
index c608cae7..49eaa747 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump1.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Induction_Jump1",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump2.json
index 76701e1a..d216f39f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump2.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Induction_Jump2",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump3.json
index ccce2b4f..b7dc7ee5 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump3.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Induction_Jump3",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump4.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump4.json
index 9e4591c2..1228f909 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump4.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Induction_Jump4.json
@@ -148,7 +148,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Induction_Jump4",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump1.json
index b2cc247b..df82138f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump1.json
@@ -331,7 +331,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Jolt_Dominator_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump2.json
index cc59f2d7..2ccabe53 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump2.json
@@ -331,7 +331,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Jolt_Dominator_Jump2",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump3.json
index 0fa0d2d2..fd1c0631 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Jolt_Dominator_Jump3.json
@@ -257,7 +257,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Jolt_Dominator_Jump3",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Lightning.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Lightning.json
index 88fd6b80..14d5a95a 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Lightning.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Lightning.json
@@ -177,7 +177,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Chain_Lightning",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -334,7 +333,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Chain_Lightning",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -491,7 +489,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Chain_Lightning",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -580,7 +577,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Lightning",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Stun_Dominator_Jump1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Stun_Dominator_Jump1.json
index 38f2e3da..4434682a 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Stun_Dominator_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Chain_Stun_Dominator_Jump1.json
@@ -260,7 +260,6 @@
}
],
"FullSetName": "Villain_Pets.Chain_Stun_Dominator_Jump1",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Claws_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Claws_Assassins_Strike.json
index b8623e98..83223dc0 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Claws_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Claws_Assassins_Strike.json
@@ -330,7 +330,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Claws_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -564,7 +564,7 @@
}
],
"FullSetName": "Villain_Pets.Claws_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Sentinel.json b/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Sentinel.json
index 8eeaa077..277971a3 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Sentinel.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Sentinel.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -240,7 +239,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -342,7 +341,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.73993444
},
{
@@ -514,7 +513,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -690,7 +689,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -772,7 +771,6 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1098,7 +1096,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"AoEModifier": 1.0
},
{
@@ -1382,7 +1380,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Sentinel",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 2.15995646
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Warder.json b/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Warder.json
index 96f30d4f..aea57baa 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Warder.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Coral_Guardian_Warder.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -240,7 +239,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -412,7 +411,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -514,7 +513,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.73993444
},
{
@@ -871,7 +870,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"AoEModifier": 1.0
},
{
@@ -953,7 +952,6 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1129,7 +1127,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -1413,7 +1411,7 @@
}
],
"FullSetName": "Villain_Pets.Coral_Guardian_Warder",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"AoEModifier": 2.15995646
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Blue_Hybrid.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Blue_Hybrid.json
index ab7bbe12..2164e412 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Blue_Hybrid.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Blue_Hybrid.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -240,7 +239,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -372,7 +371,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"AoEModifier": 1.0
},
{
@@ -507,7 +506,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.45966136
},
{
@@ -589,7 +588,6 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -688,7 +686,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 1.0
},
{
@@ -790,7 +788,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 1.99862158
},
{
@@ -1077,7 +1075,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Blue_Hybrid",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"AoEModifier": 2.15995646
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Red_Hybrid.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Red_Hybrid.json
index 61dff3fe..1d059a65 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Red_Hybrid.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corolax_Red_Hybrid.json
@@ -141,7 +141,6 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -313,7 +312,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.0
},
{
@@ -450,7 +449,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -622,7 +621,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -704,7 +703,6 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -882,7 +880,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1060,7 +1058,7 @@
}
],
"FullSetName": "Villain_Pets.Corolax_Red_Hybrid",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_Archery_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_Archery_Snipe.json
index b1083dcd..b753edc3 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_Archery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_Archery_Snipe.json
@@ -233,7 +233,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_Archery_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -451,7 +451,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_Archery_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_AssaultRifle_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_AssaultRifle_Snipe.json
index 709e2c0f..e01483c0 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_AssaultRifle_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_AssaultRifle_Snipe.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_AssaultRifle_Snipe",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -599,7 +599,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_AssaultRifle_Snipe",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_BeamRifle_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_BeamRifle_Snipe.json
index 04a4987e..644b0ad1 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_BeamRifle_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_BeamRifle_Snipe.json
@@ -423,7 +423,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_BeamRifle_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -831,7 +831,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_BeamRifle_Snipe",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_DarkBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_DarkBlast_Snipe.json
index 1ce64ea9..8072a127 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_DarkBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_DarkBlast_Snipe.json
@@ -273,7 +273,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_DarkBlast_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -531,7 +531,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_DarkBlast_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_ElectricalBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_ElectricalBlast_Snipe.json
index 308b3f92..f82dbb22 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_ElectricalBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_ElectricalBlast_Snipe.json
@@ -375,7 +375,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_ElectricalBlast_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -733,7 +733,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_ElectricalBlast_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_EnergyBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_EnergyBlast_Snipe.json
index fe99f803..9fe5b5ad 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_EnergyBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_EnergyBlast_Snipe.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_EnergyBlast_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -739,7 +739,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_EnergyBlast_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_FireBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_FireBlast_Snipe.json
index 729dee68..b6ca15dd 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_FireBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_FireBlast_Snipe.json
@@ -272,7 +272,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_FireBlast_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -529,7 +529,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_FireBlast_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_PsychicBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_PsychicBlast_Snipe.json
index 63abda91..a319b36c 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_PsychicBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_PsychicBlast_Snipe.json
@@ -269,7 +269,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_PsychicBlast_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -523,7 +523,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_PsychicBlast_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_RadiationBlast_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_RadiationBlast_Snipe.json
index 98fa4b2e..80dcfbdb 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_RadiationBlast_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Corruptor_RadiationBlast_Snipe.json
@@ -286,7 +286,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_RadiationBlast_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -557,7 +557,7 @@
}
],
"FullSetName": "Villain_Pets.Corruptor_RadiationBlast_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Entangle.json b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Entangle.json
index 58274213..73fb6ada 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Entangle.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Entangle.json
@@ -412,7 +412,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Entangle",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -494,7 +493,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Entangle",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Patch.json b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Patch.json
index 2a6a3b1f..689604f4 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Patch.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Patch.json
@@ -114,7 +114,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Patch",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -310,7 +309,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Patch",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -409,7 +407,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Patch",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Vine.json b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Vine.json
index 14781fb1..0b865915 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Vine.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Creeper_Vine.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Vine",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"AoEModifier": 1.0
},
{
@@ -838,7 +838,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Vine",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -920,7 +919,6 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Vine",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1276,7 +1274,7 @@
}
],
"FullSetName": "Villain_Pets.Creeper_Vine",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dark_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dark_Melee_Assassins_Strike.json
index 6e3bcee2..bc00f230 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dark_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dark_Melee_Assassins_Strike.json
@@ -363,7 +363,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dark_Melee_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Villain_Pets.Dark_Melee_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Corruptor.json b/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Corruptor.json
index a740c5bc..102a4100 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Corruptor.json
@@ -477,7 +477,6 @@
}
],
"FullSetName": "Villain_Pets.DistortionField_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Mastermind.json b/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Mastermind.json
index 3cf1c897..22e62d65 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Mastermind.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.DistortionField_Mastermind.json
@@ -477,7 +477,6 @@
}
],
"FullSetName": "Villain_Pets.DistortionField_Mastermind",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominating_Grasp.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominating_Grasp.json
index 63b4b67b..0423aded 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominating_Grasp.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominating_Grasp.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Villain_Pets.Dominating_Grasp",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -228,7 +227,6 @@
}
],
"FullSetName": "Villain_Pets.Dominating_Grasp",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -310,7 +308,6 @@
}
],
"FullSetName": "Villain_Pets.Dominating_Grasp",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_DarkAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_DarkAssault_Snipe.json
index 1408ccd9..c74ce406 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_DarkAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_DarkAssault_Snipe.json
@@ -229,7 +229,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_DarkAssault_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -443,7 +443,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_DarkAssault_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_ElectricityAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_ElectricityAssault_Snipe.json
index 75fde244..ae6b7b98 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_ElectricityAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_ElectricityAssault_Snipe.json
@@ -329,7 +329,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_ElectricityAssault_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -643,7 +643,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_ElectricityAssault_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_EnergyAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_EnergyAssault_Snipe.json
index 8d6eaf5a..98326f7f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_EnergyAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_EnergyAssault_Snipe.json
@@ -334,7 +334,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_EnergyAssault_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -653,7 +653,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_EnergyAssault_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_FieryAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_FieryAssault_Snipe.json
index e8a8bfd3..2f99423e 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_FieryAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_FieryAssault_Snipe.json
@@ -228,7 +228,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_FieryAssault_Snipe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -441,7 +441,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_FieryAssault_Snipe",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_KineticAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_KineticAssault_Snipe.json
index 27139b1d..72adf9a2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_KineticAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_KineticAssault_Snipe.json
@@ -714,7 +714,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dominator_KineticAssault_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1413,7 +1413,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dominator_KineticAssault_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_MartialAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_MartialAssault_Snipe.json
index da690744..297765d2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_MartialAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_MartialAssault_Snipe.json
@@ -264,7 +264,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_MartialAssault_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -513,7 +513,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_MartialAssault_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_PsionicAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_PsionicAssault_Snipe.json
index 45746727..1e764870 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_PsionicAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_PsionicAssault_Snipe.json
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_PsionicAssault_Snipe",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -435,7 +435,7 @@
}
],
"FullSetName": "Villain_Pets.Dominator_PsionicAssault_Snipe",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_RadioactiveAssault_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_RadioactiveAssault_Snipe.json
index c8dba72a..5933af6f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_RadioactiveAssault_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dominator_RadioactiveAssault_Snipe.json
@@ -342,7 +342,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dominator_RadioactiveAssault_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 2.2
},
{
@@ -667,7 +667,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dominator_RadioactiveAssault_Snipe",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"AoEModifier": 2.2
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Dual_Blades_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Dual_Blades_Assassins_Strike.json
index f95330d6..c072d409 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Dual_Blades_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Dual_Blades_Assassins_Strike.json
@@ -594,7 +594,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Dual_Blades_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -1092,7 +1092,7 @@
}
],
"FullSetName": "Villain_Pets.Dual_Blades_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Electric_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Electric_Melee_Assassins_Strike.json
index f7efa9cf..81df8a59 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Electric_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Electric_Melee_Assassins_Strike.json
@@ -363,7 +363,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Electric_Melee_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Villain_Pets.Electric_Melee_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Energy_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Energy_Melee_Assassins_Strike.json
index 6ef3a559..d0a6e581 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Energy_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Energy_Melee_Assassins_Strike.json
@@ -363,7 +363,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Energy_Melee_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Villain_Pets.Energy_Melee_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Fiery_Melee_Assassins_Blaze.json b/Hero Designer/Data/db/Other/_Villain_Pets.Fiery_Melee_Assassins_Blaze.json
index c34535bc..66bf9398 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Fiery_Melee_Assassins_Blaze.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Fiery_Melee_Assassins_Blaze.json
@@ -329,7 +329,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Fiery_Melee_Assassins_Blaze",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -562,7 +562,7 @@
}
],
"FullSetName": "Villain_Pets.Fiery_Melee_Assassins_Blaze",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Fly_Trap.json b/Hero Designer/Data/db/Other/_Villain_Pets.Fly_Trap.json
index eadd4ecc..1c69746a 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Fly_Trap.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Fly_Trap.json
@@ -420,7 +420,7 @@
}
],
"FullSetName": "Villain_Pets.Fly_Trap",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 2.5
},
{
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Villain_Pets.Fly_Trap",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
},
{
@@ -778,7 +778,7 @@
}
],
"FullSetName": "Villain_Pets.Fly_Trap",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 2.03496885
},
{
@@ -1103,7 +1103,6 @@
}
],
"FullSetName": "Villain_Pets.Fly_Trap",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1279,7 +1278,7 @@
}
],
"FullSetName": "Villain_Pets.Fly_Trap",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Mistress.json b/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Mistress.json
index cdc84176..90a0d692 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Mistress.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Mistress.json
@@ -422,7 +422,6 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -668,7 +667,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"AoEModifier": 4.75
},
{
@@ -846,7 +845,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -928,7 +927,6 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1106,7 +1104,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1312,7 +1310,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1492,7 +1490,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Mistress",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Seer.json b/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Seer.json
index 582c25e5..5fc0b521 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Seer.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Fortunata_Seer.json
@@ -423,7 +423,6 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -558,7 +557,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -714,7 +713,6 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 0.132,
"AoEModifier": 6.25
},
{
@@ -849,7 +847,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -984,7 +982,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1066,7 +1064,6 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1244,7 +1241,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1379,7 +1376,7 @@
}
],
"FullSetName": "Villain_Pets.Fortunata_Seer",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossBuff.json b/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossBuff.json
index 71199d6d..453a30af 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossBuff.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossBuff.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Villain_Pets.HeatLossBuff",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossDebuff.json b/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossDebuff.json
index 967550fb..78ffb23c 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossDebuff.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.HeatLossDebuff.json
@@ -667,7 +667,6 @@
}
],
"FullSetName": "Villain_Pets.HeatLossDebuff",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Ice_Melee_Assassins_Frost.json b/Hero Designer/Data/db/Other/_Villain_Pets.Ice_Melee_Assassins_Frost.json
index 1be22aac..159e0cf3 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Ice_Melee_Assassins_Frost.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Ice_Melee_Assassins_Frost.json
@@ -262,7 +262,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Ice_Melee_Assassins_Frost",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -563,7 +563,7 @@
}
],
"FullSetName": "Villain_Pets.Ice_Melee_Assassins_Frost",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Kinetic_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Kinetic_Melee_Assassins_Strike.json
index 6a51c84d..b732a163 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Kinetic_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Kinetic_Melee_Assassins_Strike.json
@@ -363,7 +363,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Kinetic_Melee_Assassins_Strike",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"AoEModifier": 1.0
},
{
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Villain_Pets.Kinetic_Melee_Assassins_Strike",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Kuji_Kiri.json b/Hero Designer/Data/db/Other/_Villain_Pets.Kuji_Kiri.json
index 43c1c3e4..fcc23354 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Kuji_Kiri.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Kuji_Kiri.json
@@ -146,7 +146,6 @@
}
],
"FullSetName": "Villain_Pets.Kuji_Kiri",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod.json b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod.json
index 20d26fbb..e3674ed7 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod.json
@@ -82,7 +82,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Villain_Pets.Lightning_Rod",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Brute.json b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Brute.json
index 5a0fd6a3..5f8730fa 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Brute.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Brute.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Villain_Pets.Lightning_Rod_Brute",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Stalker.json b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Stalker.json
index 2390d8de..b62c5ef2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Lightning_Rod_Stalker.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Villain_Pets.Lightning_Rod_Stalker",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.MMTwilight.json b/Hero Designer/Data/db/Other/_Villain_Pets.MMTwilight.json
index 8cd87efa..78142e40 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.MMTwilight.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.MMTwilight.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Villain_Pets.MMTwilight",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Martial_Arts_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Martial_Arts_Assassins_Strike.json
index ac6fdfee..58237559 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Martial_Arts_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Martial_Arts_Assassins_Strike.json
@@ -390,7 +390,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Martial_Arts_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -624,7 +624,7 @@
}
],
"FullSetName": "Villain_Pets.Martial_Arts_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Adept.json b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Adept.json
index 6de6d6b5..1a3f7315 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Adept.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Adept.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -427,7 +426,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -708,7 +707,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 4.75
},
{
@@ -895,7 +894,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1099,7 +1097,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1303,7 +1301,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1385,7 +1383,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1560,7 +1557,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Adept",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Guardian.json b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Guardian.json
index 4d8e1c67..81cb5be4 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Guardian.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Guardian.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -425,7 +424,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 4.75
},
{
@@ -612,7 +611,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -816,7 +814,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1020,7 +1018,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1102,7 +1100,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1203,7 +1200,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -1300,7 +1297,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Guardian",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Striker.json b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Striker.json
index 9b77eb59..98a501ad 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Striker.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Mu_Striker.json
@@ -144,7 +144,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -387,7 +386,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 3.25
},
{
@@ -668,7 +667,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 4.75
},
{
@@ -855,7 +854,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1059,7 +1057,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -1263,7 +1261,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -1345,7 +1343,6 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1552,7 +1549,7 @@
}
],
"FullSetName": "Villain_Pets.Mu_Striker",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 2.37995839
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Night_Widow.json b/Hero Designer/Data/db/Other/_Villain_Pets.Night_Widow.json
index 9bad7880..d80bd3c6 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Night_Widow.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Night_Widow.json
@@ -288,7 +288,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"AoEModifier": 1.0
},
{
@@ -605,7 +605,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
},
{
@@ -740,7 +740,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
},
{
@@ -1139,7 +1139,6 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1221,7 +1220,6 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1538,7 +1536,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.0
},
{
@@ -1675,7 +1673,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"AoEModifier": 3.25
},
{
@@ -1992,7 +1990,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -2346,7 +2344,7 @@
}
],
"FullSetName": "Villain_Pets.Night_Widow",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Ninja_Blade_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Ninja_Blade_Assassins_Strike.json
index b91ac53c..0866a37e 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Ninja_Blade_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Ninja_Blade_Assassins_Strike.json
@@ -330,7 +330,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Ninja_Blade_Assassins_Strike",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"AoEModifier": 1.0
},
{
@@ -564,7 +564,7 @@
}
],
"FullSetName": "Villain_Pets.Ninja_Blade_Assassins_Strike",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Noxious_Gas.json b/Hero Designer/Data/db/Other/_Villain_Pets.Noxious_Gas.json
index a5d0566a..98f14d9d 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Noxious_Gas.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Noxious_Gas.json
@@ -764,7 +764,6 @@
}
],
"FullSetName": "Villain_Pets.Noxious_Gas",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickBurn_Corruptor.json b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickBurn_Corruptor.json
index 8ab9c0d7..9f9a1b3f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickBurn_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickBurn_Corruptor.json
@@ -182,7 +182,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickBurn_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -270,7 +269,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickBurn_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -354,7 +352,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickBurn_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -436,7 +433,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickBurn_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickOil_Corruptor.json b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickOil_Corruptor.json
index 6334c16f..15e24e41 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickOil_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickOil_Corruptor.json
@@ -315,7 +315,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickOil_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickTarget_Corruptor.json b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickTarget_Corruptor.json
index 503f7ed0..c708cebe 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickTarget_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.OilSlickTarget_Corruptor.json
@@ -109,7 +109,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickTarget_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -193,7 +192,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickTarget_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1531,7 +1529,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickTarget_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1614,7 +1611,6 @@
}
],
"FullSetName": "Villain_Pets.OilSlickTarget_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Poison_Gas.json b/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Poison_Gas.json
index 63799e50..d80e284d 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Poison_Gas.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Poison_Gas.json
@@ -398,7 +398,6 @@
}
],
"FullSetName": "Villain_Pets.Poison_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -540,7 +539,6 @@
}
],
"FullSetName": "Villain_Pets.Poison_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -622,7 +620,6 @@
}
],
"FullSetName": "Villain_Pets.Poison_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Trap.json b/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Trap.json
index bb25e5c2..f5df9b25 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Trap.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Poison_Trap.json
@@ -176,7 +176,6 @@
}
],
"FullSetName": "Villain_Pets.Poison_Trap",
- "CastTime": 0.132,
"AoEModifier": 3.4
},
{
@@ -1319,7 +1318,6 @@
}
],
"FullSetName": "Villain_Pets.Poison_Trap",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Power_Surge.json b/Hero Designer/Data/db/Other/_Villain_Pets.Power_Surge.json
index b81acde5..f7619624 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Power_Surge.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Power_Surge.json
@@ -404,7 +404,6 @@
}
],
"FullSetName": "Villain_Pets.Power_Surge",
- "CastTime": 0.132,
"AoEModifier": 2.8
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Psionic_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Psionic_Melee_Assassins_Strike.json
index 16e5cf8c..bac22f9f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Psionic_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Psionic_Melee_Assassins_Strike.json
@@ -423,7 +423,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Psionic_Melee_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -786,7 +786,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Psionic_Melee_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Radiation_Melee_Assassins_Corruption.json b/Hero Designer/Data/db/Other/_Villain_Pets.Radiation_Melee_Assassins_Corruption.json
index ebb4921c..cda6ab95 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Radiation_Melee_Assassins_Corruption.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Radiation_Melee_Assassins_Corruption.json
@@ -393,7 +393,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Radiation_Melee_Assassins_Corruption",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -726,7 +726,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Radiation_Melee_Assassins_Corruption",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.RainofArrows_Corruptor.json b/Hero Designer/Data/db/Other/_Villain_Pets.RainofArrows_Corruptor.json
index 2f0ddd92..e8e509ca 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.RainofArrows_Corruptor.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.RainofArrows_Corruptor.json
@@ -217,7 +217,6 @@
}
],
"FullSetName": "Villain_Pets.RainofArrows_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -305,7 +304,6 @@
}
],
"FullSetName": "Villain_Pets.RainofArrows_Corruptor",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Savage_Melee_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Savage_Melee_Assassins_Strike.json
index 318dfc5f..40faa48f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Savage_Melee_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Savage_Melee_Assassins_Strike.json
@@ -360,7 +360,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Savage_Melee_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -625,7 +625,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Savage_Melee_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Scourging_Blast_Proc.json b/Hero Designer/Data/db/Other/_Villain_Pets.Scourging_Blast_Proc.json
index 264e7e94..f154a1e6 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Scourging_Blast_Proc.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Scourging_Blast_Proc.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Villain_Pets.Scourging_Blast_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shade.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shade.json
index aa381ded..bf8e54f2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shade.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shade.json
@@ -257,7 +257,7 @@
}
],
"FullSetName": "Villain_Pets.Shade",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.0
},
{
@@ -709,7 +709,7 @@
}
],
"FullSetName": "Villain_Pets.Shade",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
},
{
@@ -851,7 +851,7 @@
}
],
"FullSetName": "Villain_Pets.Shade",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"AoEModifier": 1.0
},
{
@@ -933,7 +933,6 @@
}
],
"FullSetName": "Villain_Pets.Shade",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field.json
index 8a75638a..2b4d51f5 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field.json
@@ -190,7 +190,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -359,7 +358,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator.json
index 0ac6f278..aa7ec79d 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator.json
@@ -190,7 +190,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field_Dominator",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -322,7 +321,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field_Dominator",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator_Domination.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator_Domination.json
index 75275cf4..0979f125 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator_Domination.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shadow_Field_Dominator_Domination.json
@@ -190,7 +190,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field_Dominator_Domination",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -359,7 +358,6 @@
}
],
"FullSetName": "Villain_Pets.Shadow_Field_Dominator_Domination",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE.json
index a39e34ea..3c83b941 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE.json
@@ -83,7 +83,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Villain_Pets.Shield_Charge_AoE",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 4.0
},
{
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Villain_Pets.Shield_Charge_AoE",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE2.json
index da13b98a..e7149242 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE2.json
@@ -83,7 +83,7 @@
"ForcedClass": "",
"Effects": [],
"FullSetName": "Villain_Pets.Shield_Charge_AoE2",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"AoEModifier": 4.0
},
{
@@ -361,7 +361,6 @@
}
],
"FullSetName": "Villain_Pets.Shield_Charge_AoE2",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE3.json
index 38aaf0d3..5f67b427 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE3.json
@@ -218,7 +218,6 @@
}
],
"FullSetName": "Villain_Pets.Shield_Charge_AoE3",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE4.json b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE4.json
index 11d34ffb..63608a8b 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE4.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Shield_Charge_AoE4.json
@@ -217,7 +217,6 @@
}
],
"FullSetName": "Villain_Pets.Shield_Charge_AoE4",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Sleet.json b/Hero Designer/Data/db/Other/_Villain_Pets.Sleet.json
index 136cc9a7..38f8afce 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Sleet.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Sleet.json
@@ -911,7 +911,6 @@
}
],
"FullSetName": "Villain_Pets.Sleet",
- "CastTime": 0.132,
"AoEModifier": 4.0
},
{
@@ -999,7 +998,6 @@
}
],
"FullSetName": "Villain_Pets.Sleet",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Spines_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Spines_Assassins_Strike.json
index ccfb2a5e..a6e8adab 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Spines_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Spines_Assassins_Strike.json
@@ -330,7 +330,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Spines_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -564,7 +564,7 @@
}
],
"FullSetName": "Villain_Pets.Spines_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Spirit_Tree.json b/Hero Designer/Data/db/Other/_Villain_Pets.Spirit_Tree.json
index baaed18f..d329a9fd 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Spirit_Tree.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Spirit_Tree.json
@@ -108,7 +108,6 @@
}
],
"FullSetName": "Villain_Pets.Spirit_Tree",
- "CastTime": 0.132,
"AoEModifier": 7.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Staff_Fighting_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Staff_Fighting_Assassins_Strike.json
index df63df61..0d0901a1 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Staff_Fighting_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Staff_Fighting_Assassins_Strike.json
@@ -485,7 +485,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Staff_Fighting_Assassins_Strike",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"AoEModifier": 1.0
},
{
@@ -875,7 +875,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Staff_Fighting_Assassins_Strike",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMaceMastery_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMaceMastery_Snipe.json
index ccf51a4e..6af196c6 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMaceMastery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMaceMastery_Snipe.json
@@ -438,7 +438,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicMaceMastery_Snipe",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -861,7 +861,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicMaceMastery_Snipe",
- "CastTime": 8.184,
+ "CastTime": 8.0,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMuMastery_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMuMastery_Snipe.json
index 9a466709..58792f64 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMuMastery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicMuMastery_Snipe.json
@@ -442,7 +442,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicMuMastery_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -869,7 +869,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicMuMastery_Snipe",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicSoulMastery_Snipe.json b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicSoulMastery_Snipe.json
index 91409c18..066d7a36 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicSoulMastery_Snipe.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Stalker_EpicSoulMastery_Snipe.json
@@ -336,7 +336,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicSoulMastery_Snipe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"AoEModifier": 1.0
},
{
@@ -657,7 +657,7 @@
}
],
"FullSetName": "Villain_Pets.Stalker_EpicSoulMastery_Snipe",
- "CastTime": 7.524,
+ "CastTime": 7.33,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_Dominator.json b/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_Dominator.json
index 1e36bff4..2f672a5b 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_Dominator.json
@@ -439,7 +439,6 @@
}
],
"FullSetName": "Villain_Pets.Static_Field_Dominator",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_End_Recovery_Dominator.json b/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_End_Recovery_Dominator.json
index fd5517ac..3db2cdc4 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_End_Recovery_Dominator.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Static_Field_End_Recovery_Dominator.json
@@ -111,7 +111,6 @@
}
],
"FullSetName": "Villain_Pets.Static_Field_End_Recovery_Dominator",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Street_Justice_Assassins_Strike.json b/Hero Designer/Data/db/Other/_Villain_Pets.Street_Justice_Assassins_Strike.json
index bafe1eac..fe604fec 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Street_Justice_Assassins_Strike.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Street_Justice_Assassins_Strike.json
@@ -485,7 +485,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Street_Justice_Assassins_Strike",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"AoEModifier": 1.0
},
{
@@ -875,7 +875,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Villain_Pets.Street_Justice_Assassins_Strike",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Superior_Scourging_Blast_Proc.json b/Hero Designer/Data/db/Other/_Villain_Pets.Superior_Scourging_Blast_Proc.json
index a247b9fc..3eb808f9 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Superior_Scourging_Blast_Proc.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Superior_Scourging_Blast_Proc.json
@@ -143,7 +143,6 @@
}
],
"FullSetName": "Villain_Pets.Superior_Scourging_Blast_Proc",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Thorntrops.json b/Hero Designer/Data/db/Other/_Villain_Pets.Thorntrops.json
index af269852..0ba979bd 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Thorntrops.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Thorntrops.json
@@ -276,7 +276,6 @@
}
],
"FullSetName": "Villain_Pets.Thorntrops",
- "CastTime": 0.132,
"AoEModifier": 3.25
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Titan_Weapons_Brute.json b/Hero Designer/Data/db/Other/_Villain_Pets.Titan_Weapons_Brute.json
index ecd1e5f7..e8e05a20 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Titan_Weapons_Brute.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Titan_Weapons_Brute.json
@@ -458,7 +458,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"AoEModifier": 1.61999214
},
{
@@ -820,7 +820,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"AoEModifier": 1.61999214
},
{
@@ -1248,7 +1248,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"AoEModifier": 1.61999214
},
{
@@ -1572,7 +1572,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"AoEModifier": 1.0
},
{
@@ -1962,7 +1962,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"AoEModifier": 1.0
},
{
@@ -2328,7 +2328,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -2925,7 +2925,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"AoEModifier": 1.0
},
{
@@ -3588,7 +3588,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"AoEModifier": 1.0
},
{
@@ -3949,7 +3949,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.61999214
},
{
@@ -4376,7 +4376,7 @@
}
],
"FullSetName": "Villain_Pets.Titan_Weapons_Brute",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"AoEModifier": 1.61999214
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Toxic_Tarantula.json b/Hero Designer/Data/db/Other/_Villain_Pets.Toxic_Tarantula.json
index 50e980ee..835cbfa0 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Toxic_Tarantula.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Toxic_Tarantula.json
@@ -197,7 +197,7 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"AoEModifier": 1.0
},
{
@@ -348,7 +348,6 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -430,7 +429,6 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -566,7 +564,7 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0
},
{
@@ -705,7 +703,7 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"AoEModifier": 1.34498954
},
{
@@ -1065,7 +1063,7 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"AoEModifier": 2.5
},
{
@@ -1523,7 +1521,7 @@
}
],
"FullSetName": "Villain_Pets.Toxic_Tarantula",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Acid_Mortar.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Acid_Mortar.json
index c34e4d7d..5f121176 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Acid_Mortar.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Acid_Mortar.json
@@ -426,7 +426,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Acid_Mortar",
- "CastTime": 0.132,
"AoEModifier": 2.2
},
{
@@ -1830,7 +1829,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Acid_Mortar",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Bomb.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Bomb.json
index 57af9bb9..ab2641cc 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Bomb.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Bomb.json
@@ -366,7 +366,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Bomb",
- "CastTime": 0.132,
"AoEModifier": 4.75
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_FF_Generator.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_FF_Generator.json
index e165f404..1d910e45 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_FF_Generator.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_FF_Generator.json
@@ -639,7 +639,7 @@
}
],
"FullSetName": "Villain_Pets.Traps_FF_Generator",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"AoEModifier": 4.75
},
{
@@ -790,7 +790,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_FF_Generator",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1337,7 +1336,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_FF_Generator",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Gas.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Gas.json
index e93eae66..ccb8a978 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Gas.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Gas.json
@@ -335,7 +335,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -469,7 +468,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -551,7 +549,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Poison_Gas",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Trap.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Trap.json
index 2f8aa257..b62a253e 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Trap.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Poison_Trap.json
@@ -167,7 +167,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Poison_Trap",
- "CastTime": 0.132,
"AoEModifier": 3.4
},
{
@@ -1310,7 +1309,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Poison_Trap",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker1.json
index f820de6e..90ab51b2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker1.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker1",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker1",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker1",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker2.json
index 9d92a1f8..38ef2bd9 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker2.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker2",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker2",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker2",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker3.json
index 3407a0aa..de84987f 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Seeker3.json
@@ -580,7 +580,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker3",
- "CastTime": 0.132,
"AoEModifier": 3.25
},
{
@@ -731,7 +730,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker3",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -845,7 +843,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Seeker3",
- "CastTime": 0.132,
"AoEModifier": 2.5
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Set_TimeBomb.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Set_TimeBomb.json
index e9fc771d..fcbfcfbb 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Set_TimeBomb.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Set_TimeBomb.json
@@ -210,7 +210,7 @@
}
],
"FullSetName": "Villain_Pets.Traps_Set_TimeBomb",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_TimeBomb.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_TimeBomb.json
index df24ece3..3087d64d 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_TimeBomb.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_TimeBomb.json
@@ -302,7 +302,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_TimeBomb",
- "CastTime": 0.132,
"AoEModifier": 4.75
},
{
@@ -1542,7 +1541,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_TimeBomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1625,7 +1623,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_TimeBomb",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Triage_Beacon.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Triage_Beacon.json
index 7046e2c4..e554f669 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Triage_Beacon.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Triage_Beacon.json
@@ -110,7 +110,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Triage_Beacon",
- "CastTime": 0.132,
"AoEModifier": 7.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Trip_Mine.json b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Trip_Mine.json
index c7229eec..dd819c86 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Trip_Mine.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Traps_Trip_Mine.json
@@ -273,7 +273,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Trip_Mine",
- "CastTime": 0.132,
"AoEModifier": 2.8
},
{
@@ -1416,7 +1415,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Trip_Mine",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1528,7 +1526,6 @@
}
],
"FullSetName": "Villain_Pets.Traps_Trip_Mine",
- "CastTime": 0.132,
"AoEModifier": 3.4
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump1.json b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump1.json
index 8c781a21..61a9e58e 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump1.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump1.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Trick_Shot_Jump1",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump2.json b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump2.json
index 2e04d3d9..4ad8a6e6 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump2.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump2.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Trick_Shot_Jump2",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump3.json b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump3.json
index ac73213b..7e8509e7 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump3.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump3.json
@@ -219,7 +219,6 @@
}
],
"FullSetName": "Villain_Pets.Trick_Shot_Jump3",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump4.json b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump4.json
index bb74ca06..1bb168b5 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump4.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Trick_Shot_Jump4.json
@@ -149,7 +149,6 @@
}
],
"FullSetName": "Villain_Pets.Trick_Shot_Jump4",
- "CastTime": 0.132,
"AoEModifier": 4.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Umbra_Beast.json b/Hero Designer/Data/db/Other/_Villain_Pets.Umbra_Beast.json
index 9ece497b..2050258c 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Umbra_Beast.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Umbra_Beast.json
@@ -191,7 +191,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0
},
{
@@ -428,7 +428,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"AoEModifier": 1.0
},
{
@@ -1008,7 +1008,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"AoEModifier": 1.0
},
{
@@ -1439,7 +1439,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"AoEModifier": 1.0
},
{
@@ -1679,7 +1679,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"AoEModifier": 1.35699379
},
{
@@ -2004,7 +2004,7 @@
}
],
"FullSetName": "Villain_Pets.Umbra_Beast",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"AoEModifier": 2.44994545
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout.json b/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout.json
index bfa93b99..64097cb2 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout.json
@@ -270,7 +270,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout",
- "CastTime": 0.132,
"AoEModifier": 2.05
},
{
@@ -454,7 +453,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -536,7 +534,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -621,7 +618,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -707,7 +703,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout_Stalker.json b/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout_Stalker.json
index 845dd98c..dd4784ac 100644
--- a/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout_Stalker.json
+++ b/Hero Designer/Data/db/Other/_Villain_Pets.Water_Spout_Stalker.json
@@ -270,7 +270,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout_Stalker",
- "CastTime": 0.132,
"AoEModifier": 2.5
},
{
@@ -454,7 +453,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout_Stalker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -536,7 +534,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout_Stalker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -621,7 +618,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout_Stalker",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -707,7 +703,6 @@
}
],
"FullSetName": "Villain_Pets.Water_Spout_Stalker",
- "CastTime": 0.132,
"AoEModifier": 1.0
}
]
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Arachnos_Soldier.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Arachnos_Soldier.json
index afb421e8..b5fd9df6 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Arachnos_Soldier.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Arachnos_Soldier.json
@@ -201,7 +201,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -490,7 +490,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -677,7 +677,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1141,7 +1141,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1331,7 +1331,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1579,7 +1579,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2011,7 +2011,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2309,7 +2309,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Arachnos_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Bane_Spider_Soldier.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Bane_Spider_Soldier.json
index df77a236..586e3657 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Bane_Spider_Soldier.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Bane_Spider_Soldier.json
@@ -349,7 +349,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -635,7 +635,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -923,7 +923,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1313,7 +1313,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1602,7 +1602,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1751,7 +1751,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2077,7 +2077,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2399,7 +2399,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2676,7 +2676,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3001,7 +3001,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.58799589
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Crab_Spider_Soldier.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Crab_Spider_Soldier.json
index b6cc5ad8..248f9006 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Crab_Spider_Soldier.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Arachnos_Soldiers.Crab_Spider_Soldier.json
@@ -206,7 +206,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -387,7 +387,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -572,7 +572,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -962,7 +962,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1153,7 +1153,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.99995041
},
@@ -1337,7 +1337,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.28998911
},
@@ -1770,7 +1770,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2068,7 +2068,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2318,7 +2318,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2431,7 +2431,7 @@
}
],
"FullSetName": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Bane_Spider_Training.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Bane_Spider_Training.json
index 9d7fa36d..1967c115 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Bane_Spider_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Bane_Spider_Training.json
@@ -1132,7 +1132,6 @@
}
],
"FullSetName": "Training_Gadgets.Bane_Spider_Training",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2662,7 +2661,7 @@
}
],
"FullSetName": "Training_Gadgets.Bane_Spider_Training",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3072,7 +3071,7 @@
}
],
"FullSetName": "Training_Gadgets.Bane_Spider_Training",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3398,7 +3397,7 @@
}
],
"FullSetName": "Training_Gadgets.Bane_Spider_Training",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Crab_Spider_Training.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Crab_Spider_Training.json
index 200da99f..240f7ea8 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Crab_Spider_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Crab_Spider_Training.json
@@ -925,7 +925,6 @@
}
],
"FullSetName": "Training_Gadgets.Crab_Spider_Training",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1802,7 +1801,7 @@
}
],
"FullSetName": "Training_Gadgets.Crab_Spider_Training",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1970,7 +1969,7 @@
}
],
"FullSetName": "Training_Gadgets.Crab_Spider_Training",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2145,7 +2144,7 @@
}
],
"FullSetName": "Training_Gadgets.Crab_Spider_Training",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Training_and_Gadgets.json b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Training_and_Gadgets.json
index 29d8f955..20c3a583 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Training_and_Gadgets.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Soldier_Training_Gadgets.Training_and_Gadgets.json
@@ -1172,7 +1172,6 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1267,7 +1266,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1393,7 +1392,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2193,7 +2192,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -2609,7 +2608,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -2998,7 +2997,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -3258,7 +3257,6 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3399,7 +3397,7 @@
}
],
"FullSetName": "Training_Gadgets.Training_and_Gadgets",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Fortunata_Teamwork.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Fortunata_Teamwork.json
index 88b62422..a9d2ff81 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Fortunata_Teamwork.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Fortunata_Teamwork.json
@@ -1550,7 +1550,7 @@
}
],
"FullSetName": "Teamwork.Fortunata_Teamwork",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2036,7 +2036,7 @@
}
],
"FullSetName": "Teamwork.Fortunata_Teamwork",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -2182,7 +2182,7 @@
}
],
"FullSetName": "Teamwork.Fortunata_Teamwork",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3416,7 +3416,7 @@
}
],
"FullSetName": "Teamwork.Fortunata_Teamwork",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 16.0
},
@@ -3563,7 +3563,7 @@
}
],
"FullSetName": "Teamwork.Fortunata_Teamwork",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Teamwork.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Teamwork.json
index ae6413b9..668fddcd 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Teamwork.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Teamwork.json
@@ -297,7 +297,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -423,7 +423,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1223,7 +1223,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 13.0
},
@@ -2180,7 +2180,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2596,7 +2596,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 13.0
},
@@ -2985,7 +2985,7 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 13.0
},
@@ -3712,7 +3712,6 @@
}
],
"FullSetName": "Teamwork.Teamwork",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Widow_Teamwork.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Widow_Teamwork.json
index b04e02b8..51928462 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Widow_Teamwork.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Teamwork.Widow_Teamwork.json
@@ -1547,7 +1547,7 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1807,7 +1807,6 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2293,7 +2292,7 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -2572,7 +2571,7 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3806,7 +3805,7 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 16.0
},
@@ -4251,7 +4250,7 @@
}
],
"FullSetName": "Teamwork.Widow_Teamwork",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Fortunata_Training.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Fortunata_Training.json
index 37d431fa..b7e52df1 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Fortunata_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Fortunata_Training.json
@@ -203,7 +203,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -489,7 +489,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -711,7 +711,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1101,7 +1101,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1282,7 +1282,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1502,7 +1502,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1762,7 +1762,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1946,7 +1946,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2094,7 +2094,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2349,7 +2349,7 @@
}
],
"FullSetName": "Widow_Training.Fortunata_Training",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Night_Widow_Training.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Night_Widow_Training.json
index 84fb31c5..1ea966d1 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Night_Widow_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Night_Widow_Training.json
@@ -199,7 +199,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -600,7 +600,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -740,7 +740,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -1176,7 +1176,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1609,7 +1609,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -1790,7 +1790,7 @@
}
],
"FullSetName": "Widow_Training.Night_Widow_Training",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
}
diff --git a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Widow_Training.json b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Widow_Training.json
index 45e152b3..fd0ea589 100644
--- a/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Widow_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Arachnos_Widow_Widow_Training.Widow_Training.json
@@ -239,7 +239,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -669,7 +669,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1099,7 +1099,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1321,7 +1321,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1881,7 +1881,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2312,7 +2312,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2742,7 +2742,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2884,7 +2884,7 @@
}
],
"FullSetName": "Widow_Training.Widow_Training",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Archery.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Archery.json
index 468732bd..fbd1c5bc 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Archery.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Archery.json
@@ -462,7 +462,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -901,7 +901,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1326,7 +1326,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1802,7 +1802,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2192,7 +2192,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2723,7 +2723,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3267,7 +3267,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3747,7 +3747,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4174,7 +4174,7 @@
}
],
"FullSetName": "Blaster_Ranged.Archery",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Assault_Rifle.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Assault_Rifle.json
index e3a4d5fd..0f5300f6 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Assault_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Assault_Rifle.json
@@ -509,7 +509,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1022,7 +1022,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1521,7 +1521,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2089,7 +2089,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2569,7 +2569,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3221,7 +3221,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3652,7 +3652,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -4061,7 +4061,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4526,7 +4526,7 @@
}
],
"FullSetName": "Blaster_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 3.02657676
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Beam_Rifle.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Beam_Rifle.json
index 0ae698cf..9cafde28 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Beam_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Beam_Rifle.json
@@ -637,7 +637,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1252,7 +1252,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1799,7 +1799,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2380,7 +2380,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2770,7 +2770,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3387,7 +3387,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4112,7 +4112,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4889,7 +4889,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -5548,7 +5548,7 @@
}
],
"FullSetName": "Blaster_Ranged.Beam_Rifle",
- "CastTime": 3.036,
+ "CastTime": 2.9,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dark_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dark_Blast.json
index 500a0d82..5e9211f3 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dark_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dark_Blast.json
@@ -502,7 +502,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -987,7 +987,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1526,7 +1526,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 3.31991267
},
@@ -1916,7 +1916,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2500,7 +2500,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3119,7 +3119,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.30662441
},
@@ -3681,7 +3681,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4198,7 +4198,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4729,7 +4729,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dark_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dual_Pistols.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dual_Pistols.json
index 98fb9b2f..1471e770 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dual_Pistols.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Dual_Pistols.json
@@ -526,7 +526,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -1527,7 +1527,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -2746,7 +2746,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4019,7 +4019,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5330,7 +5330,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -5416,7 +5416,6 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6685,7 +6684,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -8075,7 +8074,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -9369,7 +9368,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -10781,7 +10780,7 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -12229,7 +12228,6 @@
}
],
"FullSetName": "Blaster_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Electrical_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Electrical_Blast.json
index c6b7fbd7..08f13ef6 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Electrical_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Electrical_Blast.json
@@ -603,7 +603,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1183,7 +1183,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1791,7 +1791,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2361,7 +2361,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2751,7 +2751,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3436,7 +3436,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4093,7 +4093,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4486,7 +4486,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5187,7 +5187,7 @@
}
],
"FullSetName": "Blaster_Ranged.Electrical_Blast",
- "CastTime": 3.96,
+ "CastTime": 3.7,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Energy_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Energy_Blast.json
index 3814e1fe..20ca8dca 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Energy_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Energy_Blast.json
@@ -571,7 +571,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1119,7 +1119,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1653,7 +1653,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2200,7 +2200,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2853,7 +2853,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3243,7 +3243,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3824,7 +3824,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4357,7 +4357,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4921,7 +4921,7 @@
}
],
"FullSetName": "Blaster_Ranged.Energy_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Fire_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Fire_Blast.json
index 52391d6e..7cf466da 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Fire_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Fire_Blast.json
@@ -497,7 +497,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -975,7 +975,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1473,7 +1473,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1863,7 +1863,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2296,7 +2296,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2686,7 +2686,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3163,7 +3163,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3746,7 +3746,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4275,7 +4275,7 @@
}
],
"FullSetName": "Blaster_Ranged.Fire_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Ice_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Ice_Blast.json
index e0a66e1e..5cd9da02 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Ice_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Ice_Blast.json
@@ -680,7 +680,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1337,7 +1337,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1951,7 +1951,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2341,7 +2341,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2962,7 +2962,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3355,7 +3355,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4051,7 +4051,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4888,7 +4888,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5285,7 +5285,7 @@
}
],
"FullSetName": "Blaster_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Psychic_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Psychic_Blast.json
index b76db6aa..4f9ff5ee 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Psychic_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Psychic_Blast.json
@@ -498,7 +498,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -973,7 +973,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1520,7 +1520,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1910,7 +1910,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2430,7 +2430,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3010,7 +3010,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3513,7 +3513,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -4034,7 +4034,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4604,7 +4604,7 @@
}
],
"FullSetName": "Blaster_Ranged.Psychic_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Radiation_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Radiation_Blast.json
index 37b3a3e7..839e8e8c 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Radiation_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Radiation_Blast.json
@@ -503,7 +503,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -982,7 +982,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1449,7 +1449,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1988,7 +1988,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2378,7 +2378,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2969,7 +2969,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3526,7 +3526,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3990,7 +3990,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4596,7 +4596,7 @@
}
],
"FullSetName": "Blaster_Ranged.Radiation_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Sonic_Attack.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Sonic_Attack.json
index 38bb59ad..f6e47672 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Sonic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Sonic_Attack.json
@@ -777,7 +777,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1540,7 +1540,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2280,7 +2280,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2887,7 +2887,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -3640,7 +3640,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4030,7 +4030,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4535,7 +4535,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -5366,7 +5366,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6226,7 +6226,7 @@
}
],
"FullSetName": "Blaster_Ranged.Sonic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Water_Blast.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Water_Blast.json
index 8071c59d..128d6012 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Water_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Ranged.Water_Blast.json
@@ -603,7 +603,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1364,7 +1364,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2546,7 +2546,7 @@
}
],
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 1.98,
+ "CastTime": 1.73,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2974,7 +2974,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3721,7 +3721,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4670,7 +4670,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5424,7 +5424,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5964,7 +5964,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -7315,7 +7315,7 @@
}
],
"FullSetName": "Blaster_Ranged.Water_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Darkness_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Darkness_Manipulation.json
index a710ec6f..64f7ce84 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Darkness_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Darkness_Manipulation.json
@@ -588,7 +588,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1132,7 +1132,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1238,7 +1238,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1797,7 +1797,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.24149275
},
@@ -2773,7 +2773,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3402,7 +3402,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3842,7 +3842,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4285,7 +4285,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -4915,7 +4915,7 @@
}
],
"FullSetName": "Blaster_Support.Darkness_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Electricity_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Electricity_Manipulation.json
index 9459f7fe..f3010b18 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Electricity_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Electricity_Manipulation.json
@@ -798,7 +798,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1549,7 +1549,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1762,7 +1762,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2616,7 +2616,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3006,7 +3006,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3615,7 +3615,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4342,7 +4342,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -4833,7 +4833,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -5500,7 +5500,7 @@
}
],
"FullSetName": "Blaster_Support.Electricity_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Energy_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Energy_Manipulation.json
index 12223a96..d3d58e9a 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Energy_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Energy_Manipulation.json
@@ -568,7 +568,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1176,7 +1176,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1566,7 +1566,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2204,7 +2204,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2404,7 +2404,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2916,7 +2916,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3799,7 +3799,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3895,7 +3895,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4477,7 +4477,7 @@
}
],
"FullSetName": "Blaster_Support.Energy_Manipulation",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Fire_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Fire_Manipulation.json
index 4db381f2..3c74f7f7 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Fire_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Fire_Manipulation.json
@@ -719,7 +719,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1287,7 +1287,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1742,7 +1742,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2325,7 +2325,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2715,7 +2715,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2928,7 +2928,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3464,7 +3464,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3973,7 +3973,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4228,7 +4228,7 @@
}
],
"FullSetName": "Blaster_Support.Fire_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Gadgets.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Gadgets.json
index 23ea6856..1ad37f6d 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Gadgets.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Gadgets.json
@@ -786,7 +786,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1178,7 +1178,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1655,7 +1655,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1894,7 +1894,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2394,7 +2394,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3460,7 +3460,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3869,7 +3869,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4278,7 +4278,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 9.24,
+ "CastTime": 9.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4683,7 +4683,7 @@
}
],
"FullSetName": "Blaster_Support.Gadgets",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ice_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ice_Manipulation.json
index a8e4f56e..39992972 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ice_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ice_Manipulation.json
@@ -905,7 +905,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1618,7 +1618,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2362,7 +2362,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2995,7 +2995,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -3385,7 +3385,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3781,7 +3781,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4348,7 +4348,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 5.04995537
},
@@ -4968,7 +4968,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5392,7 +5392,7 @@
}
],
"FullSetName": "Blaster_Support.Ice_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Martial_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Martial_Manipulation.json
index 98dac327..91e184e4 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Martial_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Martial_Manipulation.json
@@ -132,7 +132,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -794,7 +793,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1380,7 +1379,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1466,7 +1465,6 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -1972,7 +1970,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2469,7 +2467,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3027,7 +3025,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -3788,7 +3786,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4295,7 +4293,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -4879,7 +4877,7 @@
}
],
"FullSetName": "Blaster_Support.Martial_Manipulation",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Mental_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Mental_Manipulation.json
index b9c9bd73..9f2d7b5c 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Mental_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Mental_Manipulation.json
@@ -548,7 +548,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1048,7 +1048,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1592,7 +1592,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2053,7 +2053,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -2443,7 +2443,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3020,7 +3020,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3169,7 +3169,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3647,7 +3647,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4184,7 +4184,7 @@
}
],
"FullSetName": "Blaster_Support.Mental_Manipulation",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ninja_Training.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ninja_Training.json
index b0c52891..5485ed7d 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ninja_Training.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Ninja_Training.json
@@ -763,7 +763,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1239,7 +1239,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1761,7 +1761,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3295,7 +3295,6 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3794,7 +3793,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4068,7 +4067,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4764,7 +4763,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -5378,7 +5377,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.862474
},
@@ -5878,7 +5877,7 @@
}
],
"FullSetName": "Blaster_Support.Ninja_Training",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Plant_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Plant_Manipulation.json
index 70228c4a..e38bce69 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Plant_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Plant_Manipulation.json
@@ -795,7 +795,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1338,7 +1338,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1823,7 +1823,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1956,7 +1956,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2452,7 +2452,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2660,7 +2660,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3311,7 +3311,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -3754,7 +3754,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4788,7 +4788,7 @@
}
],
"FullSetName": "Blaster_Support.Plant_Manipulation",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Radiation_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Radiation_Manipulation.json
index ca17ea28..fda195ab 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Radiation_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Radiation_Manipulation.json
@@ -817,7 +817,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1528,7 +1528,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2183,7 +2183,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2573,7 +2573,7 @@
}
],
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2791,7 +2791,7 @@
}
],
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3191,7 +3191,7 @@
}
],
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3799,7 +3799,7 @@
}
],
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -4184,7 +4184,7 @@
}
],
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4899,7 +4899,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Radiation_Manipulation",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Tactical_Arrow.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Tactical_Arrow.json
index 6a2683cd..c36d53ac 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Tactical_Arrow.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Tactical_Arrow.json
@@ -890,7 +890,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1290,7 +1290,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2088,7 +2088,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2512,7 +2512,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3008,7 +3008,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3315,7 +3315,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3576,7 +3576,6 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4110,7 +4109,7 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -5252,7 +5251,6 @@
}
],
"FullSetName": "Blaster_Support.Tactical_Arrow",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Temporal_Manipulation.json b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Temporal_Manipulation.json
index 6b27a9cd..215fe8a8 100644
--- a/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Temporal_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Blaster_Blaster_Support.Temporal_Manipulation.json
@@ -811,7 +811,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1397,7 +1397,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2022,7 +2022,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2557,7 +2557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3187,7 +3187,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3556,7 +3556,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4147,7 +4147,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4866,7 +4866,7 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -5334,7 +5334,6 @@
}
],
"FullSetName": "Blaster_Support.Temporal_Manipulation",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Bio_Organic_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Bio_Organic_Armor.json
index 0e09c98a..7a2cc4ff 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Bio_Organic_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Bio_Organic_Armor.json
@@ -464,7 +464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -568,7 +568,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -1005,7 +1005,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -1748,7 +1748,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2242,7 +2242,6 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3227,7 +3226,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3315,7 +3314,6 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3579,7 +3577,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6120,7 +6118,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -6743,7 +6741,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -7504,7 +7502,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -8515,7 +8513,7 @@
}
],
"FullSetName": "Brute_Defense.Bio_Organic_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Dark_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Dark_Armor.json
index f93a04b5..a8139e32 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Dark_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Dark_Armor.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -562,7 +562,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -983,7 +983,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1637,7 +1637,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1785,7 +1785,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2794,7 +2794,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2977,7 +2977,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3155,7 +3155,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3511,7 +3511,7 @@
}
],
"FullSetName": "Brute_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Electric_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Electric_Armor.json
index c3a77ff2..bf1ab1f9 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Electric_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Electric_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -564,7 +564,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -917,7 +917,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1604,7 +1604,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1906,7 +1906,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2166,7 +2166,6 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2333,7 +2332,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2659,7 +2658,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3909,7 +3908,7 @@
}
],
"FullSetName": "Brute_Defense.Electric_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Energy_Aura.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Energy_Aura.json
index b2955058..c0b65558 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Energy_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Energy_Aura.json
@@ -453,7 +453,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -685,7 +685,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1257,7 +1257,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2517,7 +2517,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2845,7 +2845,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3783,7 +3783,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4509,7 +4509,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -4676,7 +4676,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5444,7 +5444,7 @@
}
],
"FullSetName": "Brute_Defense.Energy_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Fiery_Aura.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Fiery_Aura.json
index 35e72f8c..81cb71d6 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Fiery_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Fiery_Aura.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -662,7 +662,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -801,7 +801,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1094,7 +1094,6 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1787,7 +1786,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2155,7 +2154,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2403,7 +2402,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2795,7 +2794,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3075,7 +3074,7 @@
}
],
"FullSetName": "Brute_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Ice_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Ice_Armor.json
index 57f6341b..512e67fc 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Ice_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Ice_Armor.json
@@ -484,7 +484,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -690,7 +690,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1345,7 +1345,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2919,7 +2919,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3447,7 +3447,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4301,7 +4301,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -4594,7 +4594,6 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4810,7 +4809,7 @@
}
],
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -5223,7 +5222,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Defense.Ice_Armor",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Invulnerability.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Invulnerability.json
index 811c6182..9cff1152 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Invulnerability.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Invulnerability.json
@@ -185,7 +185,6 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -430,7 +429,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -668,7 +667,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -995,7 +994,6 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2499,7 +2497,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2694,7 +2692,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3786,7 +3784,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4088,7 +4086,6 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5068,7 +5065,7 @@
}
],
"FullSetName": "Brute_Defense.Invulnerability",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Radiation_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Radiation_Armor.json
index 28e6483c..6a84a418 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Radiation_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Radiation_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -532,7 +532,6 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +884,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2062,7 +2061,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2525,13 +2524,14 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
{
"CastTimeReal": 0.67,
"ToggleCost": 0.208,
+ "IsModified": true,
"PowerIndex": 2888,
"PowerSetID": 2587,
"PowerSetIndex": 5,
@@ -2650,7 +2650,6 @@
"Reward": "",
"EffectId": "InherentTaunt",
"Special": "",
- "nID": 1,
"EffectType": 19,
"MezType": 11,
"Summon": "",
@@ -2688,7 +2687,6 @@
"Reward": "",
"EffectId": "DeBuff_ToHit",
"Special": "",
- "nID": 2,
"EffectType": 40,
"Summon": "",
"nSummon": -1,
@@ -2723,7 +2721,6 @@
"Reward": "",
"EffectId": "Debuff_Def",
"Special": "",
- "nID": 3,
"EffectType": 5,
"Summon": "",
"nSummon": -1,
@@ -2758,7 +2755,6 @@
"Reward": "",
"EffectId": "StealthOn",
"Special": "",
- "nID": 4,
"EffectType": 9,
"ETModifies": 25,
"Summon": "",
@@ -2793,7 +2789,6 @@
"Reward": "",
"EffectId": "StealthOn",
"Special": "",
- "nID": 5,
"EffectType": 9,
"ETModifies": 25,
"Summon": "",
@@ -2819,7 +2814,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2984,7 +2979,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3321,7 +3316,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4134,7 +4129,7 @@
}
],
"FullSetName": "Brute_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Regeneration.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Regeneration.json
index fd964747..58434f1c 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Regeneration.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Regeneration.json
@@ -150,7 +150,6 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -289,7 +288,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -382,7 +381,6 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -620,7 +618,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1704,7 +1702,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2139,7 +2137,6 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2342,7 +2339,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2577,7 +2574,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3606,7 +3603,7 @@
}
],
"FullSetName": "Brute_Defense.Regeneration",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Shield_Defense.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Shield_Defense.json
index 9b64bf6f..f68e553d 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Shield_Defense.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Shield_Defense.json
@@ -447,7 +447,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -766,7 +766,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1032,7 +1032,6 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2239,7 +2238,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3226,7 +3225,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3505,7 +3504,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3968,7 +3967,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4117,7 +4116,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5070,7 +5069,7 @@
}
],
"FullSetName": "Brute_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Stone_Armor.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Stone_Armor.json
index e523e8b0..36ed43d3 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Stone_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Stone_Armor.json
@@ -362,7 +362,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -490,7 +490,6 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -696,7 +695,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1098,7 +1097,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2415,7 +2414,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2630,7 +2629,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2953,7 +2952,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3310,7 +3309,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5322,7 +5321,7 @@
}
],
"FullSetName": "Brute_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Super_Reflexes.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Super_Reflexes.json
index f3a63255..2ce86e30 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Super_Reflexes.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Super_Reflexes.json
@@ -305,7 +305,7 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -657,7 +657,7 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -965,7 +965,6 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1699,7 +1698,7 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2007,7 +2006,6 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2301,7 +2299,7 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2609,7 +2607,6 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2869,7 +2866,6 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3389,7 +3385,7 @@
}
],
"FullSetName": "Brute_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Willpower.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Willpower.json
index f6649a1e..a8041e59 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Willpower.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Defense.Willpower.json
@@ -424,7 +424,6 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -706,7 +705,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -832,7 +831,6 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2039,7 +2037,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2373,7 +2371,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2466,7 +2464,6 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3076,7 +3073,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4162,7 +4159,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5110,7 +5107,7 @@
}
],
"FullSetName": "Brute_Defense.Willpower",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Battle_Axe.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Battle_Axe.json
index f1cb7584..c7d2c83b 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Battle_Axe.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Battle_Axe.json
@@ -384,7 +384,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -744,7 +744,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1104,7 +1104,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1494,7 +1494,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1854,7 +1854,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2070,7 +2070,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2431,7 +2431,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2792,7 +2792,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.25332212
},
@@ -3155,7 +3155,7 @@
}
],
"FullSetName": "Brute_Melee.Battle_Axe",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.58799589
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Brawling.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Brawling.json
index 8ecbdca8..10a6047d 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Brawling.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Brawling.json
@@ -614,7 +614,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1130,7 +1130,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2106,7 +2106,7 @@
}
],
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2587,7 +2587,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4165,7 +4165,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4345,7 +4345,7 @@
}
],
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -5610,7 +5610,7 @@
}
],
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -6239,7 +6239,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -7214,7 +7214,7 @@
}
],
"FullSetName": "Brute_Melee.Brawling",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Broad_Sword.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Broad_Sword.json
index 49bdc13e..c115d377 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Broad_Sword.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Broad_Sword.json
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -678,7 +678,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1008,7 +1008,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1398,7 +1398,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1765,7 +1765,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1945,7 +1945,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2345,7 +2345,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2746,7 +2746,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3150,7 +3150,7 @@
}
],
"FullSetName": "Brute_Melee.Broad_Sword",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Claws.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Claws.json
index 147df875..d59d4cd7 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Claws.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Claws.json
@@ -320,7 +320,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -616,7 +616,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1044,7 +1044,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1331,7 +1331,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1956,7 +1956,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2136,7 +2136,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2496,7 +2496,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2821,7 +2821,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -3184,7 +3184,7 @@
}
],
"FullSetName": "Brute_Melee.Claws",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dark_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dark_Melee.json
index bda5711e..9310ef14 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dark_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dark_Melee.json
@@ -418,7 +418,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -812,7 +812,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1224,7 +1224,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.24149275
},
@@ -1515,7 +1515,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1879,7 +1879,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2095,7 +2095,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2385,7 +2385,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3203,7 +3203,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 4.224,
+ "CastTime": 4.092,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3679,7 +3679,7 @@
}
],
"FullSetName": "Brute_Melee.Dark_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dual_Blades.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dual_Blades.json
index bdae49b6..efa8a354 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dual_Blades.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Dual_Blades.json
@@ -598,7 +598,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1168,7 +1168,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1778,7 +1778,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2555,7 +2555,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3789,7 +3789,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4005,7 +4005,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4905,7 +4905,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5534,7 +5534,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -6278,7 +6278,7 @@
}
],
"FullSetName": "Brute_Melee.Dual_Blades",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.35699379
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Electrical_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Electrical_Melee.json
index 3efa144d..b887a0b6 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Electrical_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Electrical_Melee.json
@@ -599,7 +599,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1174,7 +1174,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1649,7 +1649,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2039,7 +2039,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2682,7 +2682,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2898,7 +2898,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3465,7 +3465,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3868,7 +3868,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4049,7 +4049,7 @@
}
],
"FullSetName": "Brute_Melee.Electrical_Melee",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Energy_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Energy_Melee.json
index 85827d07..a037f5a6 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Energy_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Energy_Melee.json
@@ -471,7 +471,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -903,7 +903,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1335,7 +1335,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1725,7 +1725,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2158,7 +2158,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2374,7 +2374,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2806,7 +2806,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3170,7 +3170,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3635,7 +3635,7 @@
}
],
"FullSetName": "Brute_Melee.Energy_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Fiery_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Fiery_Melee.json
index 14a8feb2..3065d3e9 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Fiery_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Fiery_Melee.json
@@ -384,7 +384,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -812,7 +812,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1239,7 +1239,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1629,7 +1629,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1924,7 +1924,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2140,7 +2140,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2511,7 +2511,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.43498361
},
@@ -2940,7 +2940,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3368,7 +3368,7 @@
}
],
"FullSetName": "Brute_Melee.Fiery_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Ice_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Ice_Melee.json
index 7389c57a..96159da7 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Ice_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Ice_Melee.json
@@ -567,7 +567,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1104,7 +1104,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1585,7 +1585,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.509991
},
@@ -1975,7 +1975,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2076,7 +2076,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2256,7 +2256,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2793,7 +2793,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3304,7 +3304,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3670,7 +3670,7 @@
}
],
"FullSetName": "Brute_Melee.Ice_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Katana.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Katana.json
index 8ee01cf8..4861450f 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Katana.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Katana.json
@@ -361,7 +361,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -707,7 +707,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1037,7 +1037,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1427,7 +1427,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1794,7 +1794,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1974,7 +1974,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2374,7 +2374,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2775,7 +2775,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3142,7 +3142,7 @@
}
],
"FullSetName": "Brute_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Kinetic_Attack.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Kinetic_Attack.json
index 06aebf0d..1ddc8fee 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Kinetic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Kinetic_Attack.json
@@ -687,7 +687,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1354,7 +1354,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2021,7 +2021,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2159,7 +2159,7 @@
}
],
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2590,7 +2590,7 @@
}
],
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2770,7 +2770,7 @@
}
],
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3434,7 +3434,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4097,7 +4097,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4764,7 +4764,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Kinetic_Attack",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Martial_Arts.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Martial_Arts.json
index 1f9477ed..fe1de4e7 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Martial_Arts.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Martial_Arts.json
@@ -386,7 +386,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -977,7 +977,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1339,7 +1339,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1555,7 +1555,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1913,7 +1913,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2303,7 +2303,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2886,7 +2886,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3247,7 +3247,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3890,7 +3890,7 @@
}
],
"FullSetName": "Brute_Melee.Martial_Arts",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Psionic_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Psionic_Melee.json
index 4d735432..5a1ba88f 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Psionic_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Psionic_Melee.json
@@ -513,7 +513,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1002,7 +1002,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1529,7 +1529,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1919,7 +1919,7 @@
}
],
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2564,7 +2564,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.30309331
},
@@ -2780,7 +2780,7 @@
}
],
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2957,7 +2957,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3562,7 +3562,7 @@
}
],
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4024,7 +4024,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Radiation_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Radiation_Melee.json
index 5e2d716e..3a4abe59 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Radiation_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Radiation_Melee.json
@@ -553,7 +553,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1156,7 +1156,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1607,7 +1607,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.31592667
},
@@ -2032,7 +2032,7 @@
}
],
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2664,7 +2664,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2880,7 +2880,7 @@
}
],
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2990,7 +2990,7 @@
}
],
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3597,7 +3597,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4103,7 +4103,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Radiation_Melee",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Savage_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Savage_Melee.json
index fe7bd026..71b74dcf 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Savage_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Savage_Melee.json
@@ -424,7 +424,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -929,7 +929,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1429,7 +1429,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.32876015
},
@@ -1783,7 +1783,7 @@
}
],
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2250,7 +2250,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2430,7 +2430,7 @@
}
],
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2922,7 +2922,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3414,7 +3414,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3591,7 +3591,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Spines.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Spines.json
index c9707971..ebd17eaf 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Spines.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Spines.json
@@ -616,7 +616,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1210,7 +1210,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1795,7 +1795,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2185,7 +2185,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2809,7 +2809,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3025,7 +3025,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3531,7 +3531,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4192,7 +4192,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -4744,7 +4744,7 @@
}
],
"FullSetName": "Brute_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Staff_Fighting.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Staff_Fighting.json
index b0b05cdf..969ed08e 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Staff_Fighting.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Staff_Fighting.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 10
},
@@ -727,7 +727,7 @@
}
],
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 32
},
@@ -1077,7 +1077,7 @@
}
],
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 33
},
@@ -1852,7 +1852,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2665,7 +2665,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3478,7 +3478,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -5595,7 +5595,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -5681,7 +5681,6 @@
}
],
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5896,7 +5895,7 @@
}
],
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -6693,7 +6692,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -7653,7 +7652,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -9470,7 +9469,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Brute_Melee.Staff_Fighting",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Stone_Melee.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Stone_Melee.json
index b4fe6ec9..1e431567 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Stone_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Stone_Melee.json
@@ -388,7 +388,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -747,7 +747,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.61,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1107,7 +1107,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1497,7 +1497,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1868,7 +1868,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2084,7 +2084,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2448,7 +2448,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2845,7 +2845,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3210,7 +3210,7 @@
}
],
"FullSetName": "Brute_Melee.Stone_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Super_Strength.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Super_Strength.json
index 64e2147d..99f66aaa 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Super_Strength.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Super_Strength.json
@@ -388,7 +388,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -748,7 +748,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1108,7 +1108,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1511,7 +1511,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1947,7 +1947,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2163,7 +2163,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2987,7 +2987,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3384,7 +3384,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3749,7 +3749,7 @@
}
],
"FullSetName": "Brute_Melee.Super_Strength",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Titan_Weapons.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Titan_Weapons.json
index 46dbde12..63c7a639 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Titan_Weapons.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.Titan_Weapons.json
@@ -537,7 +537,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -1006,7 +1006,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1502,7 +1502,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -1957,7 +1957,7 @@
}
],
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2433,7 +2433,7 @@
}
],
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2649,7 +2649,7 @@
}
],
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3381,7 +3381,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3780,7 +3780,7 @@
}
],
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4277,7 +4277,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Brute_Melee.Titan_Weapons",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 1.61999214
}
diff --git a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.War_Mace.json b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.War_Mace.json
index f12c2935..c2093155 100644
--- a/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.War_Mace.json
+++ b/Hero Designer/Data/db/Player/Class_Brute_Brute_Melee.War_Mace.json
@@ -388,7 +388,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -752,7 +752,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1112,7 +1112,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1502,7 +1502,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1866,7 +1866,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2082,7 +2082,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2447,7 +2447,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2810,7 +2810,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.27599168
},
@@ -3173,7 +3173,7 @@
}
],
"FullSetName": "Brute_Melee.War_Mace",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.67199528
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Cold_Domination.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Cold_Domination.json
index a2fce093..2c0457fa 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Cold_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Cold_Domination.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -625,7 +625,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -940,7 +940,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1189,7 +1189,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1324,7 +1324,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2139,7 +2139,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -4734,7 +4734,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4848,7 +4848,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4997,7 +4997,7 @@
}
],
"FullSetName": "Controller_Buff.Cold_Domination",
- "CastTime": 4.092,
+ "CastTime": 3.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Darkness_Affinity.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Darkness_Affinity.json
index 5bd8f951..5c89ea97 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Darkness_Affinity.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Darkness_Affinity.json
@@ -532,7 +532,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -639,7 +639,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1539,7 +1539,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2291,7 +2291,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -2881,7 +2881,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -3031,7 +3031,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3469,7 +3469,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3583,7 +3583,7 @@
}
],
"FullSetName": "Controller_Buff.Darkness_Affinity",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Empathy.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Empathy.json
index d8db71bf..f2e25974 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Empathy.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Empathy.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1191,7 +1191,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1918,7 +1918,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2021,7 +2021,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2123,7 +2123,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2461,7 +2461,7 @@
}
],
"FullSetName": "Controller_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Force_Field.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Force_Field.json
index 81d55e90..18c64127 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Force_Field.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Force_Field.json
@@ -985,7 +985,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1194,7 +1194,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1439,7 +1439,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1786,7 +1786,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2074,7 +2074,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2711,7 +2711,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2945,7 +2945,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -3305,7 +3305,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -3548,7 +3548,7 @@
}
],
"FullSetName": "Controller_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 8.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Kinetics.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Kinetics.json
index 249e5bf9..ce4157c4 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Kinetics.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Kinetics.json
@@ -275,7 +275,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -670,7 +670,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -873,7 +873,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1264,7 +1264,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1890,7 +1890,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2202,7 +2202,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2407,7 +2407,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2583,7 +2583,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2724,7 +2724,7 @@
}
],
"FullSetName": "Controller_Buff.Kinetics",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Nature_Affinity.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Nature_Affinity.json
index cc6c760b..b4858b72 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Nature_Affinity.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Nature_Affinity.json
@@ -930,7 +930,7 @@
}
],
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1138,7 +1138,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.29495978
},
@@ -1557,7 +1557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2311,7 +2311,7 @@
}
],
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2421,7 +2421,7 @@
}
],
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2621,7 +2621,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2897,7 +2897,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3077,7 +3077,7 @@
}
],
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3518,7 +3518,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Pain_Domination.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Pain_Domination.json
index a51c77bd..580eacbd 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Pain_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Pain_Domination.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -718,7 +718,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1648,7 +1648,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2446,7 +2446,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2586,7 +2586,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3267,7 +3267,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3644,7 +3644,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4055,7 +4055,7 @@
}
],
"FullSetName": "Controller_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Poison.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Poison.json
index 9b9c0b7d..5c85569c 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Poison.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Poison.json
@@ -158,7 +158,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1061,7 +1061,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3600,7 +3600,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3959,7 +3959,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -4949,7 +4949,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5614,7 +5614,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5759,7 +5759,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5873,7 +5873,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6568,7 +6568,7 @@
}
],
"FullSetName": "Controller_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Radiation_Emission.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Radiation_Emission.json
index e1399ef5..ef573ed0 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Radiation_Emission.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Radiation_Emission.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -270,7 +270,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -952,7 +952,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1573,7 +1573,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2490,7 +2490,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2848,7 +2848,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3027,7 +3027,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3178,7 +3178,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3577,7 +3577,7 @@
}
],
"FullSetName": "Controller_Buff.Radiation_Emission",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 10.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Sonic_Debuff.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Sonic_Debuff.json
index 61466e64..736861c7 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Sonic_Debuff.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Sonic_Debuff.json
@@ -362,7 +362,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -744,7 +744,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1032,7 +1032,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1371,7 +1371,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1923,7 +1923,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2128,7 +2128,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2760,7 +2760,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2913,7 +2913,7 @@
}
],
"FullSetName": "Controller_Buff.Sonic_Debuff",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Storm_Summoning.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Storm_Summoning.json
index d84623e4..7e5c3c2f 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Storm_Summoning.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Storm_Summoning.json
@@ -313,7 +313,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.3666203
},
@@ -657,7 +657,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -972,7 +972,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1724,7 +1724,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -1841,7 +1841,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2164,7 +2164,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2403,7 +2403,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2522,7 +2522,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2634,7 +2634,7 @@
}
],
"FullSetName": "Controller_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Thermal_Radiation.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Thermal_Radiation.json
index 9a61ce80..142f9532 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Thermal_Radiation.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Thermal_Radiation.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -332,7 +332,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -433,7 +433,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -854,7 +854,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1519,7 +1519,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1893,7 +1893,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2486,7 +2486,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2866,7 +2866,7 @@
}
],
"FullSetName": "Controller_Buff.Thermal_Radiation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Time_Manipulation.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Time_Manipulation.json
index e7e5733f..41cd3340 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Time_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Time_Manipulation.json
@@ -438,7 +438,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -923,7 +923,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2074,7 +2074,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2580,7 +2580,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2690,7 +2690,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3020,7 +3020,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3546,7 +3546,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4251,7 +4251,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4677,7 +4677,7 @@
}
],
"FullSetName": "Controller_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Traps.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Traps.json
index 8cb8b27d..6c34939d 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Traps.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Traps.json
@@ -490,7 +490,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -601,7 +601,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -704,7 +704,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -815,7 +815,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -920,7 +920,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1026,7 +1026,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1174,7 +1174,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1285,7 +1285,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1396,7 +1396,7 @@
}
],
"FullSetName": "Controller_Buff.Traps",
- "CastTime": 9.24,
+ "CastTime": 9.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Trick_Arrow.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Trick_Arrow.json
index 5350243c..9d24262c 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Trick_Arrow.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Buff.Trick_Arrow.json
@@ -514,7 +514,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -730,7 +730,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -837,7 +837,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1298,7 +1298,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1409,7 +1409,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1869,7 +1869,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1971,7 +1971,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2083,7 +2083,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2483,7 +2483,7 @@
}
],
"FullSetName": "Controller_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 6.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Darkness_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Darkness_Control.json
index 5786a9e9..f9691412 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Darkness_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Darkness_Control.json
@@ -582,7 +582,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -953,7 +953,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1514,7 +1514,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.39994049
},
@@ -1698,7 +1698,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1924,7 +1924,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.414927
},
@@ -2313,7 +2313,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2487,7 +2487,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2599,7 +2599,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2712,7 +2712,7 @@
}
],
"FullSetName": "Controller_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Earth_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Earth_Control.json
index bfc8a893..c8aed509 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Earth_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Earth_Control.json
@@ -575,7 +575,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1079,7 +1079,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1634,7 +1634,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1739,7 +1739,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1956,7 +1956,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2289,7 +2289,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2400,7 +2400,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2721,7 +2721,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2831,7 +2831,7 @@
}
],
"FullSetName": "Controller_Control.Earth_Control",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Electric_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Electric_Control.json
index e8cd220a..1cd4d678 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Electric_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Electric_Control.json
@@ -707,7 +707,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1198,7 +1198,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1677,7 +1677,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2149,7 +2149,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2362,7 +2362,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2475,7 +2475,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2770,7 +2770,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -3171,7 +3171,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3318,7 +3318,7 @@
}
],
"FullSetName": "Controller_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Fire_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Fire_Control.json
index 9a09a9c4..b308e2af 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Fire_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Fire_Control.json
@@ -540,7 +540,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -883,7 +883,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1403,7 +1403,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1621,7 +1621,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -1985,7 +1985,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2298,7 +2298,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2480,7 +2480,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2591,7 +2591,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2770,7 +2770,7 @@
}
],
"FullSetName": "Controller_Control.Fire_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Gravity_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Gravity_Control.json
index 5ade0073..3e82c08d 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Gravity_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Gravity_Control.json
@@ -549,7 +549,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -913,7 +913,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1609,7 +1609,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2003,7 +2003,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2534,7 +2534,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2677,7 +2677,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3147,7 +3147,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3700,7 +3700,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3813,7 +3813,7 @@
}
],
"FullSetName": "Controller_Control.Gravity_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Ice_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Ice_Control.json
index c774c61b..a33bac23 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Ice_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Ice_Control.json
@@ -724,7 +724,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1377,7 +1377,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2083,7 +2083,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2506,7 +2506,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2793,7 +2793,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 5.04995537
},
@@ -2894,7 +2894,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3235,7 +3235,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3746,7 +3746,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -3855,7 +3855,7 @@
}
],
"FullSetName": "Controller_Control.Ice_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Illusion_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Illusion_Control.json
index 79e160af..c4e53446 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Illusion_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Illusion_Control.json
@@ -303,7 +303,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -673,7 +673,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -857,7 +857,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1039,7 +1039,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1991,7 +1991,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2939,7 +2939,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3009,11 +3009,10 @@
"Ignore_Buff": [
1,
2,
+ 14,
20
],
"MutexAuto": true,
- "AbsorbSummonAttributes": true,
- "ShowSummonAnyway": true,
"ForcedClass": "",
"Effects": [
{
@@ -3118,7 +3117,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3188,7 +3187,6 @@
"Ignore_Buff": [],
"MutexAuto": true,
"AbsorbSummonEffects": true,
- "AbsorbSummonAttributes": true,
"ForcedClass": "",
"Effects": [
{
@@ -3225,7 +3223,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3335,7 +3333,7 @@
}
],
"FullSetName": "Controller_Control.Illusion_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Mind_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Mind_Control.json
index 99204132..b9613682 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Mind_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Mind_Control.json
@@ -358,7 +358,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -687,7 +687,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1018,7 +1018,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1202,7 +1202,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1388,7 +1388,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1597,7 +1597,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1782,7 +1782,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2122,7 +2122,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.05994654
},
@@ -2308,7 +2308,7 @@
}
],
"FullSetName": "Controller_Control.Mind_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Plant_Control.json b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Plant_Control.json
index b151885b..7a2921cd 100644
--- a/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Plant_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Controller_Controller_Control.Plant_Control.json
@@ -656,7 +656,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -999,7 +999,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1633,7 +1633,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1819,7 +1819,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2005,7 +2005,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.99995041
},
@@ -2111,7 +2111,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2300,7 +2300,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2417,7 +2417,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2529,7 +2529,7 @@
}
],
"FullSetName": "Controller_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Cold_Domination.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Cold_Domination.json
index 84614d40..ee51a2a5 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Cold_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Cold_Domination.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -625,7 +625,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -940,7 +940,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1189,7 +1189,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1324,7 +1324,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2139,7 +2139,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -3507,7 +3507,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3622,7 +3622,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3770,7 +3770,7 @@
}
],
"FullSetName": "Corruptor_Buff.Cold_Domination",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Dark_Miasma.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Dark_Miasma.json
index e2440727..82692213 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Dark_Miasma.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Dark_Miasma.json
@@ -532,7 +532,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -639,7 +639,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1539,7 +1539,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2291,7 +2291,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -2516,7 +2516,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.414927
},
@@ -2661,7 +2661,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3099,7 +3099,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3213,7 +3213,7 @@
}
],
"FullSetName": "Corruptor_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Empathy.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Empathy.json
index 784d237f..f409bc50 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Empathy.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Empathy.json
@@ -125,7 +125,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -226,7 +226,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -431,7 +431,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -596,7 +596,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1192,7 +1192,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1919,7 +1919,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2022,7 +2022,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2124,7 +2124,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2462,7 +2462,7 @@
}
],
"FullSetName": "Corruptor_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Force_Field.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Force_Field.json
index 435762f2..b9a4dd4c 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Force_Field.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Force_Field.json
@@ -985,7 +985,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1194,7 +1194,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1440,7 +1440,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1787,7 +1787,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2075,7 +2075,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2712,7 +2712,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2946,7 +2946,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -3307,7 +3307,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -3550,7 +3550,7 @@
}
],
"FullSetName": "Corruptor_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 8.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Kinetics.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Kinetics.json
index 266d49cd..d7672311 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Kinetics.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Kinetics.json
@@ -276,7 +276,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -671,7 +671,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -874,7 +874,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1265,7 +1265,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1891,7 +1891,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2203,7 +2203,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2408,7 +2408,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2584,7 +2584,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2725,7 +2725,7 @@
}
],
"FullSetName": "Corruptor_Buff.Kinetics",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Nature_Affinity.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Nature_Affinity.json
index 1d204f82..8b9f883b 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Nature_Affinity.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Nature_Affinity.json
@@ -930,7 +930,7 @@
}
],
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1138,7 +1138,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.29495978
},
@@ -1557,7 +1557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2311,7 +2311,7 @@
}
],
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2421,7 +2421,7 @@
}
],
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2621,7 +2621,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2897,7 +2897,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3076,7 +3076,7 @@
}
],
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3517,7 +3517,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Pain_Domination.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Pain_Domination.json
index 5c327ae2..254742d3 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Pain_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Pain_Domination.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -719,7 +719,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1650,7 +1650,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2448,7 +2448,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2588,7 +2588,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3270,7 +3270,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3647,7 +3647,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4058,7 +4058,7 @@
}
],
"FullSetName": "Corruptor_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Poison.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Poison.json
index d3742df5..b9fe1014 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Poison.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Poison.json
@@ -158,7 +158,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1061,7 +1061,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3600,7 +3600,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3959,7 +3959,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -4949,7 +4949,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5614,7 +5614,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5759,7 +5759,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5873,7 +5873,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6568,7 +6568,7 @@
}
],
"FullSetName": "Corruptor_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Radiation_Emission.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Radiation_Emission.json
index 1f5110d9..37f1bff5 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Radiation_Emission.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Radiation_Emission.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -270,7 +270,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -952,7 +952,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1573,7 +1573,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2490,7 +2490,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2848,7 +2848,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2987,7 +2987,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3138,7 +3138,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3536,7 +3536,7 @@
}
],
"FullSetName": "Corruptor_Buff.Radiation_Emission",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 10.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Sonic_Resonance.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Sonic_Resonance.json
index 0075e013..be2ae2ee 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Sonic_Resonance.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Sonic_Resonance.json
@@ -362,7 +362,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -744,7 +744,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1032,7 +1032,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1371,7 +1371,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1894,7 +1894,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2099,7 +2099,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2695,7 +2695,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2850,7 +2850,7 @@
}
],
"FullSetName": "Corruptor_Buff.Sonic_Resonance",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Storm_Summoning.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Storm_Summoning.json
index c1d7b3e8..e04d4085 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Storm_Summoning.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Storm_Summoning.json
@@ -353,7 +353,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.3666203
},
@@ -770,7 +770,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1085,7 +1085,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1837,7 +1837,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -1954,7 +1954,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2277,7 +2277,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2515,7 +2515,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2633,7 +2633,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2746,7 +2746,7 @@
}
],
"FullSetName": "Corruptor_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Thermal_Radiation.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Thermal_Radiation.json
index e601fde0..e1b651b7 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Thermal_Radiation.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Thermal_Radiation.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -332,7 +332,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -433,7 +433,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -854,7 +854,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1517,7 +1517,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1891,7 +1891,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2484,7 +2484,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2864,7 +2864,7 @@
}
],
"FullSetName": "Corruptor_Buff.Thermal_Radiation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Time_Manipulation.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Time_Manipulation.json
index c0ab0cfd..eb034e1d 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Time_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Time_Manipulation.json
@@ -438,7 +438,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -923,7 +923,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2074,7 +2074,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2580,7 +2580,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2689,7 +2689,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3018,7 +3018,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3544,7 +3544,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4249,7 +4249,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4675,7 +4675,7 @@
}
],
"FullSetName": "Corruptor_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Traps.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Traps.json
index e3d651aa..151535e8 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Traps.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Traps.json
@@ -489,7 +489,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -601,7 +601,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -704,7 +704,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -816,7 +816,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -921,7 +921,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1175,7 +1175,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1287,7 +1287,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1399,7 +1399,7 @@
}
],
"FullSetName": "Corruptor_Buff.Traps",
- "CastTime": 9.24,
+ "CastTime": 9.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Trick_Arrow.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Trick_Arrow.json
index 1a046f8e..8b57bed8 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Trick_Arrow.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Buff.Trick_Arrow.json
@@ -513,7 +513,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -729,7 +729,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -834,7 +834,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1294,7 +1294,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1404,7 +1404,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1826,7 +1826,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1928,7 +1928,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2041,7 +2041,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2438,7 +2438,7 @@
}
],
"FullSetName": "Corruptor_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 6.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Archery.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Archery.json
index f7a35503..a339fcea 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Archery.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Archery.json
@@ -240,7 +240,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -456,7 +456,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -675,7 +675,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -929,7 +929,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1319,7 +1319,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1681,7 +1681,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1967,7 +1967,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2225,7 +2225,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2372,7 +2372,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Archery",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Assault_Rifle.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Assault_Rifle.json
index 4f45d840..0e81f17f 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Assault_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Assault_Rifle.json
@@ -292,7 +292,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -582,7 +582,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -875,7 +875,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1237,7 +1237,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1496,7 +1496,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1856,7 +1856,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2087,7 +2087,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2199,7 +2199,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2464,7 +2464,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 3.02657676
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Beam_Rifle.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Beam_Rifle.json
index dd0834ef..931177ab 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Beam_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Beam_Rifle.json
@@ -423,7 +423,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -823,7 +823,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1164,7 +1164,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1523,7 +1523,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1913,7 +1913,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2316,7 +2316,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2793,7 +2793,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3364,7 +3364,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -3817,7 +3817,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Beam_Rifle",
- "CastTime": 3.036,
+ "CastTime": 2.9,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dark_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dark_Blast.json
index c8b6b2ec..e0305489 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dark_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dark_Blast.json
@@ -280,7 +280,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -548,7 +548,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -874,7 +874,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1021,7 +1021,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1516,7 +1516,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.30662441
},
@@ -1787,7 +1787,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.51993251
},
@@ -2084,7 +2084,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 3.31991267
},
@@ -2379,7 +2379,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2704,7 +2704,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dark_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dual_Pistols.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dual_Pistols.json
index caf623b5..aab030b7 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dual_Pistols.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Dual_Pistols.json
@@ -527,7 +527,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -1527,7 +1527,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -2523,7 +2523,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3573,7 +3573,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4684,7 +4684,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -4770,7 +4770,6 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5839,7 +5838,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -7007,7 +7006,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -8079,7 +8078,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -9285,7 +9284,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -10529,7 +10528,6 @@
}
],
"FullSetName": "Corruptor_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Electrical_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Electrical_Blast.json
index 84307162..2504132b 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Electrical_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Electrical_Blast.json
@@ -381,7 +381,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -738,7 +738,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1110,7 +1110,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1516,7 +1516,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1906,7 +1906,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2333,7 +2333,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2732,7 +2732,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2845,7 +2845,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3377,7 +3377,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Electrical_Blast",
- "CastTime": 3.96,
+ "CastTime": 3.7,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Energy_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Energy_Blast.json
index 3521ec4d..42a4fd6d 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Energy_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Energy_Blast.json
@@ -384,7 +384,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -744,7 +744,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1107,7 +1107,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1467,7 +1467,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1897,7 +1897,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2287,7 +2287,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2577,7 +2577,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2939,7 +2939,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3298,7 +3298,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Energy_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Fire_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Fire_Blast.json
index f344fd91..54be5d34 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Fire_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Fire_Blast.json
@@ -275,7 +275,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -530,7 +530,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -857,7 +857,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -967,7 +967,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1202,7 +1202,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1592,7 +1592,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1847,7 +1847,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2172,7 +2172,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2461,7 +2461,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Fire_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Ice_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Ice_Blast.json
index 693b4e1c..e6aeff01 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Ice_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Ice_Blast.json
@@ -493,7 +493,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -962,7 +962,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1376,7 +1376,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1766,7 +1766,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2165,7 +2165,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2278,7 +2278,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2787,7 +2787,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3402,7 +3402,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3519,7 +3519,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Psychic_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Psychic_Blast.json
index b9bdddc6..ccd36592 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Psychic_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Psychic_Blast.json
@@ -276,7 +276,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -572,7 +572,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -894,7 +894,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1149,7 +1149,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1509,7 +1509,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1807,7 +1807,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2104,7 +2104,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2400,7 +2400,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2729,7 +2729,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Psychic_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Radiation_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Radiation_Blast.json
index 1a05efeb..c474245e 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Radiation_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Radiation_Blast.json
@@ -281,7 +281,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -537,7 +537,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -804,7 +804,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1137,7 +1137,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1476,7 +1476,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1866,7 +1866,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2201,7 +2201,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2459,7 +2459,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2824,7 +2824,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Radiation_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Sonic_Attack.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Sonic_Attack.json
index 956ba40f..f188897f 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Sonic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Sonic_Attack.json
@@ -590,7 +590,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1174,7 +1174,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1743,7 +1743,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2107,7 +2107,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2673,7 +2673,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3063,7 +3063,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3326,7 +3326,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -3898,7 +3898,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4555,7 +4555,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Sonic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Water_Blast.json b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Water_Blast.json
index 5598970f..606491ee 100644
--- a/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Water_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Corruptor_Corruptor_Ranged.Water_Blast.json
@@ -381,7 +381,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -919,7 +919,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1895,7 +1895,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 1.98,
+ "CastTime": 1.73,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2043,7 +2043,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2464,7 +2464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3191,7 +3191,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3723,7 +3723,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4057,7 +4057,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -5202,7 +5202,7 @@
}
],
"FullSetName": "Corruptor_Ranged.Water_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Cold_Domination.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Cold_Domination.json
index a579fa11..9b414285 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Cold_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Cold_Domination.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -625,7 +625,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -940,7 +940,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1189,7 +1189,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1324,7 +1324,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2139,7 +2139,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -4734,7 +4734,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4849,7 +4849,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4997,7 +4997,7 @@
}
],
"FullSetName": "Defender_Buff.Cold_Domination",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Dark_Miasma.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Dark_Miasma.json
index 9cca49fe..6aa7fce0 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Dark_Miasma.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Dark_Miasma.json
@@ -836,7 +836,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -943,7 +943,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1627,7 +1627,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2138,7 +2138,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2891,7 +2891,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -3116,7 +3116,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.414927
},
@@ -3261,7 +3261,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3699,7 +3699,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3813,7 +3813,7 @@
}
],
"FullSetName": "Defender_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Empathy.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Empathy.json
index b366f058..b7472200 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Empathy.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Empathy.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1191,7 +1191,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1918,7 +1918,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2020,7 +2020,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2122,7 +2122,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2460,7 +2460,7 @@
}
],
"FullSetName": "Defender_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Force_Field.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Force_Field.json
index ae655639..38f5f3e0 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Force_Field.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Force_Field.json
@@ -985,7 +985,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1194,7 +1194,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1434,7 +1434,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1781,7 +1781,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2069,7 +2069,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2706,7 +2706,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2940,7 +2940,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -3265,7 +3265,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3508,7 +3508,7 @@
}
],
"FullSetName": "Defender_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 8.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Kinetics.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Kinetics.json
index 4b01f173..cbfe725e 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Kinetics.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Kinetics.json
@@ -276,7 +276,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -975,7 +975,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1208,7 +1208,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1599,7 +1599,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2225,7 +2225,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2537,7 +2537,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2742,7 +2742,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2918,7 +2918,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3059,7 +3059,7 @@
}
],
"FullSetName": "Defender_Buff.Kinetics",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Nature_Affinity.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Nature_Affinity.json
index 41ebd51c..162fb0df 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Nature_Affinity.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Nature_Affinity.json
@@ -930,7 +930,7 @@
}
],
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1138,7 +1138,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.29495978
},
@@ -1557,7 +1557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2311,7 +2311,7 @@
}
],
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2421,7 +2421,7 @@
}
],
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2621,7 +2621,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2897,7 +2897,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3076,7 +3076,7 @@
}
],
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3517,7 +3517,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Pain_Domination.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Pain_Domination.json
index e2bc3752..461f4b7f 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Pain_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Pain_Domination.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -719,7 +719,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1650,7 +1650,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2448,7 +2448,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2588,7 +2588,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3270,7 +3270,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3647,7 +3647,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4058,7 +4058,7 @@
}
],
"FullSetName": "Defender_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Poison.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Poison.json
index 3447c2ba..ebbe1b6c 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Poison.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Poison.json
@@ -158,7 +158,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1061,7 +1061,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3600,7 +3600,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3959,7 +3959,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -4949,7 +4949,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5614,7 +5614,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5759,7 +5759,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5873,7 +5873,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6568,7 +6568,7 @@
}
],
"FullSetName": "Defender_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Radiation_Emission.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Radiation_Emission.json
index 26a352fc..b6c949c5 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Radiation_Emission.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Radiation_Emission.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -270,7 +270,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -952,7 +952,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2157,7 +2157,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3074,7 +3074,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3432,7 +3432,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3610,7 +3610,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3761,7 +3761,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4159,7 +4159,7 @@
}
],
"FullSetName": "Defender_Buff.Radiation_Emission",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 10.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Sonic_Debuff.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Sonic_Debuff.json
index 540856ef..0026d938 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Sonic_Debuff.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Sonic_Debuff.json
@@ -650,7 +650,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -824,7 +824,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1032,7 +1032,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1320,7 +1320,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1947,7 +1947,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2506,7 +2506,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2711,7 +2711,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3313,7 +3313,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3467,7 +3467,7 @@
}
],
"FullSetName": "Defender_Buff.Sonic_Debuff",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Storm_Summoning.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Storm_Summoning.json
index c4d19e2d..730f2bc3 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Storm_Summoning.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Storm_Summoning.json
@@ -280,7 +280,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.3666203
},
@@ -696,7 +696,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1011,7 +1011,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1763,7 +1763,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -1881,7 +1881,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2205,7 +2205,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2443,7 +2443,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2562,7 +2562,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2675,7 +2675,7 @@
}
],
"FullSetName": "Defender_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Thermal_Radiation.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Thermal_Radiation.json
index 98c59d07..82e78252 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Thermal_Radiation.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Thermal_Radiation.json
@@ -125,7 +125,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -333,7 +333,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -434,7 +434,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -608,7 +608,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -853,7 +853,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1518,7 +1518,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1892,7 +1892,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2485,7 +2485,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2865,7 +2865,7 @@
}
],
"FullSetName": "Defender_Buff.Thermal_Radiation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Time_Manipulation.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Time_Manipulation.json
index 1f9ca638..25f3df11 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Time_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Time_Manipulation.json
@@ -438,7 +438,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -923,7 +923,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2074,7 +2074,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2580,7 +2580,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2689,7 +2689,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3018,7 +3018,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3544,7 +3544,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4249,7 +4249,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4675,7 +4675,7 @@
}
],
"FullSetName": "Defender_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Traps.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Traps.json
index 21f5bcd5..f947493a 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Traps.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Traps.json
@@ -489,7 +489,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -601,7 +601,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -704,7 +704,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -816,7 +816,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -921,7 +921,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1175,7 +1175,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1288,7 +1288,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1400,7 +1400,7 @@
}
],
"FullSetName": "Defender_Buff.Traps",
- "CastTime": 9.24,
+ "CastTime": 9.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Trick_Arrow.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Trick_Arrow.json
index 6c36a275..4845b5b8 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Trick_Arrow.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Buff.Trick_Arrow.json
@@ -513,7 +513,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -729,7 +729,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -834,7 +834,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1294,7 +1294,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1403,7 +1403,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2150,7 +2150,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2252,7 +2252,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2365,7 +2365,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2764,7 +2764,7 @@
}
],
"FullSetName": "Defender_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 6.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Archery.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Archery.json
index 865e9783..91f672f0 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Archery.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Archery.json
@@ -166,7 +166,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -308,7 +308,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -453,7 +453,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -633,7 +633,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1023,7 +1023,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1311,7 +1311,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1525,7 +1525,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1709,7 +1709,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1856,7 +1856,7 @@
}
],
"FullSetName": "Defender_Ranged.Archery",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Assault_Rifle.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Assault_Rifle.json
index 68f16f57..257b2484 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Assault_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Assault_Rifle.json
@@ -212,7 +212,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -428,7 +428,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -647,7 +647,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -935,7 +935,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1120,7 +1120,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1408,7 +1408,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1559,7 +1559,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1671,7 +1671,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1856,7 +1856,7 @@
}
],
"FullSetName": "Defender_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 3.02657676
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Beam_Rifle.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Beam_Rifle.json
index 8f01514e..43478558 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Beam_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Beam_Rifle.json
@@ -349,7 +349,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -675,7 +675,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -942,7 +942,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1292,7 +1292,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1682,7 +1682,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2011,7 +2011,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2414,7 +2414,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 4.62,
+ "CastTime": 4.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2911,7 +2911,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -3290,7 +3290,7 @@
}
],
"FullSetName": "Defender_Ranged.Beam_Rifle",
- "CastTime": 3.036,
+ "CastTime": 2.9,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dark_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dark_Blast.json
index c91501f4..2e40e68f 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dark_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dark_Blast.json
@@ -206,7 +206,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -394,7 +394,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -648,7 +648,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -795,7 +795,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1134,7 +1134,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.30662441
},
@@ -1325,7 +1325,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.51993251
},
@@ -1584,7 +1584,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 3.31991267
},
@@ -1805,7 +1805,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2056,7 +2056,7 @@
}
],
"FullSetName": "Defender_Ranged.Dark_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dual_Pistols.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dual_Pistols.json
index 3973d4a2..81157db6 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dual_Pistols.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Dual_Pistols.json
@@ -527,7 +527,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -1028,7 +1028,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -1529,7 +1529,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -2451,7 +2451,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3409,7 +3409,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4440,7 +4440,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -4526,7 +4526,6 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5515,7 +5514,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -6609,7 +6608,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -7607,7 +7606,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -8739,7 +8738,7 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.557239
},
@@ -9907,7 +9906,6 @@
}
],
"FullSetName": "Defender_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Electrical_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Electrical_Blast.json
index 968bee08..f160a1d5 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Electrical_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Electrical_Blast.json
@@ -307,7 +307,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -590,7 +590,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -918,7 +918,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1208,7 +1208,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1598,7 +1598,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1953,7 +1953,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2278,7 +2278,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2391,7 +2391,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2849,7 +2849,7 @@
}
],
"FullSetName": "Defender_Ranged.Electrical_Blast",
- "CastTime": 3.96,
+ "CastTime": 3.7,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Energy_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Energy_Blast.json
index 808a1600..3dd99589 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Energy_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Energy_Blast.json
@@ -310,7 +310,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -596,7 +596,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +885,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1171,7 +1171,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1529,7 +1529,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1919,7 +1919,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2205,7 +2205,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2493,7 +2493,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2778,7 +2778,7 @@
}
],
"FullSetName": "Defender_Ranged.Energy_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Fire_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Fire_Blast.json
index 2fc329bc..73336b84 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Fire_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Fire_Blast.json
@@ -201,7 +201,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -382,7 +382,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -600,7 +600,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -710,7 +710,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -863,7 +863,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1253,7 +1253,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1434,7 +1434,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1687,7 +1687,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1936,7 +1936,7 @@
}
],
"FullSetName": "Defender_Ranged.Fire_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Ice_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Ice_Blast.json
index 23caa3e9..3394f3cc 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Ice_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Ice_Blast.json
@@ -419,7 +419,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -814,7 +814,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1148,7 +1148,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1538,7 +1538,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1863,7 +1863,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1976,7 +1976,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2411,7 +2411,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2952,7 +2952,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3069,7 +3069,7 @@
}
],
"FullSetName": "Defender_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Psychic_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Psychic_Blast.json
index 620593cc..8e843409 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Psychic_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Psychic_Blast.json
@@ -202,7 +202,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -424,7 +424,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -674,7 +674,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -855,7 +855,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1141,7 +1141,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1365,7 +1365,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1588,7 +1588,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1810,7 +1810,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2065,7 +2065,7 @@
}
],
"FullSetName": "Defender_Ranged.Psychic_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Radiation_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Radiation_Blast.json
index d65bd155..cb87e9b8 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Radiation_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Radiation_Blast.json
@@ -207,7 +207,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -389,7 +389,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -576,7 +576,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -835,7 +835,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1096,7 +1096,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1486,7 +1486,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1747,7 +1747,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1931,7 +1931,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2257,7 +2257,7 @@
}
],
"FullSetName": "Defender_Ranged.Radiation_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Sonic_Attack.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Sonic_Attack.json
index 98d7206e..3df36f5d 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Sonic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Sonic_Attack.json
@@ -516,7 +516,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1020,7 +1020,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1515,7 +1515,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -1805,7 +1805,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2297,7 +2297,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2687,7 +2687,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2912,7 +2912,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -3482,7 +3482,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4063,7 +4063,7 @@
}
],
"FullSetName": "Defender_Ranged.Sonic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Water_Blast.json b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Water_Blast.json
index 0b2b68f5..fafc9ae5 100644
--- a/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Water_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Defender_Defender_Ranged.Water_Blast.json
@@ -307,7 +307,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -771,7 +771,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1673,7 +1673,7 @@
}
],
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 1.98,
+ "CastTime": 1.73,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1821,7 +1821,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2242,7 +2242,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2895,7 +2895,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3353,7 +3353,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3613,7 +3613,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -4684,7 +4684,7 @@
}
],
"FullSetName": "Defender_Ranged.Water_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Dark_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Dark_Assault.json
index 6aff806d..e5ee7c2a 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Dark_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Dark_Assault.json
@@ -236,7 +236,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -514,7 +514,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -953,7 +953,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.51993251
},
@@ -2168,7 +2168,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2416,7 +2416,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2667,7 +2667,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2949,7 +2949,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3275,7 +3275,7 @@
}
],
"FullSetName": "Dominator_Assault.Dark_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Earth_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Earth_Assault.json
index ebf01cd0..47b74f53 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Earth_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Earth_Assault.json
@@ -271,7 +271,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -513,7 +513,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -757,7 +757,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1040,7 +1040,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1967,7 +1967,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2209,7 +2209,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2535,7 +2535,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2887,7 +2887,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3294,7 +3294,7 @@
}
],
"FullSetName": "Dominator_Assault.Earth_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Electricity_Manipulation.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Electricity_Manipulation.json
index 0352efdd..b38ad067 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Electricity_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Electricity_Manipulation.json
@@ -337,7 +337,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -937,7 +937,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1250,7 +1250,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1861,7 +1861,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2251,7 +2251,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2634,7 +2634,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2947,7 +2947,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -3526,7 +3526,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -3638,7 +3638,7 @@
}
],
"FullSetName": "Dominator_Assault.Electricity_Manipulation",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Energy_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Energy_Assault.json
index 32827fc6..682b0220 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Energy_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Energy_Assault.json
@@ -340,7 +340,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -765,7 +765,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1081,7 +1081,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1397,7 +1397,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2324,7 +2324,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2642,7 +2642,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3097,7 +3097,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3484,7 +3484,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3800,7 +3800,7 @@
}
],
"FullSetName": "Dominator_Assault.Energy_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Fiery_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Fiery_Assault.json
index b7bfbebe..94aab0cf 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Fiery_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Fiery_Assault.json
@@ -231,7 +231,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -436,7 +436,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -619,7 +619,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -830,7 +830,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1180,7 +1180,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1387,7 +1387,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1641,7 +1641,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1922,7 +1922,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2193,7 +2193,7 @@
}
],
"FullSetName": "Dominator_Assault.Fiery_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Icy_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Icy_Assault.json
index 3a11a80f..02958a6a 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Icy_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Icy_Assault.json
@@ -449,7 +449,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -900,7 +900,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1322,7 +1322,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1747,7 +1747,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2674,7 +2674,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3038,7 +3038,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -3283,7 +3283,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3764,7 +3764,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4229,7 +4229,7 @@
}
],
"FullSetName": "Dominator_Assault.Icy_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Martial_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Martial_Assault.json
index b0af4d62..b502eaf6 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Martial_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Martial_Assault.json
@@ -304,7 +304,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -553,7 +553,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -832,7 +832,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1079,7 +1079,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -1251,7 +1251,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1498,7 +1498,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1607,7 +1607,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1889,7 +1889,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2143,7 +2143,7 @@
}
],
"FullSetName": "Dominator_Assault.Martial_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Psionic_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Psionic_Assault.json
index d57a78b4..2f331616 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Psionic_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Psionic_Assault.json
@@ -232,7 +232,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -466,7 +466,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -778,7 +778,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -986,7 +986,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1195,7 +1195,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1523,7 +1523,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1856,7 +1856,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2134,7 +2134,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2557,7 +2557,7 @@
}
],
"FullSetName": "Dominator_Assault.Psionic_Assault",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Radioactive_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Radioactive_Assault.json
index 324a1501..cead5c91 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Radioactive_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Radioactive_Assault.json
@@ -342,7 +342,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -725,7 +725,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1042,7 +1042,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1331,7 +1331,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1756,7 +1756,7 @@
}
],
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2242,7 +2242,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2601,7 +2601,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2997,7 +2997,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 4.488,
+ "CastTime": 4.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3457,7 +3457,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Radioactive_Assault",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Savage_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Savage_Assault.json
index 3fb78acf..3d32736d 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Savage_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Savage_Assault.json
@@ -393,7 +393,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -754,7 +754,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1079,7 +1079,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1454,7 +1454,7 @@
}
],
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1907,7 +1907,7 @@
}
],
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2254,7 +2254,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2392,7 +2392,7 @@
}
],
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2700,7 +2700,7 @@
}
],
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2879,7 +2879,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Assault.Savage_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Thorny_Assault.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Thorny_Assault.json
index 77766a0d..8c2a4296 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Thorny_Assault.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Assault.Thorny_Assault.json
@@ -275,7 +275,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -553,7 +553,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -807,7 +807,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.52997327
},
@@ -1321,7 +1321,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1711,7 +1711,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1958,7 +1958,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2069,7 +2069,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2455,7 +2455,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -2789,7 +2789,7 @@
}
],
"FullSetName": "Dominator_Assault.Thorny_Assault",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Darkness_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Darkness_Control.json
index d03eeb10..d5b3a3c1 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Darkness_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Darkness_Control.json
@@ -545,7 +545,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +885,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1407,7 +1407,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.39994049
},
@@ -1632,7 +1632,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1899,7 +1899,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.414927
},
@@ -2248,7 +2248,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2420,7 +2420,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2570,7 +2570,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2683,7 +2683,7 @@
}
],
"FullSetName": "Dominator_Control.Darkness_Control",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Earth_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Earth_Control.json
index d1f531bb..69e9f582 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Earth_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Earth_Control.json
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1007,7 +1007,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1521,7 +1521,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1626,7 +1626,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1885,7 +1885,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2186,7 +2186,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2297,7 +2297,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2618,7 +2618,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2728,7 +2728,7 @@
}
],
"FullSetName": "Dominator_Control.Earth_Control",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Electric_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Electric_Control.json
index 623e5d5e..bef11b83 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Electric_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Electric_Control.json
@@ -665,7 +665,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1121,7 +1121,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1564,7 +1564,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1961,7 +1961,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2174,7 +2174,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2287,7 +2287,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2583,7 +2583,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2985,7 +2985,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3132,7 +3132,7 @@
}
],
"FullSetName": "Dominator_Control.Electric_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Fire_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Fire_Control.json
index a6e540e4..4de0cb6a 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Fire_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Fire_Control.json
@@ -501,7 +501,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -805,7 +805,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1284,7 +1284,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1502,7 +1502,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -1790,7 +1790,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2063,7 +2063,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2286,7 +2286,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2397,7 +2397,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2576,7 +2576,7 @@
}
],
"FullSetName": "Dominator_Control.Fire_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Gravity_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Gravity_Control.json
index ce4864de..79494ad1 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Gravity_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Gravity_Control.json
@@ -510,7 +510,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -798,7 +798,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1455,7 +1455,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1775,7 +1775,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2263,7 +2263,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2406,7 +2406,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2917,7 +2917,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3257,7 +3257,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3370,7 +3370,7 @@
}
],
"FullSetName": "Dominator_Control.Gravity_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Ice_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Ice_Control.json
index 0298401e..defefc83 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Ice_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Ice_Control.json
@@ -685,7 +685,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1305,7 +1305,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1968,7 +1968,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2394,7 +2394,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2681,7 +2681,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 5.04995537
},
@@ -2782,7 +2782,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3091,7 +3091,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3644,7 +3644,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -3753,7 +3753,7 @@
}
],
"FullSetName": "Dominator_Control.Ice_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Mind_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Mind_Control.json
index 5e94f324..f6e6777d 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Mind_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Mind_Control.json
@@ -326,7 +326,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -579,7 +579,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -877,7 +877,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1101,7 +1101,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1328,7 +1328,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1612,7 +1612,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1838,7 +1838,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2147,7 +2147,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.05994654
},
@@ -2373,7 +2373,7 @@
}
],
"FullSetName": "Dominator_Control.Mind_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Plant_Control.json b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Plant_Control.json
index b5a2310f..759e35a7 100644
--- a/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Plant_Control.json
+++ b/Hero Designer/Data/db/Player/Class_Dominator_Dominator_Control.Plant_Control.json
@@ -577,7 +577,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -881,7 +881,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1436,7 +1436,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1662,7 +1662,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1888,7 +1888,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.99995041
},
@@ -1994,7 +1994,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2220,7 +2220,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2337,7 +2337,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2449,7 +2449,7 @@
}
],
"FullSetName": "Dominator_Control.Plant_Control",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Cold_Domination.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Cold_Domination.json
index 4d320fee..e05a9785 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Cold_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Cold_Domination.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -625,7 +625,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -940,7 +940,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1189,7 +1189,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1324,7 +1324,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2139,7 +2139,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -4734,7 +4734,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4846,7 +4846,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4988,7 +4988,7 @@
}
],
"FullSetName": "Mastermind_Buff.Cold_Domination",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Dark_Miasma.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Dark_Miasma.json
index 80753233..89a57a58 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Dark_Miasma.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Dark_Miasma.json
@@ -531,7 +531,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -638,7 +638,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1027,7 +1027,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1538,7 +1538,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2290,7 +2290,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -2515,7 +2515,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.02992368
},
@@ -2660,7 +2660,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3098,7 +3098,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3212,7 +3212,7 @@
}
],
"FullSetName": "Mastermind_Buff.Dark_Miasma",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Empathy.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Empathy.json
index 7d2137e0..a093df92 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Empathy.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Empathy.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -430,7 +430,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1191,7 +1191,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1918,7 +1918,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2021,7 +2021,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2123,7 +2123,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2461,7 +2461,7 @@
}
],
"FullSetName": "Mastermind_Buff.Empathy",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Force_Field.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Force_Field.json
index b3e0d360..ce0ce21e 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Force_Field.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Force_Field.json
@@ -233,7 +233,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -442,7 +442,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -789,7 +789,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1077,7 +1077,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2038,7 +2038,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2675,7 +2675,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2909,7 +2909,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -3232,7 +3232,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -3475,7 +3475,7 @@
}
],
"FullSetName": "Mastermind_Buff.Force_Field",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 8.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Kinetics.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Kinetics.json
index 3b6c5bcf..6c1a8d1b 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Kinetics.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Kinetics.json
@@ -276,7 +276,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -671,7 +671,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -874,7 +874,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1265,7 +1265,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1891,7 +1891,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2203,7 +2203,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2408,7 +2408,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2584,7 +2584,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2725,7 +2725,7 @@
}
],
"FullSetName": "Mastermind_Buff.Kinetics",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Nature_Affinity.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Nature_Affinity.json
index 23ced199..e85357cc 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Nature_Affinity.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Nature_Affinity.json
@@ -930,7 +930,7 @@
}
],
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1138,7 +1138,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.29495978
},
@@ -1557,7 +1557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2311,7 +2311,7 @@
}
],
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2421,7 +2421,7 @@
}
],
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2621,7 +2621,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2897,7 +2897,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3076,7 +3076,7 @@
}
],
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3517,7 +3517,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Nature_Affinity",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Pain_Domination.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Pain_Domination.json
index f1ee319f..d58fea89 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Pain_Domination.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Pain_Domination.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -225,7 +225,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -719,7 +719,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1650,7 +1650,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2448,7 +2448,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2552,7 +2552,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3234,7 +3234,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -3611,7 +3611,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4056,7 +4056,7 @@
}
],
"FullSetName": "Mastermind_Buff.Pain_Domination",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Poison.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Poison.json
index 90e5107a..85e42623 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Poison.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Poison.json
@@ -158,7 +158,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1061,7 +1061,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3600,7 +3600,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3959,7 +3959,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -4949,7 +4949,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5614,7 +5614,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5759,7 +5759,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5872,7 +5872,7 @@
}
],
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5969,7 +5969,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Poison",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Radiation_Emission.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Radiation_Emission.json
index 9f2aff15..3e940247 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Radiation_Emission.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Radiation_Emission.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -270,7 +270,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -953,7 +953,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1574,7 +1574,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2491,7 +2491,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2849,7 +2849,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -3028,7 +3028,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3180,7 +3180,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3579,7 +3579,7 @@
}
],
"FullSetName": "Mastermind_Buff.Radiation_Emission",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 10.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Sonic_Resonance.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Sonic_Resonance.json
index c64a0016..e95680dd 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Sonic_Resonance.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Sonic_Resonance.json
@@ -362,7 +362,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -536,7 +536,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -744,7 +744,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1032,7 +1032,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1371,7 +1371,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1894,7 +1894,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2099,7 +2099,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2695,7 +2695,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2847,7 +2847,7 @@
}
],
"FullSetName": "Mastermind_Buff.Sonic_Resonance",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Storm_Summoning.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Storm_Summoning.json
index 4b495b18..a1941814 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Storm_Summoning.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Storm_Summoning.json
@@ -279,7 +279,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.3666203
},
@@ -696,7 +696,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1011,7 +1011,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1762,7 +1762,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 7.0
},
@@ -1878,7 +1878,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2200,7 +2200,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2346,7 +2346,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2464,7 +2464,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2576,7 +2576,7 @@
}
],
"FullSetName": "Mastermind_Buff.Storm_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Thermal_Radiation.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Thermal_Radiation.json
index 4201f72e..98b6c7e1 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Thermal_Radiation.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Thermal_Radiation.json
@@ -124,7 +124,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -332,7 +332,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -433,7 +433,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -853,7 +853,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1516,7 +1516,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1890,7 +1890,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2483,7 +2483,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2863,7 +2863,7 @@
}
],
"FullSetName": "Mastermind_Buff.Thermal_Radiation",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Time_Manipulation.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Time_Manipulation.json
index 006fee11..a398d814 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Time_Manipulation.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Time_Manipulation.json
@@ -438,7 +438,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -923,7 +923,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2074,7 +2074,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -2580,7 +2580,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2689,7 +2689,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3018,7 +3018,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3544,7 +3544,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4249,7 +4249,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4675,7 +4675,7 @@
}
],
"FullSetName": "Mastermind_Buff.Time_Manipulation",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Traps.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Traps.json
index 68df6798..bdf5b2c0 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Traps.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Traps.json
@@ -487,7 +487,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 1.584,
+ "CastTime": 1.37,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -598,7 +598,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -701,7 +701,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -812,7 +812,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -917,7 +917,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1024,7 +1024,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.904,
+ "CastTime": 2.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1171,7 +1171,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1282,7 +1282,7 @@
}
],
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 5.148,
+ "CastTime": 5.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1420,7 +1420,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Buff.Traps",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Trick_Arrow.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Trick_Arrow.json
index 0109a3a5..e68221bd 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Trick_Arrow.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Buff.Trick_Arrow.json
@@ -515,7 +515,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -837,7 +837,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1297,7 +1297,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1407,7 +1407,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1828,7 +1828,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1930,7 +1930,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2042,7 +2042,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.31999993,
+ "CastTime": 1.16,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2440,7 +2440,7 @@
}
],
"FullSetName": "Mastermind_Buff.Trick_Arrow",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 6.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Beast_Mastery.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Beast_Mastery.json
index 5d270433..a53c3592 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Beast_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Beast_Mastery.json
@@ -393,7 +393,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -480,6 +480,7 @@
"IgnoreEnh": [],
"Ignore_Buff": [],
"MutexAuto": true,
+ "AbsorbSummonAttributes": true,
"ForcedClass": "",
"Effects": [
{
@@ -585,7 +586,7 @@
}
],
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -919,7 +920,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1467,7 +1468,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1875,7 +1876,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1954,6 +1955,7 @@
"IgnoreEnh": [],
"Ignore_Buff": [],
"MutexAuto": true,
+ "AbsorbSummonAttributes": true,
"ForcedClass": "",
"Effects": [
{
@@ -2025,7 +2027,7 @@
}
],
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2537,7 +2539,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2623,6 +2625,7 @@
"IgnoreEnh": [],
"Ignore_Buff": [],
"MutexAuto": true,
+ "AbsorbSummonEffects": true,
"ForcedClass": "",
"Effects": [
{
@@ -2660,7 +2663,7 @@
}
],
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 4.884,
+ "CastTime": 4.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3208,7 +3211,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Beast_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Demon_Summoning.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Demon_Summoning.json
index ada49dd1..81444b10 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Demon_Summoning.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Demon_Summoning.json
@@ -501,7 +501,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -694,7 +694,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1225,7 +1225,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1773,7 +1773,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2307,7 +2307,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.86996722
},
@@ -2454,7 +2454,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3164,7 +3164,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 4.224,
+ "CastTime": 4.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3277,7 +3277,7 @@
}
],
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3795,7 +3795,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Demon_Summoning",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Mercenaries.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Mercenaries.json
index 6f3e02a1..f5f12eb3 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Mercenaries.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Mercenaries.json
@@ -211,7 +211,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -388,7 +388,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -603,7 +603,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1064,7 +1064,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1351,7 +1351,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1501,7 +1501,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2385,7 +2385,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2495,7 +2495,7 @@
}
],
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3106,7 +3106,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Mercenaries",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Necromancy.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Necromancy.json
index 1c4cf922..58b49bf9 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Necromancy.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Necromancy.json
@@ -205,7 +205,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -382,7 +382,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -569,7 +569,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1117,7 +1117,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1336,7 +1336,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1485,7 +1485,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1696,7 +1696,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1818,7 +1818,7 @@
}
],
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2546,7 +2546,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Necromancy",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Ninjas.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Ninjas.json
index e3f80097..4786c1b7 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Ninjas.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Ninjas.json
@@ -165,7 +165,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -344,7 +344,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -485,7 +485,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -915,7 +915,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1059,7 +1059,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1216,7 +1216,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.848,
+ "CastTime": 1.7,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1448,7 +1448,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1559,7 +1559,7 @@
}
],
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2019,7 +2019,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Ninjas",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Robotics.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Robotics.json
index c0d228a7..a6be723e 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Robotics.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Robotics.json
@@ -235,7 +235,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -410,7 +410,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -625,7 +625,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -965,7 +965,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -1256,7 +1256,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1407,7 +1407,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1542,7 +1542,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1651,7 +1651,7 @@
}
],
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1991,7 +1991,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Robotics",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Thugs.json b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Thugs.json
index 8999fc86..a71bb0cf 100644
--- a/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Thugs.json
+++ b/Hero Designer/Data/db/Player/Class_Mastermind_Mastermind_Summon.Thugs.json
@@ -165,7 +165,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -340,7 +340,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -561,7 +561,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2391,7 +2391,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.452,
+ "CastTime": 1.3,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -2615,7 +2615,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2761,7 +2761,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3249,7 +3249,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3360,7 +3360,7 @@
}
],
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5241,7 +5241,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Mastermind_Summon.Thugs",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 5.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Defensive.Luminous_Aura.json b/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Defensive.Luminous_Aura.json
index a1223ad4..729b58c4 100644
--- a/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Defensive.Luminous_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Defensive.Luminous_Aura.json
@@ -156,7 +156,6 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -367,7 +366,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -574,7 +573,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -785,7 +784,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1031,7 +1030,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1243,7 +1242,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 10.0
},
@@ -3740,7 +3739,6 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3838,7 +3836,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3936,7 +3934,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4903,7 +4901,6 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5414,7 +5411,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5645,7 +5641,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6744,7 +6740,7 @@
}
],
"FullSetName": "Peacebringer_Defensive.Luminous_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Offensive.Luminous_Blast.json b/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Offensive.Luminous_Blast.json
index ee3436ad..3401e47e 100644
--- a/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Offensive.Luminous_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Peacebringer_Peacebringer_Offensive.Luminous_Blast.json
@@ -212,7 +212,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -394,7 +394,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -650,7 +650,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1208,7 +1208,6 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1564,7 +1563,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1749,7 +1748,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2463,7 +2462,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2721,7 +2720,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3155,7 +3154,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3336,7 +3335,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3437,7 +3436,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3690,7 +3689,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3945,7 +3944,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -4122,7 +4121,7 @@
}
],
"FullSetName": "Peacebringer_Offensive.Luminous_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Bio_Organic_Armor.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Bio_Organic_Armor.json
index b2671bae..aea43666 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Bio_Organic_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Bio_Organic_Armor.json
@@ -464,7 +464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -601,7 +601,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -1072,7 +1072,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -1778,7 +1778,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2272,7 +2272,6 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3229,7 +3228,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3317,7 +3316,6 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3581,7 +3579,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6122,7 +6120,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -6649,7 +6647,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -7307,7 +7305,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -8238,7 +8236,7 @@
}
],
"FullSetName": "Scrapper_Defense.Bio_Organic_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Dark_Armor.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Dark_Armor.json
index 34771461..41c2d8ab 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Dark_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Dark_Armor.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -483,7 +483,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -904,7 +904,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1558,7 +1558,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1705,7 +1705,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2714,7 +2714,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2899,7 +2899,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3079,7 +3079,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3435,7 +3435,7 @@
}
],
"FullSetName": "Scrapper_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Electric_Armor.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Electric_Armor.json
index 2894c787..a64f87ed 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Electric_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Electric_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -485,7 +485,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -838,7 +838,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1525,7 +1525,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1827,7 +1827,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1994,7 +1994,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2254,7 +2254,6 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2501,7 +2500,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3751,7 +3750,7 @@
}
],
"FullSetName": "Scrapper_Defense.Electric_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Energy_Aura.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Energy_Aura.json
index 0e991845..1c948c2c 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Energy_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Energy_Aura.json
@@ -452,7 +452,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -684,7 +684,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1255,7 +1255,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2512,7 +2512,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2840,7 +2840,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3777,7 +3777,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3944,7 +3944,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4589,7 +4589,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -5357,7 +5357,7 @@
}
],
"FullSetName": "Scrapper_Defense.Energy_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Fiery_Aura.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Fiery_Aura.json
index 6bd49b1f..892a9587 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Fiery_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Fiery_Aura.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -583,7 +583,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -722,7 +722,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1015,7 +1015,6 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1708,7 +1707,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1960,7 +1959,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2209,7 +2208,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2601,7 +2600,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2881,7 +2880,7 @@
}
],
"FullSetName": "Scrapper_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ice_Armor.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ice_Armor.json
index 1ec79061..1a203197 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ice_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ice_Armor.json
@@ -484,7 +484,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -690,7 +690,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1264,7 +1264,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2838,7 +2838,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3366,7 +3366,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4140,7 +4140,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -4433,7 +4433,6 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4570,7 +4569,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -5427,7 +5426,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ice_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Invulnerability.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Invulnerability.json
index a58b1390..75d3c79a 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Invulnerability.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Invulnerability.json
@@ -185,7 +185,6 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -431,7 +430,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -669,7 +668,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -996,7 +995,6 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2496,7 +2494,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2691,7 +2689,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3785,7 +3783,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4087,7 +4085,6 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5067,7 +5064,7 @@
}
],
"FullSetName": "Scrapper_Defense.Invulnerability",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ninjitsu.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ninjitsu.json
index b9282b52..bd295303 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ninjitsu.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Ninjitsu.json
@@ -235,7 +235,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -623,7 +623,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1678,7 +1678,6 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2461,7 +2460,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2556,7 +2555,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2695,7 +2694,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3233,7 +3232,6 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3567,7 +3565,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.862474
},
@@ -4086,7 +4084,7 @@
}
],
"FullSetName": "Scrapper_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Radiation_Armor.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Radiation_Armor.json
index 49b1ca20..7fe8f165 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Radiation_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Radiation_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -532,7 +532,6 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +884,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2062,7 +2061,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2479,7 +2478,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2773,7 +2772,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2938,7 +2937,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3195,7 +3194,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4008,7 +4007,7 @@
}
],
"FullSetName": "Scrapper_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Regeneration.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Regeneration.json
index 237eeae3..1f285be0 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Regeneration.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Regeneration.json
@@ -151,7 +151,6 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -290,7 +289,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -383,7 +382,6 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -621,7 +619,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1623,7 +1621,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2058,7 +2056,6 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2261,7 +2258,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2496,7 +2493,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3525,7 +3522,7 @@
}
],
"FullSetName": "Scrapper_Defense.Regeneration",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Shield_Defense.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Shield_Defense.json
index cddf59a5..21fccb79 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Shield_Defense.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Shield_Defense.json
@@ -465,7 +465,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -784,7 +784,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1050,7 +1050,6 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2256,7 +2255,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3245,7 +3244,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3523,7 +3522,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3986,7 +3985,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4132,7 +4131,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5086,7 +5085,7 @@
}
],
"FullSetName": "Scrapper_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Super_Reflexes.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Super_Reflexes.json
index 90abd2af..f66acd98 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Super_Reflexes.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Super_Reflexes.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -658,7 +658,7 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -966,7 +966,6 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1700,7 +1699,7 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2008,7 +2007,6 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2268,7 +2266,6 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2576,7 +2573,6 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2787,7 +2783,7 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3307,7 +3303,7 @@
}
],
"FullSetName": "Scrapper_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Willpower.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Willpower.json
index 75e613e5..c95d0c64 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Willpower.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Defense.Willpower.json
@@ -424,7 +424,6 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -706,7 +705,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -832,7 +831,6 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2046,7 +2044,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2380,7 +2378,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2473,7 +2471,6 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3083,7 +3080,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4169,7 +4166,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5117,7 +5114,7 @@
}
],
"FullSetName": "Scrapper_Defense.Willpower",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Battle_Axe.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Battle_Axe.json
index 0051f64f..5fba8913 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Battle_Axe.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Battle_Axe.json
@@ -374,7 +374,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -724,7 +724,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1074,7 +1074,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1464,7 +1464,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1814,7 +1814,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2028,7 +2028,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2379,7 +2379,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2732,7 +2732,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
},
@@ -3085,7 +3085,7 @@
}
],
"FullSetName": "Scrapper_Melee.Battle_Axe",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.58799589
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Brawling.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Brawling.json
index 451ed153..ad85a486 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Brawling.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Brawling.json
@@ -604,7 +604,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1110,7 +1110,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2076,7 +2076,7 @@
}
],
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2557,7 +2557,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4125,7 +4125,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4339,7 +4339,7 @@
}
],
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5630,7 +5630,7 @@
}
],
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -6249,7 +6249,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -7214,7 +7214,7 @@
}
],
"FullSetName": "Scrapper_Melee.Brawling",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Broad_Sword.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Broad_Sword.json
index ea27ff24..8cf4d024 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Broad_Sword.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Broad_Sword.json
@@ -341,7 +341,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -658,7 +658,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -978,7 +978,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1368,7 +1368,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1725,7 +1725,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1939,7 +1939,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2329,7 +2329,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2720,7 +2720,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3077,7 +3077,7 @@
}
],
"FullSetName": "Scrapper_Melee.Broad_Sword",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Claws.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Claws.json
index 8c86105f..677f340f 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Claws.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Claws.json
@@ -412,7 +412,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -698,7 +698,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1116,7 +1116,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1393,7 +1393,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2009,7 +2009,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2223,7 +2223,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2573,7 +2573,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2815,7 +2815,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -3168,7 +3168,7 @@
}
],
"FullSetName": "Scrapper_Melee.Claws",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dark_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dark_Melee.json
index 062ad6dc..b9c11545 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dark_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dark_Melee.json
@@ -408,7 +408,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -792,7 +792,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1196,7 +1196,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.24149275
},
@@ -1452,7 +1452,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1804,7 +1804,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2018,7 +2018,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2298,7 +2298,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3107,7 +3107,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3612,7 +3612,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dark_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dual_Blades.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dual_Blades.json
index eb89320e..64a34afd 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dual_Blades.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Dual_Blades.json
@@ -596,7 +596,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1164,7 +1164,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1771,7 +1771,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2476,7 +2476,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3707,7 +3707,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3921,7 +3921,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4854,7 +4854,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5444,7 +5444,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -6184,7 +6184,7 @@
}
],
"FullSetName": "Scrapper_Melee.Dual_Blades",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.35699379
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Electrical_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Electrical_Melee.json
index b38b37ff..f39a876c 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Electrical_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Electrical_Melee.json
@@ -589,7 +589,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1154,7 +1154,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1620,7 +1620,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2010,7 +2010,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2643,7 +2643,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2821,7 +2821,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3379,7 +3379,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3668,7 +3668,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3846,7 +3846,7 @@
}
],
"FullSetName": "Scrapper_Melee.Electrical_Melee",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Fiery_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Fiery_Melee.json
index b5b38639..71b357b2 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Fiery_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Fiery_Melee.json
@@ -375,7 +375,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -794,7 +794,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1212,7 +1212,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1602,7 +1602,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1961,7 +1961,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.43498361
},
@@ -2175,7 +2175,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2595,7 +2595,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2880,7 +2880,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3299,7 +3299,7 @@
}
],
"FullSetName": "Scrapper_Melee.Fiery_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Ice_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Ice_Melee.json
index 49ec0b3a..675a27e5 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Ice_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Ice_Melee.json
@@ -557,7 +557,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1084,7 +1084,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1558,7 +1558,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.509991
},
@@ -1948,7 +1948,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2049,7 +2049,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2264,7 +2264,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2791,7 +2791,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3295,7 +3295,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3651,7 +3651,7 @@
}
],
"FullSetName": "Scrapper_Melee.Ice_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Katana.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Katana.json
index 909fd1e8..2d20783b 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Katana.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Katana.json
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -692,7 +692,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1012,7 +1012,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1402,7 +1402,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1759,7 +1759,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1973,7 +1973,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2363,7 +2363,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2754,7 +2754,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3074,7 +3074,7 @@
}
],
"FullSetName": "Scrapper_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Kinetic_Attack.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Kinetic_Attack.json
index 1c301582..bd3a2f1b 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Kinetic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Kinetic_Attack.json
@@ -677,7 +677,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1334,7 +1334,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1991,7 +1991,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2129,7 +2129,7 @@
}
],
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2550,7 +2550,7 @@
}
],
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2764,7 +2764,7 @@
}
],
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3418,7 +3418,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4071,7 +4071,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4656,7 +4656,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Kinetic_Attack",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Martial_Arts.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Martial_Arts.json
index 4ff42318..0a13c79d 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Martial_Arts.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Martial_Arts.json
@@ -378,7 +378,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -650,7 +650,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -969,7 +969,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1359,7 +1359,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1709,7 +1709,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1923,7 +1923,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2498,7 +2498,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2851,7 +2851,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3270,7 +3270,7 @@
}
],
"FullSetName": "Scrapper_Melee.Martial_Arts",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Psionic_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Psionic_Melee.json
index e33593cf..f7f95ccc 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Psionic_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Psionic_Melee.json
@@ -503,7 +503,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -982,7 +982,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1499,7 +1499,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1888,7 +1888,7 @@
}
],
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2523,7 +2523,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.30309331
},
@@ -2737,7 +2737,7 @@
}
],
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2914,7 +2914,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3509,7 +3509,7 @@
}
],
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3961,7 +3961,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Quills.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Quills.json
index e6c65975..70afc241 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Quills.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Quills.json
@@ -606,7 +606,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1190,7 +1190,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1765,7 +1765,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2155,7 +2155,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2769,7 +2769,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2983,7 +2983,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3515,7 +3515,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4166,7 +4166,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -4743,7 +4743,7 @@
}
],
"FullSetName": "Scrapper_Melee.Quills",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Radiation_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Radiation_Melee.json
index f889952d..d1a90df4 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Radiation_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Radiation_Melee.json
@@ -543,7 +543,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1136,7 +1136,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1577,7 +1577,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.31592667
},
@@ -2001,7 +2001,7 @@
}
],
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2623,7 +2623,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2837,7 +2837,7 @@
}
],
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2947,7 +2947,7 @@
}
],
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3507,7 +3507,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4003,7 +4003,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Radiation_Melee",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Savage_Melee.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Savage_Melee.json
index 2f30a70d..37b58d3b 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Savage_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Savage_Melee.json
@@ -586,7 +586,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -797,7 +797,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1217,7 +1217,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.33132684
},
@@ -1607,7 +1607,7 @@
}
],
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2099,7 +2099,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2313,7 +2313,7 @@
}
],
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2797,7 +2797,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3311,7 +3311,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3485,7 +3485,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Staff_Fighting.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Staff_Fighting.json
index 8c2a542b..65317856 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Staff_Fighting.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Staff_Fighting.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 10
},
@@ -727,7 +727,7 @@
}
],
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 32
},
@@ -1077,7 +1077,7 @@
}
],
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 33
},
@@ -1842,7 +1842,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2643,7 +2643,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3446,7 +3446,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -5553,7 +5553,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -5639,7 +5639,6 @@
}
],
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5852,7 +5851,7 @@
}
],
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6641,7 +6640,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -7591,7 +7590,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -9397,7 +9396,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Scrapper_Melee.Staff_Fighting",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Titan_Weapons.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Titan_Weapons.json
index 4e8e5ba9..03f33677 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Titan_Weapons.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.Titan_Weapons.json
@@ -527,7 +527,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -986,7 +986,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1472,7 +1472,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -1938,7 +1938,7 @@
}
],
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2393,7 +2393,7 @@
}
],
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2607,7 +2607,7 @@
}
],
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3329,7 +3329,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3718,7 +3718,7 @@
}
],
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4168,7 +4168,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Scrapper_Melee.Titan_Weapons",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 1.61999214
}
diff --git a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.War_Mace.json b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.War_Mace.json
index 50624305..004e4d69 100644
--- a/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.War_Mace.json
+++ b/Hero Designer/Data/db/Player/Class_Scrapper_Scrapper_Melee.War_Mace.json
@@ -378,7 +378,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -732,7 +732,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1082,7 +1082,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1473,7 +1473,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1827,7 +1827,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2042,7 +2042,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2397,7 +2397,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2750,7 +2750,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.27599168
},
@@ -3103,7 +3103,7 @@
}
],
"FullSetName": "Scrapper_Melee.War_Mace",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.67199528
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Dark_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Dark_Mastery.json
index 151d2c38..d0fbad5b 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Dark_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Dark_Mastery.json
@@ -465,7 +465,7 @@
}
],
"FullSetName": "Epic.Sentinel_Dark_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.39994049
},
@@ -717,7 +717,7 @@
}
],
"FullSetName": "Epic.Sentinel_Dark_Mastery",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -954,7 +954,7 @@
}
],
"FullSetName": "Epic.Sentinel_Dark_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1232,7 +1232,7 @@
}
],
"FullSetName": "Epic.Sentinel_Dark_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1959,7 +1959,7 @@
}
],
"FullSetName": "Epic.Sentinel_Dark_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Elec_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Elec_Mastery.json
index b7131afa..b0702017 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Elec_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Elec_Mastery.json
@@ -352,7 +352,7 @@
}
],
"FullSetName": "Epic.Sentinel_Elec_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -648,7 +648,7 @@
}
],
"FullSetName": "Epic.Sentinel_Elec_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -852,7 +852,7 @@
}
],
"FullSetName": "Epic.Sentinel_Elec_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1096,7 +1096,7 @@
}
],
"FullSetName": "Epic.Sentinel_Elec_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1242,7 +1242,7 @@
}
],
"FullSetName": "Epic.Sentinel_Elec_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Fire_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Fire_Mastery.json
index e7b0ffea..e4ed9aed 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Fire_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Fire_Mastery.json
@@ -423,7 +423,7 @@
}
],
"FullSetName": "Epic.Sentinel_Fire_Mastery",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -671,7 +671,7 @@
}
],
"FullSetName": "Epic.Sentinel_Fire_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -918,7 +918,7 @@
}
],
"FullSetName": "Epic.Sentinel_Fire_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1180,7 +1180,7 @@
}
],
"FullSetName": "Epic.Sentinel_Fire_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -1328,7 +1328,7 @@
}
],
"FullSetName": "Epic.Sentinel_Fire_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ice_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ice_Mastery.json
index 45a030cc..281ac873 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ice_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ice_Mastery.json
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ice_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 5.5
},
@@ -967,7 +967,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ice_Mastery",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1525,7 +1525,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ice_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1759,7 +1759,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ice_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2117,7 +2117,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ice_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Lev_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Lev_Mastery.json
index 9f739257..e63969bc 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Lev_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Lev_Mastery.json
@@ -328,7 +328,7 @@
}
],
"FullSetName": "Epic.Sentinel_Lev_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -514,7 +514,7 @@
}
],
"FullSetName": "Epic.Sentinel_Lev_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1147,7 +1147,7 @@
}
],
"FullSetName": "Epic.Sentinel_Lev_Mastery",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73993444
},
@@ -1426,7 +1426,7 @@
}
],
"FullSetName": "Epic.Sentinel_Lev_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1580,7 +1580,7 @@
}
],
"FullSetName": "Epic.Sentinel_Lev_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mace_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mace_Mastery.json
index 8103e376..a6938746 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mace_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mace_Mastery.json
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -608,7 +608,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mace_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -873,7 +873,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mace_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1222,7 +1222,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mace_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1375,7 +1375,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mace_Mastery",
- "CastTime": 3.168,
+ "CastTime": 3.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mu_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mu_Mastery.json
index a950240f..a264a962 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mu_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Mu_Mastery.json
@@ -501,7 +501,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -790,7 +790,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mu_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -1177,7 +1177,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mu_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1629,7 +1629,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mu_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1788,7 +1788,7 @@
}
],
"FullSetName": "Epic.Sentinel_Mu_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ninja_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ninja_Mastery.json
index ef2bc4be..383c7dde 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ninja_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Ninja_Mastery.json
@@ -136,7 +136,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ninja_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -322,7 +322,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ninja_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -745,7 +745,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ninja_Mastery",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -984,7 +984,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ninja_Mastery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1785,7 +1785,7 @@
}
],
"FullSetName": "Epic.Sentinel_Ninja_Mastery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Psi_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Psi_Mastery.json
index ef4497ff..07e41993 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Psi_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Psi_Mastery.json
@@ -172,7 +172,7 @@
}
],
"FullSetName": "Epic.Sentinel_Psi_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -351,7 +351,7 @@
}
],
"FullSetName": "Epic.Sentinel_Psi_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -594,7 +594,7 @@
}
],
"FullSetName": "Epic.Sentinel_Psi_Mastery",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -871,7 +871,7 @@
}
],
"FullSetName": "Epic.Sentinel_Psi_Mastery",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1408,7 +1408,7 @@
}
],
"FullSetName": "Epic.Sentinel_Psi_Mastery",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 6.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Soul_Mastery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Soul_Mastery.json
index 14ea1840..51c51594 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Soul_Mastery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Epic.Sentinel_Soul_Mastery.json
@@ -320,7 +320,7 @@
}
],
"FullSetName": "Epic.Sentinel_Soul_Mastery",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -619,7 +619,7 @@
}
],
"FullSetName": "Epic.Sentinel_Soul_Mastery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.08662224
},
@@ -1038,7 +1038,7 @@
}
],
"FullSetName": "Epic.Sentinel_Soul_Mastery",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -1286,7 +1286,7 @@
}
],
"FullSetName": "Epic.Sentinel_Soul_Mastery",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1447,7 +1447,7 @@
}
],
"FullSetName": "Epic.Sentinel_Soul_Mastery",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Bio_Organic_Armor.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Bio_Organic_Armor.json
index d726f10c..4b09281c 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Bio_Organic_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Bio_Organic_Armor.json
@@ -464,7 +464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -568,7 +568,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -1005,7 +1005,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -1748,7 +1748,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2242,7 +2242,6 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3226,7 +3225,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3314,7 +3313,6 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3513,7 +3511,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3783,7 +3781,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4256,7 +4254,6 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4933,7 +4930,6 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5654,7 +5650,7 @@
}
],
"FullSetName": "Sentinel_Defense.Bio_Organic_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 5.58991957
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Dark_Armor.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Dark_Armor.json
index d4e9adf0..978a7c96 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Dark_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Dark_Armor.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -471,7 +471,6 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -892,7 +891,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1546,7 +1545,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1890,7 +1889,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 6.25
},
@@ -2899,7 +2898,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3082,7 +3081,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3260,7 +3259,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3616,7 +3615,7 @@
}
],
"FullSetName": "Sentinel_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Electric_Armor.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Electric_Armor.json
index 450fdc4e..ce963337 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Electric_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Electric_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -478,7 +478,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -831,7 +831,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -998,7 +998,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1652,7 +1652,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1919,7 +1919,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2179,7 +2179,6 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2390,7 +2389,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3644,7 +3643,7 @@
}
],
"FullSetName": "Sentinel_Defense.Electric_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Energy_Aura.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Energy_Aura.json
index e0cb6194..ad328452 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Energy_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Energy_Aura.json
@@ -452,7 +452,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -848,7 +848,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1419,7 +1419,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1586,7 +1586,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2762,7 +2762,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3075,7 +3075,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3640,7 +3640,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3850,7 +3850,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -4618,7 +4618,7 @@
}
],
"FullSetName": "Sentinel_Defense.Energy_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Fiery_Aura.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Fiery_Aura.json
index 997f2972..482660f1 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Fiery_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Fiery_Aura.json
@@ -446,7 +446,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -850,7 +850,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -989,7 +989,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1282,7 +1282,6 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1975,7 +1974,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2196,7 +2195,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2412,7 +2411,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2513,7 +2512,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2793,7 +2792,7 @@
}
],
"FullSetName": "Sentinel_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ice_Armor.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ice_Armor.json
index 549c2e22..2aad8636 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ice_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ice_Armor.json
@@ -485,7 +485,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -691,7 +691,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2265,7 +2265,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2572,7 +2572,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2957,7 +2957,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3485,7 +3485,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3778,7 +3778,6 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4069,7 +4068,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4927,7 +4926,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ice_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Invulnerability.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Invulnerability.json
index 796472fa..028b1008 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Invulnerability.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Invulnerability.json
@@ -270,7 +270,7 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -432,7 +432,6 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -485,7 +484,8 @@
"DescLong": "Your body is naturally durable, as a result you have higher hit points and endurance, you are also naturally resistant to toxic damage. This power is always on and costs no Endurance.",
"SetTypes": [
8,
- 9
+ 9,
+ 22
],
"Level": 6,
"VariableName": "",
@@ -598,7 +598,6 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -836,7 +835,7 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2336,7 +2335,7 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2797,7 +2796,6 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3345,7 +3343,7 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3647,7 +3645,6 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4627,7 +4624,7 @@
}
],
"FullSetName": "Sentinel_Defense.Invulnerability",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ninjitsu.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ninjitsu.json
index 2fb301ea..02f84966 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ninjitsu.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Ninjitsu.json
@@ -235,7 +235,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -623,7 +623,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1652,7 +1652,6 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2435,7 +2434,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2530,7 +2529,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2669,7 +2668,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3207,7 +3206,6 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3541,7 +3539,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.862474
},
@@ -4060,7 +4058,7 @@
}
],
"FullSetName": "Sentinel_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Radiation_Armor.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Radiation_Armor.json
index cd67a49a..d9780d2a 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Radiation_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Radiation_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -532,7 +532,6 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +884,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2062,7 +2061,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2264,7 +2263,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2524,7 +2523,6 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2689,7 +2687,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2945,7 +2943,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3758,7 +3756,7 @@
}
],
"FullSetName": "Sentinel_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Regeneration.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Regeneration.json
index bebda198..5019b6ba 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Regeneration.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Regeneration.json
@@ -151,7 +151,6 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -290,7 +289,7 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -384,7 +383,6 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -557,7 +555,7 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -681,7 +679,6 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1682,7 +1679,7 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2118,7 +2115,6 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2516,7 +2512,7 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3545,7 +3541,7 @@
}
],
"FullSetName": "Sentinel_Defense.Regeneration",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Super_Reflexes.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Super_Reflexes.json
index 9e10de56..e3d8b72d 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Super_Reflexes.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Super_Reflexes.json
@@ -511,7 +511,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1037,7 +1037,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1345,7 +1345,6 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1488,7 +1487,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2241,7 +2240,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2790,7 +2789,6 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3098,7 +3096,6 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3358,7 +3355,6 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3569,7 +3565,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4089,7 +4085,7 @@
}
],
"FullSetName": "Sentinel_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Willpower.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Willpower.json
index cf763ddb..265cc1d7 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Willpower.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Defense.Willpower.json
@@ -424,7 +424,6 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -706,7 +705,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -832,7 +831,6 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2044,7 +2042,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2183,7 +2181,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2276,7 +2274,6 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2886,7 +2883,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3972,7 +3969,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4920,7 +4917,7 @@
}
],
"FullSetName": "Sentinel_Defense.Willpower",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Archery.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Archery.json
index 9afe2259..86c9da3b 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Archery.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Archery.json
@@ -597,7 +597,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1171,7 +1171,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1316,7 +1316,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -1500,7 +1500,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1926,7 +1926,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2177,7 +2177,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2357,7 +2357,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2499,7 +2499,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2646,7 +2646,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Archery",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Assault_Rifle.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Assault_Rifle.json
index 4c228fc9..a867700c 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Assault_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Assault_Rifle.json
@@ -644,7 +644,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1259,7 +1259,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1479,7 +1479,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.056,
+ "CastTime": 0.9,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1696,7 +1696,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2122,7 +2122,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2411,7 +2411,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2562,7 +2562,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -2711,7 +2711,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2900,7 +2900,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Assault_Rifle",
- "CastTime": 4.224,
+ "CastTime": 4.0,
"Slottable": true,
"AoEModifier": 3.03996444
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Beam_Rifle.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Beam_Rifle.json
index 40ea048b..b5c440ab 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Beam_Rifle.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Beam_Rifle.json
@@ -349,7 +349,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -675,7 +675,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -942,7 +942,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1227,7 +1227,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1617,7 +1617,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1946,7 +1946,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 2.112,
+ "CastTime": 1.9,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2011,6 +2011,7 @@
"DescLong": "You carefully calibrate your rifle and shoot a refractor beam that will split up on impact dealing moderate energy damage to your target and 9 nearby foes, lowering their defense. The beam has a high chance to split again off the secondary targets hitting up to 10 foes. If the target is also suffering from the Disintegrating effect it will also suffer additional damage over time. Damage: Moderate, Recharge: Very Slow",
"SetTypes": [
3,
+ 21,
23,
44,
45
@@ -2173,7 +2174,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2744,7 +2745,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.18992949
},
@@ -2781,7 +2782,7 @@
"TargetLoS": true,
"Range": 40.0,
"EndCost": 20.8,
- "RechargeTime": 125.0,
+ "RechargeTime": 90.0,
"EffectArea": 2,
"Radius": 20.0,
"MaxTargets": 10,
@@ -3197,7 +3198,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Beam_Rifle",
- "CastTime": 3.036,
+ "CastTime": 2.9,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dark_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dark_Blast.json
index aa40f072..152c6684 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dark_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dark_Blast.json
@@ -637,7 +637,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1256,7 +1256,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1516,7 +1516,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -1782,7 +1782,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2208,7 +2208,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2391,7 +2391,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2573,7 +2573,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2794,7 +2794,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3045,7 +3045,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dark_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dual_Pistols.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dual_Pistols.json
index cdc98bac..0cb31c06 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dual_Pistols.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Dual_Pistols.json
@@ -527,7 +527,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 6
},
@@ -1061,7 +1061,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 7
},
@@ -1561,7 +1561,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 8
},
@@ -2914,7 +2914,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4303,7 +4303,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5334,7 +5334,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -6428,7 +6428,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6514,7 +6514,6 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -7503,7 +7502,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -8501,7 +8500,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -9633,7 +9632,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.16792941
},
@@ -10985,7 +10984,6 @@
}
],
"FullSetName": "Sentinel_Ranged.Dual_Pistols",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Electrical_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Electrical_Blast.json
index 3615a664..325fce41 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Electrical_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Electrical_Blast.json
@@ -738,7 +738,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1452,7 +1452,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1780,7 +1780,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2063,7 +2063,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2489,7 +2489,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2850,7 +2850,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2963,7 +2963,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3253,7 +3253,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3747,7 +3747,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Electrical_Blast",
- "CastTime": 3.96,
+ "CastTime": 3.7,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Energy_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Energy_Blast.json
index 8c1da272..7e608425 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Energy_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Energy_Blast.json
@@ -707,7 +707,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1390,7 +1390,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1645,7 +1645,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -1897,7 +1897,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2323,7 +2323,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2610,7 +2610,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2864,7 +2864,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3151,7 +3151,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3436,7 +3436,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Energy_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Fire_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Fire_Blast.json
index 9e954ab6..d4533436 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Fire_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Fire_Blast.json
@@ -632,7 +632,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1244,7 +1244,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1462,7 +1462,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1643,7 +1643,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2069,7 +2069,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2222,7 +2222,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2624,7 +2624,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2734,7 +2734,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2983,7 +2983,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Fire_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Ice_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Ice_Blast.json
index 9cac1b38..ec73b4dc 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Ice_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Ice_Blast.json
@@ -815,7 +815,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1606,7 +1606,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1940,7 +1940,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2343,7 +2343,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2769,7 +2769,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2882,7 +2882,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3282,7 +3282,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3823,7 +3823,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3940,7 +3940,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Ice_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Psychic_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Psychic_Blast.json
index 090d1742..f0d5478f 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Psychic_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Psychic_Blast.json
@@ -633,7 +633,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1350,7 +1350,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1531,7 +1531,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.73196149
},
@@ -1755,7 +1755,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2182,7 +2182,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2361,7 +2361,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2584,7 +2584,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2806,7 +2806,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3096,7 +3096,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Psychic_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Radiation_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Radiation_Blast.json
index f7d3bcb1..3ab1d949 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Radiation_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Radiation_Blast.json
@@ -638,7 +638,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1251,7 +1251,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1438,7 +1438,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -1699,7 +1699,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2125,7 +2125,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2384,7 +2384,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.15995646
},
@@ -2573,7 +2573,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2757,7 +2757,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3083,7 +3083,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Radiation_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Sonic_Attack.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Sonic_Attack.json
index 704bd29b..34dfd7f8 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Sonic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Sonic_Attack.json
@@ -904,7 +904,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1793,7 +1793,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2245,7 +2245,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -2694,7 +2694,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3121,7 +3121,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3448,7 +3448,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.44994545
},
@@ -3673,7 +3673,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -4200,7 +4200,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4772,7 +4772,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Sonic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.97,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Water_Blast.json b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Water_Blast.json
index 9b70a97c..960d42b4 100644
--- a/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Water_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Sentinel_Sentinel_Ranged.Water_Blast.json
@@ -737,7 +737,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1631,7 +1631,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2533,7 +2533,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 1.98,
+ "CastTime": 1.73,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3186,7 +3186,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3643,7 +3643,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3791,7 +3791,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4249,7 +4249,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4509,7 +4509,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 2.45329237
},
@@ -5471,7 +5471,7 @@
}
],
"FullSetName": "Sentinel_Ranged.Water_Blast",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 4.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Bio_Organic_Armor.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Bio_Organic_Armor.json
index b176400a..27d367bb 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Bio_Organic_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Bio_Organic_Armor.json
@@ -464,7 +464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -568,7 +568,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -1005,7 +1005,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -2541,7 +2541,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3283,7 +3283,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3777,7 +3777,6 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4761,7 +4760,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4849,7 +4848,6 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -5113,7 +5111,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5657,7 +5655,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -6773,7 +6771,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -7704,7 +7702,7 @@
}
],
"FullSetName": "Stalker_Defense.Bio_Organic_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Dark_Armor.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Dark_Armor.json
index 829db3dc..f3bdd63b 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Dark_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Dark_Armor.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1913,7 +1913,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2334,7 +2334,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2881,7 +2881,6 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3535,7 +3534,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3679,7 +3678,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3862,7 +3861,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4040,7 +4039,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4395,7 +4394,7 @@
}
],
"FullSetName": "Stalker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Electric_Armor.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Electric_Armor.json
index 48186bd6..af39bbdf 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Electric_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Electric_Armor.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1843,7 +1843,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2196,7 +2196,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2850,7 +2850,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3117,7 +3117,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3377,7 +3377,6 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3544,7 +3543,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3756,7 +3755,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -5010,7 +5009,7 @@
}
],
"FullSetName": "Stalker_Defense.Electric_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Energy_Aura.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Energy_Aura.json
index 4201f0c1..a3fcf990 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Energy_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Energy_Aura.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1989,7 +1989,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2525,7 +2525,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3697,7 +3697,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4093,7 +4093,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4271,7 +4271,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4917,7 +4917,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -5084,7 +5084,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5852,7 +5852,7 @@
}
],
"FullSetName": "Stalker_Defense.Energy_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Fiery_Aura.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Fiery_Aura.json
index 56b70b64..cb31e835 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Fiery_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Fiery_Aura.json
@@ -1559,7 +1559,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1982,7 +1982,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2121,7 +2121,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2414,7 +2414,6 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3107,7 +3106,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3398,7 +3397,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3684,7 +3683,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3785,7 +3784,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4065,7 +4064,7 @@
}
],
"FullSetName": "Stalker_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ice_Armor.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ice_Armor.json
index 149b10d0..7e8a02cc 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ice_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ice_Armor.json
@@ -1559,7 +1559,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2019,7 +2019,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2225,7 +2225,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3798,7 +3798,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4371,7 +4371,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -4664,7 +4664,6 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5191,7 +5190,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5965,7 +5964,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -6822,7 +6821,7 @@
}
],
"FullSetName": "Stalker_Defense.Ice_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Invulnerability.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Invulnerability.json
index aaf05a6a..c73c0070 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Invulnerability.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Invulnerability.json
@@ -1559,7 +1559,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1721,7 +1721,6 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1967,7 +1966,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2205,7 +2204,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3705,7 +3704,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4166,7 +4165,6 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4715,7 +4713,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5017,7 +5015,6 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5997,7 +5994,7 @@
}
],
"FullSetName": "Stalker_Defense.Invulnerability",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ninjitsu.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ninjitsu.json
index a253ca17..19bc5c41 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ninjitsu.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Ninjitsu.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1771,7 +1771,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2159,7 +2159,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2270,7 +2270,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3050,7 +3050,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3189,7 +3189,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3325,7 +3325,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -3659,7 +3659,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.862474
},
@@ -4178,7 +4178,7 @@
}
],
"FullSetName": "Stalker_Defense.Ninjitsu",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Radiation_Armor.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Radiation_Armor.json
index b16ac447..46c211ea 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Radiation_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Radiation_Armor.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1843,7 +1843,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2069,7 +2069,6 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3246,7 +3245,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3599,7 +3598,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3982,7 +3981,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -4147,7 +4146,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4404,7 +4403,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -5217,7 +5216,7 @@
}
],
"FullSetName": "Stalker_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Regeneration.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Regeneration.json
index 06088b0b..bb9d7ad9 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Regeneration.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Regeneration.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1687,7 +1687,6 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1826,7 +1825,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2064,7 +2063,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3070,7 +3069,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3505,7 +3504,6 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3708,7 +3706,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3943,7 +3941,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4976,7 +4974,7 @@
}
],
"FullSetName": "Stalker_Defense.Regeneration",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Shield_Defense.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Shield_Defense.json
index d86ec9c7..72aa1f6f 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Shield_Defense.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Shield_Defense.json
@@ -1612,7 +1612,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2057,7 +2057,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2377,7 +2377,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2643,7 +2643,6 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3850,7 +3849,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4762,7 +4761,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -5333,7 +5332,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -5479,7 +5478,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6432,7 +6431,7 @@
}
],
"FullSetName": "Stalker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Super_Reflexes.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Super_Reflexes.json
index ab8b57cb..0118ecf7 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Super_Reflexes.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Super_Reflexes.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1842,7 +1842,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2194,7 +2194,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2502,7 +2502,6 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3240,7 +3239,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3548,7 +3547,6 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3808,7 +3806,6 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4019,7 +4016,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4539,7 +4536,7 @@
}
],
"FullSetName": "Stalker_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Willpower.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Willpower.json
index cbf3a4d4..030dcdc0 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Willpower.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Defense.Willpower.json
@@ -1560,7 +1560,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1960,7 +1960,6 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2098,7 +2097,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2380,7 +2379,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3554,7 +3553,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4164,7 +4163,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4290,7 +4289,6 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5376,7 +5374,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6328,7 +6326,7 @@
}
],
"FullSetName": "Stalker_Defense.Willpower",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Brawling.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Brawling.json
index 190e75a4..c47e83bc 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Brawling.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Brawling.json
@@ -639,7 +639,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1180,7 +1180,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2182,7 +2182,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2778,7 +2778,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3168,7 +3168,7 @@
}
],
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3443,7 +3443,7 @@
}
],
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4734,7 +4734,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -5388,7 +5388,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6389,7 +6389,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Brawling",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Broad_Sword.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Broad_Sword.json
index 1d0d1e5e..5ebe24a0 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Broad_Sword.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Broad_Sword.json
@@ -377,7 +377,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -730,7 +730,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1086,7 +1086,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1467,7 +1467,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1857,7 +1857,7 @@
}
],
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2132,7 +2132,7 @@
}
],
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2525,7 +2525,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2952,7 +2952,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3382,7 +3382,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Broad_Sword",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Claws.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Claws.json
index e8c03353..4a8fe6a0 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Claws.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Claws.json
@@ -448,7 +448,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -760,7 +760,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1182,7 +1182,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1563,7 +1563,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1953,7 +1953,7 @@
}
],
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2228,7 +2228,7 @@
}
],
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2614,7 +2614,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2922,7 +2922,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3311,7 +3311,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Claws",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dark_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dark_Melee.json
index e582ca94..a7789936 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dark_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dark_Melee.json
@@ -444,7 +444,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -864,7 +864,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1302,7 +1302,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.24149275
},
@@ -1716,7 +1716,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2106,7 +2106,7 @@
}
],
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2381,7 +2381,7 @@
}
],
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2771,7 +2771,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2993,7 +2993,7 @@
}
],
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3460,7 +3460,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dark_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dual_Blades.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dual_Blades.json
index 6fdfdcaa..99bf02a2 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dual_Blades.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Dual_Blades.json
@@ -625,7 +625,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1212,7 +1212,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1921,7 +1921,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2572,7 +2572,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3228,7 +3228,7 @@
}
],
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4110,7 +4110,7 @@
}
],
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.584,
+ "CastTime": 1.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5012,7 +5012,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5592,7 +5592,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -6402,7 +6402,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Dual_Blades",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.509991
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Electrical_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Electrical_Melee.json
index dca2031b..22f3ed7b 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Electrical_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Electrical_Melee.json
@@ -625,7 +625,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1226,7 +1226,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1729,7 +1729,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2143,7 +2143,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2533,7 +2533,7 @@
}
],
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2808,7 +2808,7 @@
}
],
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3402,7 +3402,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4182,7 +4182,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -4359,7 +4359,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Electrical_Melee",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Energy_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Energy_Melee.json
index 3cdd8be4..d3537470 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Energy_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Energy_Melee.json
@@ -497,7 +497,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -955,7 +955,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1413,7 +1413,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1827,7 +1827,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2217,7 +2217,7 @@
}
],
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2492,7 +2492,7 @@
}
],
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2844,7 +2844,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3195,7 +3195,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3653,7 +3653,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Energy_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Fiery_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Fiery_Melee.json
index 7dc21131..ed8b87f5 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Fiery_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Fiery_Melee.json
@@ -303,7 +303,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -650,7 +650,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -997,7 +997,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1408,7 +1408,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1798,7 +1798,7 @@
}
],
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2073,7 +2073,7 @@
}
],
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2358,7 +2358,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.43498361
},
@@ -2706,7 +2706,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3053,7 +3053,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Fiery_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ice_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ice_Melee.json
index ad9bca57..c82a0114 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ice_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ice_Melee.json
@@ -522,7 +522,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1014,7 +1014,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1442,7 +1442,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.509991
},
@@ -1753,7 +1753,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2028,7 +2028,7 @@
}
],
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2418,7 +2418,7 @@
}
],
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2522,7 +2522,7 @@
}
],
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2985,7 +2985,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3306,7 +3306,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ice_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Kinetic_Attack.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Kinetic_Attack.json
index 0170c9d8..c8074e42 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Kinetic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Kinetic_Attack.json
@@ -682,7 +682,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1344,7 +1344,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2006,7 +2006,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2420,7 +2420,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2810,7 +2810,7 @@
}
],
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3085,7 +3085,7 @@
}
],
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3744,7 +3744,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4402,7 +4402,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4991,7 +4991,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Kinetic_Attack",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Martial_Arts.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Martial_Arts.json
index 6afb0cfb..5adea57a 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Martial_Arts.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Martial_Arts.json
@@ -414,7 +414,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -726,7 +726,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1336,7 +1336,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1717,7 +1717,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2107,7 +2107,7 @@
}
],
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2382,7 +2382,7 @@
}
],
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2701,7 +2701,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3087,7 +3087,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3473,7 +3473,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Martial_Arts",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ninja_Sword.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ninja_Sword.json
index 859c8414..8832d770 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ninja_Sword.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Ninja_Sword.json
@@ -387,7 +387,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -748,7 +748,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1102,7 +1102,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1483,7 +1483,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 3.828,
+ "CastTime": 3.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1837,7 +1837,7 @@
}
],
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2112,7 +2112,7 @@
}
],
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2505,7 +2505,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2932,7 +2932,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3358,7 +3358,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Ninja_Sword",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Psionic_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Psionic_Melee.json
index 1d5b2879..0dd786b3 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Psionic_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Psionic_Melee.json
@@ -538,7 +538,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1052,7 +1052,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1604,7 +1604,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2078,7 +2078,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2467,7 +2467,7 @@
}
],
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2742,7 +2742,7 @@
}
],
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2919,7 +2919,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3550,7 +3550,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4037,7 +4037,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Radiation_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Radiation_Melee.json
index ccf959da..defe724c 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Radiation_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Radiation_Melee.json
@@ -578,7 +578,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1205,7 +1205,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1677,7 +1677,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.31592667
},
@@ -2152,7 +2152,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2542,7 +2542,7 @@
}
],
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2817,7 +2817,7 @@
}
],
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3443,7 +3443,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4075,7 +4075,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4606,7 +4606,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Radiation_Melee",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Savage_Melee.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Savage_Melee.json
index e42dec67..8e888f50 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Savage_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Savage_Melee.json
@@ -554,7 +554,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -980,7 +980,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1503,7 +1503,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.32876015
},
@@ -1884,7 +1884,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2274,7 +2274,7 @@
}
],
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2549,7 +2549,7 @@
}
],
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3033,7 +3033,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3547,7 +3547,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3751,7 +3751,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Spines.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Spines.json
index d79e1699..2d93dcb7 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Spines.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Spines.json
@@ -643,7 +643,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1254,7 +1254,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1866,7 +1866,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2247,7 +2247,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2637,7 +2637,7 @@
}
],
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2912,7 +2912,7 @@
}
],
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3563,7 +3563,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4214,7 +4214,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -4828,7 +4828,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Staff_Fighting.json b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Staff_Fighting.json
index 65db358c..7dec5d0b 100644
--- a/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Staff_Fighting.json
+++ b/Hero Designer/Data/db/Player/Class_Stalker_Stalker_Melee.Staff_Fighting.json
@@ -533,7 +533,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1089,7 +1089,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1644,7 +1644,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -2181,7 +2181,7 @@
"HasGrantPowerEffect": true,
"HasPowerOverrideEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2535,7 +2535,7 @@
}
],
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2810,7 +2810,7 @@
}
],
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4112,7 +4112,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -4656,7 +4656,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5768,7 +5768,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Stalker_Melee.Staff_Fighting",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Bio_Organic_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Bio_Organic_Armor.json
index 1feb2d3d..e4a2b855 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Bio_Organic_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Bio_Organic_Armor.json
@@ -464,7 +464,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"AoEModifier": 1.0,
"DisplayLocation": 11
},
@@ -568,7 +568,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 34
},
@@ -1005,7 +1005,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"AoEModifier": 1.0,
"DisplayLocation": 35
},
@@ -1748,7 +1748,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2242,7 +2242,6 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3226,7 +3225,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3314,7 +3313,6 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -3578,7 +3576,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -6119,7 +6117,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -6743,7 +6741,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -7504,7 +7502,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -8515,7 +8513,7 @@
}
],
"FullSetName": "Tanker_Defense.Bio_Organic_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.87,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Dark_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Dark_Armor.json
index c4145baf..6f266959 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Dark_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Dark_Armor.json
@@ -240,7 +240,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -593,7 +593,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1014,7 +1014,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1668,7 +1668,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1895,7 +1895,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2903,7 +2903,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3165,7 +3165,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3422,7 +3422,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3774,7 +3774,7 @@
}
],
"FullSetName": "Tanker_Defense.Dark_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Electric_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Electric_Armor.json
index b8a52337..984fec4b 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Electric_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Electric_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -595,7 +595,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -948,7 +948,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1635,7 +1635,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1937,7 +1937,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2104,7 +2104,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2364,7 +2364,6 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2614,7 +2613,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 3.96,
+ "CastTime": 3.828,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3864,7 +3863,7 @@
}
],
"FullSetName": "Tanker_Defense.Electric_Armor",
- "CastTime": 2.112,
+ "CastTime": 1.96,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Fiery_Aura.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Fiery_Aura.json
index 28ca81d0..3a8807f5 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Fiery_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Fiery_Aura.json
@@ -240,7 +240,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -662,7 +662,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -801,7 +801,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1094,7 +1094,6 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1426,7 +1425,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2119,7 +2118,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2367,7 +2366,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2759,7 +2758,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3039,7 +3038,7 @@
}
],
"FullSetName": "Tanker_Defense.Fiery_Aura",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Ice_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Ice_Armor.json
index fc746e53..bc38df7c 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Ice_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Ice_Armor.json
@@ -485,7 +485,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -691,7 +691,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1346,7 +1346,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -2920,7 +2920,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3213,7 +3213,6 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3429,7 +3428,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3957,7 +3956,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4811,7 +4810,7 @@
}
],
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -5224,7 +5223,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Defense.Ice_Armor",
- "CastTime": 0.264,
+ "CastTime": 0.07,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Invulnerability.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Invulnerability.json
index bd06955a..0a0bf8ae 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Invulnerability.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Invulnerability.json
@@ -185,7 +185,6 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -431,7 +430,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -669,7 +668,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -996,7 +995,6 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2496,7 +2494,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2691,7 +2689,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.659999967,
+ "CastTime": 0.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3814,7 +3812,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4116,7 +4114,6 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5096,7 +5093,7 @@
}
],
"FullSetName": "Tanker_Defense.Invulnerability",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Radiation_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Radiation_Armor.json
index 6231faa3..eceed254 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Radiation_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Radiation_Armor.json
@@ -306,7 +306,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -532,7 +532,6 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -885,7 +884,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2062,7 +2061,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2123,7 +2122,7 @@
7,
24
],
- "DescShort": "PBAoE, Minor DMG(Energy), Minor DoT(Toxic), Foe -Regen, Self +HP, +End, Res(-Regen)",
+ "DescShort": "PBAoE, Minor DMG(Energy), Minor DoT(Toxic), Foe -Regen, Self +HP, +End",
"DescLong": "You concentrate your energies to harness the healing powers of radiation to mend your wounds and rebuild your endurance. Each nearby foe will increase the health and endurance you recover. Affected foes will have their regeneration rates substantially reduced for a short time. Recharge: Very Long",
"SetTypes": [
4,
@@ -2138,7 +2137,7 @@
"VariableEnabled": true,
"VariableName": "Foes Hit",
"VariableMin": 1,
- "VariableMax": 10,
+ "VariableMax": 11,
"NIDSubPower": [],
"UIDSubPower": [],
"IgnoreEnh": [
@@ -2345,16 +2344,16 @@
{
"MagnitudeExpression": "",
"Probability": 1.0,
- "Mag": 0.2076,
- "MagPercent": 20.76,
+ "Mag": 0.3244,
+ "MagPercent": 32.4400024,
"Duration": 60.0,
"DisplayPercentage": true,
"BaseProbability": 1.0,
"Reward": "",
- "EffectId": "Res_Boolean",
+ "EffectId": "Regen",
"Special": "",
"nID": 6,
- "EffectType": 28,
+ "EffectType": 27,
"ETModifies": 27,
"Summon": "",
"nSummon": -1,
@@ -2362,44 +2361,10 @@
"UIDClassName": "",
"nIDClassName": -1,
"ToWho": 2,
- "Scale": 0.75,
- "nMagnitude": 1.0,
+ "Scale": 1.622,
+ "nMagnitude": 0.2,
"nDuration": 60.0,
- "ModifierTable": "Melee_Res_Boolean",
- "nModifierTable": 19,
- "PowerFullName": "Tanker_Defense.Radiation_Armor.Radiation_Therapy",
- "Absorbed_PowerType": 1,
- "Absorbed_Power_nID": -1,
- "Absorbed_Class_nID": -1,
- "Absorbed_EffectID": -1,
- "UniqueID": 7,
- "Override": "",
- "nOverride": -1
- },
- {
- "MagnitudeExpression": "",
- "Probability": 1.0,
- "Mag": -1.5,
- "MagPercent": -150.0,
- "Duration": 30.0,
- "DisplayPercentage": true,
- "BaseProbability": 1.0,
- "Reward": "",
- "EffectId": "Ones",
- "Special": "",
- "nID": 7,
- "EffectType": 27,
- "Summon": "",
- "nSummon": -1,
- "Resistible": true,
- "UIDClassName": "",
- "nIDClassName": -1,
- "PvMode": 1,
- "ToWho": 3,
- "Scale": -1.5,
- "nMagnitude": 1.0,
- "nDuration": 30.0,
- "Aspect": 4,
+ "Aspect": 1,
"ModifierTable": "Melee_Ones",
"nModifierTable": 41,
"PowerFullName": "Tanker_Defense.Radiation_Armor.Radiation_Therapy",
@@ -2407,7 +2372,7 @@
"Absorbed_Power_nID": -1,
"Absorbed_Class_nID": -1,
"Absorbed_EffectID": -1,
- "UniqueID": 8,
+ "UniqueID": 7,
"Override": "",
"nOverride": -1
},
@@ -2422,7 +2387,7 @@
"Reward": "",
"EffectId": "Res_Boolean",
"Special": "",
- "nID": 8,
+ "nID": 7,
"EffectType": 27,
"Summon": "",
"nSummon": -1,
@@ -2457,7 +2422,7 @@
"Reward": "",
"EffectId": "InherentTaunt",
"Special": "",
- "nID": 9,
+ "nID": 8,
"EffectType": 19,
"MezType": 11,
"Summon": "",
@@ -2496,7 +2461,7 @@
"Reward": "",
"EffectId": "InherentTaunt",
"Special": "",
- "nID": 10,
+ "nID": 9,
"EffectType": 19,
"MezType": 11,
"Summon": "",
@@ -2522,10 +2487,44 @@
"UniqueID": 11,
"Override": "",
"nOverride": -1
+ },
+ {
+ "MagnitudeExpression": "",
+ "Probability": 1.0,
+ "Mag": -0.9599424,
+ "MagPercent": -95.99424,
+ "Duration": 30.0,
+ "DisplayPercentage": true,
+ "BaseProbability": 1.0,
+ "Reward": "",
+ "EffectId": "Res_Boolean",
+ "Special": "",
+ "nID": 10,
+ "EffectType": 28,
+ "ETModifies": 27,
+ "Summon": "",
+ "nSummon": -1,
+ "Resistible": true,
+ "UIDClassName": "",
+ "nIDClassName": -1,
+ "PvMode": 1,
+ "Scale": -3.468,
+ "nMagnitude": 1.0,
+ "nDuration": 30.0,
+ "Aspect": 3,
+ "ModifierTable": "Melee_Res_Boolean",
+ "nModifierTable": 19,
+ "PowerFullName": "",
+ "Absorbed_PowerType": 1,
+ "Absorbed_Power_nID": -1,
+ "Absorbed_Class_nID": -1,
+ "Absorbed_EffectID": -1,
+ "Override": "",
+ "nOverride": -1
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -2819,7 +2818,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2984,7 +2983,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3321,7 +3320,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4134,7 +4133,7 @@
}
],
"FullSetName": "Tanker_Defense.Radiation_Armor",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Shield_Defense.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Shield_Defense.json
index 8bd32a7b..fa790cf1 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Shield_Defense.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Shield_Defense.json
@@ -435,7 +435,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -764,7 +764,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1030,7 +1030,6 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2237,7 +2236,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3255,7 +3254,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3534,7 +3533,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 1.848,
+ "CastTime": 1.716,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3997,7 +3996,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4146,7 +4145,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5099,7 +5098,7 @@
}
],
"FullSetName": "Tanker_Defense.Shield_Defense",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Stone_Armor.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Stone_Armor.json
index f8e2bb3b..5b6de411 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Stone_Armor.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Stone_Armor.json
@@ -348,7 +348,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -476,7 +476,6 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -683,7 +682,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1116,7 +1115,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2439,7 +2438,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2654,7 +2653,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2977,7 +2976,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3335,7 +3334,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5433,7 +5432,7 @@
}
],
"FullSetName": "Tanker_Defense.Stone_Armor",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Super_Reflexes.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Super_Reflexes.json
index db8aa33a..d27cba36 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Super_Reflexes.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Super_Reflexes.json
@@ -305,7 +305,7 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -656,7 +656,7 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -964,7 +964,6 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1698,7 +1697,7 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 1.716,
+ "CastTime": 1.53,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2006,7 +2005,6 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2297,7 +2295,7 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2605,7 +2603,6 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2865,7 +2862,6 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3383,7 +3379,7 @@
}
],
"FullSetName": "Tanker_Defense.Super_Reflexes",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Willpower.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Willpower.json
index ced37646..8064ff8e 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Willpower.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Defense.Willpower.json
@@ -424,7 +424,6 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -706,7 +705,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -832,7 +831,6 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2044,7 +2042,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2411,7 +2409,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2504,7 +2502,6 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3114,7 +3111,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4200,7 +4197,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5148,7 +5145,7 @@
}
],
"FullSetName": "Tanker_Defense.Willpower",
- "CastTime": 3.3,
+ "CastTime": 3.1,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Battle_Axe.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Battle_Axe.json
index 3468fdc5..ca4afa10 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Battle_Axe.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Battle_Axe.json
@@ -636,7 +636,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1000,7 +1000,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -1364,7 +1364,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -1580,7 +1580,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1970,7 +1970,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2334,7 +2334,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.71
},
@@ -2697,7 +2697,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3062,7 +3062,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
},
@@ -3427,7 +3427,7 @@
}
],
"FullSetName": "Tanker_Melee.Battle_Axe",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.58799589
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Brawling.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Brawling.json
index 2d6b430c..fe747335 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Brawling.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Brawling.json
@@ -866,7 +866,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.45
},
@@ -1386,7 +1386,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -2364,7 +2364,7 @@
}
],
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2580,7 +2580,7 @@
}
],
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3061,7 +3061,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4643,7 +4643,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -5910,7 +5910,7 @@
}
],
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -6543,7 +6543,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.8
},
@@ -7523,7 +7523,7 @@
}
],
"FullSetName": "Tanker_Melee.Brawling",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Broad_Sword.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Broad_Sword.json
index 5d50ba9a..da2a2815 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Broad_Sword.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Broad_Sword.json
@@ -566,7 +566,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -860,7 +860,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1155,7 +1155,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1335,7 +1335,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1664,7 +1664,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -2054,7 +2054,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2419,7 +2419,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2787,7 +2787,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3156,7 +3156,7 @@
}
],
"FullSetName": "Tanker_Melee.Broad_Sword",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Claws.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Claws.json
index 5d4923a4..b7b41950 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Claws.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Claws.json
@@ -534,7 +534,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -831,7 +831,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1225,7 +1225,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1405,7 +1405,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1657,7 +1657,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2248,7 +2248,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2574,7 +2574,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2864,7 +2864,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -3192,7 +3192,7 @@
}
],
"FullSetName": "Tanker_Melee.Claws",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dark_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dark_Melee.json
index e2df59be..791192b9 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dark_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dark_Melee.json
@@ -670,7 +670,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -1068,7 +1068,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 0.97,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1482,7 +1482,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 3.3,
+ "CastTime": 3.07,
"Slottable": true,
"AoEModifier": 1.24149275
},
@@ -1698,7 +1698,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2066,7 +2066,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -2438,7 +2438,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -3259,7 +3259,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3553,7 +3553,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4033,7 +4033,7 @@
}
],
"FullSetName": "Tanker_Melee.Dark_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 3.67
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dual_Blades.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dual_Blades.json
index 337a5679..702819b5 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dual_Blades.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Dual_Blades.json
@@ -850,7 +850,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -1414,7 +1414,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 1.584,
+ "CastTime": 1.4,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -2028,7 +2028,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -2244,7 +2244,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2985,7 +2985,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4223,7 +4223,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -5066,7 +5066,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 2.71
},
@@ -5697,7 +5697,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -6443,7 +6443,7 @@
}
],
"FullSetName": "Tanker_Melee.Dual_Blades",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 1.35699379
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Electrical_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Electrical_Melee.json
index b0881f81..55c5cce7 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Electrical_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Electrical_Melee.json
@@ -851,7 +851,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -1430,7 +1430,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.275
},
@@ -1909,7 +1909,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.25432611
},
@@ -2089,7 +2089,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2734,7 +2734,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -3124,7 +3124,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3696,7 +3696,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -4101,7 +4101,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4282,7 +4282,7 @@
}
],
"FullSetName": "Tanker_Melee.Electrical_Melee",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Energy_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Energy_Melee.json
index e098d50e..7de70e7a 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Energy_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Energy_Melee.json
@@ -723,7 +723,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.51
},
@@ -1159,7 +1159,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1595,7 +1595,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -1811,7 +1811,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2246,7 +2246,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2614,7 +2614,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.8,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -3004,7 +3004,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3473,7 +3473,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.71
},
@@ -3909,7 +3909,7 @@
}
],
"FullSetName": "Tanker_Melee.Energy_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 3.67
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Fiery_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Fiery_Melee.json
index 72f7d817..8b411309 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Fiery_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Fiery_Melee.json
@@ -637,7 +637,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.63
},
@@ -1070,7 +1070,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.99
},
@@ -1430,7 +1430,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1646,7 +1646,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2021,7 +2021,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 1.43498361
},
@@ -2411,7 +2411,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2843,7 +2843,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3142,7 +3142,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -3575,7 +3575,7 @@
}
],
"FullSetName": "Tanker_Melee.Fiery_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.83000016
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Ice_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Ice_Melee.json
index d7200b3f..17dfb9a2 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Ice_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Ice_Melee.json
@@ -819,7 +819,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.63
},
@@ -1360,7 +1360,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.99
},
@@ -1843,7 +1843,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.27,
"Slottable": true,
"AoEModifier": 1.509991
},
@@ -2059,7 +2059,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2449,7 +2449,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2550,7 +2550,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 3.696,
+ "CastTime": 3.47,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3065,7 +3065,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -3606,7 +3606,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -3974,7 +3974,7 @@
}
],
"FullSetName": "Tanker_Melee.Ice_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Katana.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Katana.json
index dbcc961b..25f8ae83 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Katana.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Katana.json
@@ -576,7 +576,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -889,7 +889,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -1184,7 +1184,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.45966136
},
@@ -1364,7 +1364,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1693,7 +1693,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -2083,7 +2083,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2448,7 +2448,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -2816,7 +2816,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -3148,7 +3148,7 @@
}
],
"FullSetName": "Tanker_Melee.Katana",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.24965537
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Kinetic_Attack.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Kinetic_Attack.json
index fa47c5b2..6100b89e 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Kinetic_Attack.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Kinetic_Attack.json
@@ -939,7 +939,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.45
},
@@ -1610,7 +1610,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -2281,7 +2281,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2461,7 +2461,7 @@
}
],
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2894,7 +2894,7 @@
}
],
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -3032,7 +3032,7 @@
}
],
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3698,7 +3698,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4365,7 +4365,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.98
},
@@ -5036,7 +5036,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Kinetic_Attack",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 3.67
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Martial_Arts.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Martial_Arts.json
index 7d076fe0..5710a6b2 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Martial_Arts.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Martial_Arts.json
@@ -640,7 +640,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -1198,7 +1198,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.9
},
@@ -1566,7 +1566,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1782,7 +1782,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2146,7 +2146,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2536,7 +2536,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3125,7 +3125,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.848,
+ "CastTime": 1.6,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3490,7 +3490,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4139,7 +4139,7 @@
}
],
"FullSetName": "Tanker_Melee.Martial_Arts",
- "CastTime": 2.772,
+ "CastTime": 2.53,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Psionic_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Psionic_Melee.json
index 656dc1ea..a5fb4c8d 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Psionic_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Psionic_Melee.json
@@ -765,7 +765,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.45
},
@@ -1258,7 +1258,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1789,7 +1789,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.47,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -2005,7 +2005,7 @@
}
],
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2652,7 +2652,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 1.30309331
},
@@ -3041,7 +3041,7 @@
}
],
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3220,7 +3220,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3829,7 +3829,7 @@
}
],
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4293,7 +4293,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Psionic_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Radiation_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Radiation_Melee.json
index deaad8be..80398fc4 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Radiation_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Radiation_Melee.json
@@ -803,7 +803,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1408,7 +1408,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -1861,7 +1861,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.31592667
},
@@ -2077,7 +2077,7 @@
}
],
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2681,7 +2681,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -3106,7 +3106,7 @@
}
],
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3216,7 +3216,7 @@
}
],
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3823,7 +3823,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 3.67
},
@@ -4332,7 +4332,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Radiation_Melee",
- "CastTime": 3.168,
+ "CastTime": 2.93,
"Slottable": true,
"AoEModifier": 2.5
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Savage_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Savage_Melee.json
index e7126beb..edf48cd3 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Savage_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Savage_Melee.json
@@ -735,7 +735,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.8,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -1280,7 +1280,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1817,7 +1817,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.32876015
},
@@ -2033,7 +2033,7 @@
}
],
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2539,7 +2539,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -2929,7 +2929,7 @@
}
],
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3427,7 +3427,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3958,7 +3958,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -4135,7 +4135,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Savage_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Spines.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Spines.json
index eee9941a..6915b336 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Spines.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Spines.json
@@ -868,7 +868,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.6
},
@@ -1466,7 +1466,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.05
},
@@ -2053,7 +2053,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2269,7 +2269,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2932,7 +2932,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.35699379
},
@@ -3322,7 +3322,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3950,7 +3950,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -4493,7 +4493,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -5082,7 +5082,7 @@
}
],
"FullSetName": "Tanker_Melee.Spines",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.52997327
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Staff_Fighting.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Staff_Fighting.json
index d3b1c9ce..52d17674 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Staff_Fighting.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Staff_Fighting.json
@@ -377,7 +377,7 @@
}
],
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 10
},
@@ -727,7 +727,7 @@
}
],
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 32
},
@@ -1077,7 +1077,7 @@
}
],
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 0.792,
+ "CastTime": 0.63,
"AoEModifier": 1.0,
"DisplayLocation": 33
},
@@ -2104,7 +2104,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.63
},
@@ -2919,7 +2919,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 1.31999993,
+ "CastTime": 1.13,
"Slottable": true,
"AoEModifier": 1.99
},
@@ -3734,7 +3734,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -3950,7 +3950,7 @@
}
],
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -6069,7 +6069,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 2.772,
+ "CastTime": 2.57,
"Slottable": true,
"AoEModifier": 2.5
},
@@ -6155,7 +6155,6 @@
}
],
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 0.132,
"AoEModifier": 1.0
},
{
@@ -6957,7 +6956,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 1.98,
+ "CastTime": 1.77,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -7919,7 +7918,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 2.376,
+ "CastTime": 2.17,
"Slottable": true,
"AoEModifier": 1.458992
},
@@ -9739,7 +9738,7 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Tanker_Melee.Staff_Fighting",
- "CastTime": 3.036,
+ "CastTime": 2.83,
"Slottable": true,
"AoEModifier": 2.47
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Stone_Melee.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Stone_Melee.json
index 3b8a41af..f9a1de6d 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Stone_Melee.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Stone_Melee.json
@@ -640,7 +640,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.056,
+ "CastTime": 0.83,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1004,7 +1004,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.61,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -1368,7 +1368,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.63,
"Slottable": true,
"AoEModifier": 2.56
},
@@ -1584,7 +1584,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1974,7 +1974,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2347,7 +2347,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2748,7 +2748,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -3114,7 +3114,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 3.432,
+ "CastTime": 3.3,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3482,7 +3482,7 @@
}
],
"FullSetName": "Tanker_Melee.Stone_Melee",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 3.67
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Super_Strength.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Super_Strength.json
index 1dac6e90..f3e04dab 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Super_Strength.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Super_Strength.json
@@ -640,7 +640,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.31999993,
+ "CastTime": 1.07,
"Slottable": true,
"AoEModifier": 1.51
},
@@ -1004,7 +1004,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.452,
+ "CastTime": 1.2,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1368,7 +1368,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -1584,7 +1584,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1989,7 +1989,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2431,7 +2431,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 2.376,
+ "CastTime": 2.23,
"Slottable": true,
"AoEModifier": 3.67
},
@@ -3255,7 +3255,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3656,7 +3656,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 2.63999987,
+ "CastTime": 2.5,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -4023,7 +4023,7 @@
}
],
"FullSetName": "Tanker_Melee.Super_Strength",
- "CastTime": 2.244,
+ "CastTime": 2.1,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Titan_Weapons.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Titan_Weapons.json
index 096b0c0b..0f0393a7 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Titan_Weapons.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.Titan_Weapons.json
@@ -787,7 +787,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.376,
+ "CastTime": 2.2,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -1260,7 +1260,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 2.35000014
},
@@ -1758,7 +1758,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.63999987,
+ "CastTime": 2.43,
"Slottable": true,
"AoEModifier": 1.61999214
},
@@ -1974,7 +1974,7 @@
}
],
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -2454,7 +2454,7 @@
}
],
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.56
},
@@ -2909,7 +2909,7 @@
}
],
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3645,7 +3645,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.508,
+ "CastTime": 2.3,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4046,7 +4046,7 @@
}
],
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4545,7 +4545,7 @@
],
"HasPowerOverrideEffect": true,
"FullSetName": "Tanker_Melee.Titan_Weapons",
- "CastTime": 2.904,
+ "CastTime": 2.7,
"Slottable": true,
"AoEModifier": 1.61999214
}
diff --git a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.War_Mace.json b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.War_Mace.json
index 745b61a0..d1cdb8e7 100644
--- a/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.War_Mace.json
+++ b/Hero Designer/Data/db/Player/Class_Tanker_Tanker_Melee.War_Mace.json
@@ -640,7 +640,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.584,
+ "CastTime": 1.33,
"Slottable": true,
"AoEModifier": 1.75
},
@@ -1008,7 +1008,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.716,
+ "CastTime": 1.5,
"Slottable": true,
"AoEModifier": 2.23
},
@@ -1372,7 +1372,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.98,
+ "CastTime": 1.83,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -1588,7 +1588,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -1978,7 +1978,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2346,7 +2346,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 1.452,
+ "CastTime": 1.23,
"Slottable": true,
"AoEModifier": 2.47
},
@@ -2713,7 +2713,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 2.904,
+ "CastTime": 2.67,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -3078,7 +3078,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 2.508,
+ "CastTime": 2.33,
"Slottable": true,
"AoEModifier": 1.27599168
},
@@ -3443,7 +3443,7 @@
}
],
"FullSetName": "Tanker_Melee.War_Mace",
- "CastTime": 2.244,
+ "CastTime": 2.0,
"Slottable": true,
"AoEModifier": 1.67199528
}
diff --git a/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Defensive.Umbral_Aura.json b/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Defensive.Umbral_Aura.json
index ea549a1a..9f2deb1a 100644
--- a/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Defensive.Umbral_Aura.json
+++ b/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Defensive.Umbral_Aura.json
@@ -156,7 +156,6 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -367,7 +366,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -514,7 +513,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 2.244,
+ "CastTime": 2.03,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -831,7 +830,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1503,7 +1502,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1714,7 +1713,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.924,
+ "CastTime": 0.73,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4246,7 +4245,6 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4532,7 +4530,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -5016,7 +5014,6 @@
],
"HasGrantPowerEffect": true,
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5216,7 +5213,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 12.144,
+ "CastTime": 12.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5396,7 +5393,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 2.2
},
@@ -5671,7 +5668,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 1.31999993,
+ "CastTime": 1.17,
"Slottable": true,
"AoEModifier": 4.75
},
@@ -6138,7 +6135,7 @@
}
],
"FullSetName": "Warshade_Defensive.Umbral_Aura",
- "CastTime": 1.188,
+ "CastTime": 1.03,
"Slottable": true,
"AoEModifier": 3.25
}
diff --git a/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Offensive.Umbral_Blast.json b/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Offensive.Umbral_Blast.json
index c0af4fff..d0a5b310 100644
--- a/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Offensive.Umbral_Blast.json
+++ b/Hero Designer/Data/db/Player/Class_Warshade_Warshade_Offensive.Umbral_Blast.json
@@ -282,7 +282,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -607,7 +607,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1090,7 +1090,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -1648,7 +1648,6 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 0.132,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2047,7 +2046,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -2479,7 +2478,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 4.092,
+ "CastTime": 3.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -3133,7 +3132,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 2.508,
+ "CastTime": 2.37,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -3534,7 +3533,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.848,
+ "CastTime": 1.67,
"Slottable": true,
"AoEModifier": 3.25
},
@@ -4010,7 +4009,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 2.244,
+ "CastTime": 2.07,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4335,7 +4334,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 2.112,
+ "CastTime": 1.93,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -4815,7 +4814,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 1.188,
+ "CastTime": 1.0,
"Slottable": true,
"AoEModifier": 2.37995839
},
@@ -5258,7 +5257,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 3.432,
+ "CastTime": 3.17,
"Slottable": true,
"AoEModifier": 4.0
},
@@ -5401,7 +5400,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 3.432,
+ "CastTime": 3.2,
"Slottable": true,
"AoEModifier": 1.0
},
@@ -5799,7 +5798,7 @@
}
],
"FullSetName": "Warshade_Offensive.Umbral_Blast",
- "CastTime": 3.168,
+ "CastTime": 3.0,
"Slottable": true,
"AoEModifier": 4.75
}
diff --git a/Hero Designer/Data/db_metadata.json b/Hero Designer/Data/db_metadata.json
index 89dfe1c3..16536df9 100644
--- a/Hero Designer/Data/db_metadata.json
+++ b/Hero Designer/Data/db_metadata.json
@@ -2,19694 +2,19694 @@
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Arachnos_Soldiers.Arachnos_Soldier",
- "Hash": -1250268093,
- "Length": 69107
+ "Hash": -587289348,
+ "Length": 69097
},
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Arachnos_Soldiers.Bane_Spider_Soldier",
- "Hash": -1903904002,
- "Length": 89793
+ "Hash": -1220520538,
+ "Length": 89772
},
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Arachnos_Soldiers.Crab_Spider_Soldier",
- "Hash": 1648880297,
- "Length": 71818
+ "Hash": 1157495257,
+ "Length": 71794
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Archery",
- "Hash": -1216359950,
- "Length": 123661
+ "Hash": 1178541719,
+ "Length": 123639
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Assault_Rifle",
- "Hash": 528339001,
- "Length": 135363
+ "Hash": -567378186,
+ "Length": 135349
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Beam_Rifle",
- "Hash": 1099975422,
- "Length": 168776
+ "Hash": 2127768624,
+ "Length": 168757
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Dark_Blast",
- "Hash": -2091790851,
- "Length": 140930
+ "Hash": -1772511499,
+ "Length": 140914
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Dual_Pistols",
- "Hash": 51278850,
- "Length": 373762
+ "Hash": 1267683214,
+ "Length": 373693
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Electrical_Blast",
- "Hash": -2012403136,
- "Length": 156524
+ "Hash": -1932622156,
+ "Length": 156504
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Energy_Blast",
- "Hash": -1485606906,
- "Length": 146658
+ "Hash": 893977748,
+ "Length": 146630
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Fire_Blast",
- "Hash": -1295098970,
- "Length": 126784
+ "Hash": 972592607,
+ "Length": 126766
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Ice_Blast",
- "Hash": -1009318121,
- "Length": 157364
+ "Hash": -1110259942,
+ "Length": 157337
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Psychic_Blast",
- "Hash": 1893608091,
- "Length": 137923
+ "Hash": -1513403466,
+ "Length": 137899
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Radiation_Blast",
- "Hash": 1825200590,
- "Length": 137662
+ "Hash": 845611792,
+ "Length": 137642
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Sonic_Attack",
- "Hash": 1703255310,
- "Length": 185950
+ "Hash": 809039771,
+ "Length": 185933
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Ranged.Water_Blast",
- "Hash": 568105482,
- "Length": 221508
+ "Hash": -272344766,
+ "Length": 221494
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Radiation_Manipulation",
- "Hash": 35309325,
- "Length": 151015
+ "Hash": -1612523385,
+ "Length": 150990
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Darkness_Manipulation",
- "Hash": -1057190410,
- "Length": 148713
+ "Hash": 1060832552,
+ "Length": 148696
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Gadgets",
- "Hash": -555709902,
- "Length": 141932
+ "Hash": 1094393327,
+ "Length": 141910
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Electricity_Manipulation",
- "Hash": 1604360884,
- "Length": 166853
+ "Hash": 1341815209,
+ "Length": 166831
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Energy_Manipulation",
- "Hash": 1000911483,
- "Length": 134811
+ "Hash": -1064517647,
+ "Length": 134779
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Fire_Manipulation",
- "Hash": 1918271065,
- "Length": 126837
+ "Hash": -1452080783,
+ "Length": 126817
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Ice_Manipulation",
- "Hash": -268914249,
- "Length": 162427
+ "Hash": -963850804,
+ "Length": 162406
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Martial_Manipulation",
- "Hash": 189782131,
- "Length": 147975
+ "Hash": 61069908,
+ "Length": 147904
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Mental_Manipulation",
- "Hash": -278074683,
- "Length": 125984
+ "Hash": 649238854,
+ "Length": 125965
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Ninja_Training",
- "Hash": 1086467767,
- "Length": 177988
+ "Hash": -1262988658,
+ "Length": 177940
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Plant_Manipulation",
- "Hash": -782905268,
- "Length": 144780
+ "Hash": 179446004,
+ "Length": 144766
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Tactical_Arrow",
- "Hash": -1130162676,
- "Length": 159048
+ "Hash": -1463250866,
+ "Length": 158973
},
{
"Archetype": "Class_Blaster",
"Fullname": "Blaster_Support.Temporal_Manipulation",
- "Hash": -2147465871,
- "Length": 163912
+ "Hash": 748696195,
+ "Length": 163871
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Achilles_Heel_A",
- "Hash": -690983454,
- "Length": 3398
+ "Hash": -1874192059,
+ "Length": 3372
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Achilles_Heel_B",
- "Hash": 656205300,
- "Length": 4605
+ "Hash": -718230257,
+ "Length": 4579
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Achilles_Heel_C",
- "Hash": 2035663853,
- "Length": 10152
+ "Hash": -1339719038,
+ "Length": 10126
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_A",
- "Hash": -1802504253,
- "Length": 3424
+ "Hash": 641390898,
+ "Length": 3398
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_B",
- "Hash": -203289618,
- "Length": 4647
+ "Hash": -1899607669,
+ "Length": 4621
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_C",
- "Hash": -1565595340,
- "Length": 5866
+ "Hash": 481687217,
+ "Length": 5840
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_D",
- "Hash": -669035266,
- "Length": 4615
+ "Hash": 1509552247,
+ "Length": 4589
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_E",
- "Hash": 1686919364,
- "Length": 4662
+ "Hash": -2135003483,
+ "Length": 4636
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adjusted_Targeting_F",
- "Hash": -2066221718,
- "Length": 3400
+ "Hash": -1116912077,
+ "Length": 3374
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adrenal_Adjustment_A",
- "Hash": -1018800388,
- "Length": 4515
+ "Hash": 78092469,
+ "Length": 4489
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adrenal_Adjustment_B",
- "Hash": 967002664,
- "Length": 5734
+ "Hash": -572512789,
+ "Length": 5708
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Adrenal_Adjustment_C",
- "Hash": 2131454130,
- "Length": 6929
+ "Hash": 1457010685,
+ "Length": 6903
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_A",
- "Hash": 1721668727,
- "Length": 11677
+ "Hash": 678639568,
+ "Length": 11651
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_B",
- "Hash": -1321042397,
- "Length": 11663
+ "Hash": -1446969654,
+ "Length": 11637
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_C",
- "Hash": -712270430,
- "Length": 4449
+ "Hash": 1879799979,
+ "Length": 4423
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_D",
- "Hash": -606565387,
- "Length": 12935
+ "Hash": 2000299030,
+ "Length": 12909
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_E",
- "Hash": 1647249032,
- "Length": 10479
+ "Hash": -963286669,
+ "Length": 10453
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Aegis_F",
- "Hash": 834478736,
- "Length": 9456
+ "Hash": -1720196083,
+ "Length": 9430
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Air_Burst_A",
- "Hash": -1962586325,
- "Length": 11816
+ "Hash": -535491876,
+ "Length": 11790
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Air_Burst_B",
- "Hash": -446200577,
- "Length": 11860
+ "Hash": 1727736564,
+ "Length": 11834
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Air_Burst_C",
- "Hash": -684789860,
- "Length": 11841
+ "Hash": 486397405,
+ "Length": 11815
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Air_Burst_D",
- "Hash": 1617870741,
- "Length": 11796
+ "Hash": 624701428,
+ "Length": 11770
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_A",
- "Hash": -945687476,
- "Length": 3632
+ "Hash": -687987627,
+ "Length": 3606
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_B",
- "Hash": -823554921,
- "Length": 4831
+ "Hash": -670279652,
+ "Length": 4805
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_C",
- "Hash": 1437569546,
- "Length": 4781
+ "Hash": 1086724785,
+ "Length": 4755
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_D",
- "Hash": 2112667387,
- "Length": 6065
+ "Hash": 236655544,
+ "Length": 6039
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_E",
- "Hash": 934498137,
- "Length": 6003
+ "Hash": 1858890084,
+ "Length": 5977
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Analyze_Weakness_F",
- "Hash": -562495818,
- "Length": 3751
+ "Hash": -1448957451,
+ "Length": 3725
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_A",
- "Hash": -374258737,
- "Length": 11900
+ "Hash": -1876343574,
+ "Length": 11874
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_B",
- "Hash": -37418638,
- "Length": 11925
+ "Hash": 669203971,
+ "Length": 11899
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_C",
- "Hash": -1511007372,
- "Length": 13049
+ "Hash": 1345179747,
+ "Length": 13023
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_D",
- "Hash": 627510641,
- "Length": 13071
+ "Hash": 1682622116,
+ "Length": 13045
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_E",
- "Hash": -1823142712,
- "Length": 14281
+ "Hash": -1062228051,
+ "Length": 14255
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annihilation_F",
- "Hash": -721198277,
- "Length": 3505
+ "Hash": -1805913510,
+ "Length": 3479
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annoyance_A",
- "Hash": -517692206,
- "Length": 3305
+ "Hash": -1084487275,
+ "Length": 3279
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annoyance_B",
- "Hash": 1156693322,
- "Length": 4526
+ "Hash": 687792215,
+ "Length": 4500
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Annoyance_C",
- "Hash": -1745113743,
- "Length": 5642
+ "Hash": -687593078,
+ "Length": 5616
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_A",
- "Hash": -347313766,
- "Length": 11469
+ "Hash": 442845161,
+ "Length": 11443
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_B",
- "Hash": -778836717,
- "Length": 11454
+ "Hash": -1236368680,
+ "Length": 11428
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_C",
- "Hash": -1260885920,
- "Length": 5319
+ "Hash": -1193822683,
+ "Length": 5293
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_D",
- "Hash": 513878146,
- "Length": 12701
+ "Hash": 2034560405,
+ "Length": 12675
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_E",
- "Hash": -939042442,
- "Length": 13932
+ "Hash": -1730322509,
+ "Length": 13906
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ascendency_of_the_Dominator_F",
- "Hash": -2130146681,
- "Length": 5553
+ "Hash": -992808690,
+ "Length": 5527
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_A",
- "Hash": -233626715,
- "Length": 12348
+ "Hash": -960744314,
+ "Length": 12322
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_B",
- "Hash": 319959878,
- "Length": 12375
+ "Hash": -298008465,
+ "Length": 12349
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_C",
- "Hash": -1025331404,
- "Length": 13546
+ "Hash": 873350557,
+ "Length": 13520
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_D",
- "Hash": 1946189748,
- "Length": 13569
+ "Hash": -256849993,
+ "Length": 13543
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_E",
- "Hash": -868801482,
- "Length": 14746
+ "Hash": -971046993,
+ "Length": 14720
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Assassins_Mark_F",
- "Hash": 753067508,
- "Length": 5003
+ "Hash": -1247060795,
+ "Length": 4977
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_A",
- "Hash": -1232586127,
- "Length": 12080
+ "Hash": -1016071536,
+ "Length": 12054
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_B",
- "Hash": -543868671,
- "Length": 12109
+ "Hash": 113631118,
+ "Length": 12083
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_C",
- "Hash": 902741661,
- "Length": 13266
+ "Hash": -675526444,
+ "Length": 13240
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_D",
- "Hash": 1126981643,
- "Length": 13267
+ "Hash": -510756474,
+ "Length": 13241
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_E",
- "Hash": 1269467063,
- "Length": 14458
+ "Hash": -684749808,
+ "Length": 14432
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Avalanche_F",
- "Hash": 475963183,
- "Length": 5073
+ "Hash": 1297721634,
+ "Length": 5047
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_A",
- "Hash": 842147636,
- "Length": 4553
+ "Hash": 1563985971,
+ "Length": 4527
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_B",
- "Hash": 609557020,
- "Length": 4542
+ "Hash": 516614153,
+ "Length": 4516
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_C",
- "Hash": -1069500027,
- "Length": 4537
+ "Hash": 648887446,
+ "Length": 4511
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_D",
- "Hash": -352325914,
- "Length": 5827
+ "Hash": 309584389,
+ "Length": 5801
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_E",
- "Hash": -964242494,
- "Length": 7034
+ "Hash": -275072947,
+ "Length": 7008
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Basilisks_Gaze_F",
- "Hash": -310512570,
- "Length": 3391
+ "Hash": -1580027783,
+ "Length": 3365
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Befuddling_Aura_A",
- "Hash": -1085619805,
- "Length": 4582
+ "Hash": -1218343006,
+ "Length": 4556
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Befuddling_Aura_B",
- "Hash": 1687747380,
- "Length": 4636
+ "Hash": 883422639,
+ "Length": 4610
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Befuddling_Aura_C",
- "Hash": 338505204,
- "Length": 4569
+ "Hash": 1903715963,
+ "Length": 4543
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Befuddling_Aura_D",
- "Hash": -5736636,
- "Length": 4551
+ "Hash": -640826397,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Befuddling_Aura_E",
- "Hash": 2054560525,
- "Length": 5759
+ "Hash": 236111294,
+ "Length": 5733
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_A",
- "Hash": -1742015525,
- "Length": 12322
+ "Hash": -1390356516,
+ "Length": 12296
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_B",
- "Hash": -321872650,
- "Length": 12349
+ "Hash": 1160649987,
+ "Length": 12323
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_C",
- "Hash": -852499401,
- "Length": 13518
+ "Hash": -336687668,
+ "Length": 13492
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_D",
- "Hash": 1135092181,
- "Length": 13519
+ "Hash": -1335126030,
+ "Length": 13493
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_E",
- "Hash": 1867532505,
- "Length": 14720
+ "Hash": -1341291434,
+ "Length": 14694
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blasters_Wrath_F",
- "Hash": 62795612,
- "Length": 6235
+ "Hash": -526625939,
+ "Length": 6209
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blessing_of_the_Zephyr_A",
- "Hash": -841881827,
- "Length": 8532
+ "Hash": -768754022,
+ "Length": 8506
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blessing_of_the_Zephyr_B",
- "Hash": 811169306,
- "Length": 9796
+ "Hash": 87101505,
+ "Length": 9770
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blessing_of_the_Zephyr_C",
- "Hash": 890919869,
- "Length": 3637
+ "Hash": 105457836,
+ "Length": 3611
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_A",
- "Hash": 712804799,
- "Length": 12150
+ "Hash": -1655428170,
+ "Length": 12124
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_B",
- "Hash": 1600696155,
- "Length": 12194
+ "Hash": 135667930,
+ "Length": 12168
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_C",
- "Hash": -353618960,
- "Length": 13327
+ "Hash": 1553954023,
+ "Length": 13301
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_D",
- "Hash": 934922250,
- "Length": 13348
+ "Hash": -1299330607,
+ "Length": 13322
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_E",
- "Hash": 441960636,
- "Length": 14540
+ "Hash": -323996959,
+ "Length": 14514
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blistering_Cold_F",
- "Hash": -2145132736,
- "Length": 6128
+ "Hash": 2066566049,
+ "Length": 6102
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_A",
- "Hash": -147766295,
- "Length": 11930
+ "Hash": 1165324310,
+ "Length": 11904
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_B",
- "Hash": 1959099191,
- "Length": 11974
+ "Hash": -1534202736,
+ "Length": 11948
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_C",
- "Hash": -542691573,
- "Length": 4561
+ "Hash": 1680442320,
+ "Length": 4535
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_D",
- "Hash": -1932543438,
- "Length": 13141
+ "Hash": 1008756167,
+ "Length": 13115
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_E",
- "Hash": -967457067,
- "Length": 3339
+ "Hash": -1506435416,
+ "Length": 3313
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Blood_Mandate_F",
- "Hash": -366424016,
- "Length": 10739
+ "Hash": -1203702503,
+ "Length": 10713
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bonesnap_A",
- "Hash": -201376743,
- "Length": 11790
+ "Hash": 1025337134,
+ "Length": 11764
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bonesnap_B",
- "Hash": 14309939,
- "Length": 11836
+ "Hash": 472253050,
+ "Length": 11810
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bonesnap_C",
- "Hash": -709590169,
- "Length": 4461
+ "Hash": -819474992,
+ "Length": 4435
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_A",
- "Hash": -782930761,
- "Length": 12126
+ "Hash": -1719357376,
+ "Length": 12100
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_B",
- "Hash": -2115925773,
- "Length": 12170
+ "Hash": 1475444664,
+ "Length": 12144
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_C",
- "Hash": -1026592371,
- "Length": 4659
+ "Hash": 94084094,
+ "Length": 4633
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_D",
- "Hash": -2104551271,
- "Length": 13351
+ "Hash": 464599376,
+ "Length": 13325
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_E",
- "Hash": -1982481015,
- "Length": 3423
+ "Hash": 1646559584,
+ "Length": 3397
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brilliant_Leadership_F",
- "Hash": 577606566,
- "Length": 10921
+ "Hash": -1324001589,
+ "Length": 10895
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bruising_Blow_A",
- "Hash": -721386866,
- "Length": 11930
+ "Hash": -1066769599,
+ "Length": 11904
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bruising_Blow_B",
- "Hash": -1431413696,
- "Length": 11976
+ "Hash": -1651905111,
+ "Length": 11950
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Bruising_Blow_C",
- "Hash": -2083780226,
- "Length": 11957
+ "Hash": 322739761,
+ "Length": 11931
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_A",
- "Hash": -839483715,
- "Length": 12232
+ "Hash": 1181287676,
+ "Length": 12206
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_B",
- "Hash": -1848405668,
- "Length": 12259
+ "Hash": -1423355181,
+ "Length": 12233
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_C",
- "Hash": 507996580,
- "Length": 13424
+ "Hash": -1601002007,
+ "Length": 13398
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_D",
- "Hash": 2110209652,
- "Length": 13447
+ "Hash": -290007601,
+ "Length": 13421
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_E",
- "Hash": -1920447546,
- "Length": 14618
+ "Hash": 130091847,
+ "Length": 14592
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Brutes_Fury_F",
- "Hash": 1826677698,
- "Length": 4850
+ "Hash": -1695760217,
+ "Length": 4824
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_A",
- "Hash": -481834576,
- "Length": 4500
+ "Hash": 465037935,
+ "Length": 4474
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_B",
- "Hash": 1841211487,
- "Length": 4554
+ "Hash": -1811001770,
+ "Length": 4528
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_C",
- "Hash": 1017700451,
- "Length": 4487
+ "Hash": -1029530854,
+ "Length": 4461
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_D",
- "Hash": 1447339683,
- "Length": 4469
+ "Hash": -1644952072,
+ "Length": 4443
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_E",
- "Hash": -1085332716,
- "Length": 5665
+ "Hash": -1387778739,
+ "Length": 5639
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cacophany_F",
- "Hash": 1175641870,
- "Length": 4475
+ "Hash": -1450668175,
+ "Length": 4449
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_A",
- "Hash": -1142320296,
- "Length": 12098
+ "Hash": -639051849,
+ "Length": 12072
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_B",
- "Hash": -1115299445,
- "Length": 4627
+ "Hash": -813136310,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_C",
- "Hash": 1956414913,
- "Length": 4628
+ "Hash": 145030704,
+ "Length": 4602
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_D",
- "Hash": 959127871,
- "Length": 4559
+ "Hash": -2023844634,
+ "Length": 4533
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_E",
- "Hash": -174177816,
- "Length": 4606
+ "Hash": -244260185,
+ "Length": 4580
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Calibrated_Accuracy_F",
- "Hash": -279257751,
- "Length": 13318
+ "Hash": -991306034,
+ "Length": 13292
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_A",
- "Hash": 2089673862,
- "Length": 4639
+ "Hash": -1882698571,
+ "Length": 4613
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_B",
- "Hash": -1250437655,
- "Length": 4676
+ "Hash": -1885278688,
+ "Length": 4650
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_C",
- "Hash": 632562673,
- "Length": 4626
+ "Hash": 814541190,
+ "Length": 4600
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_D",
- "Hash": 356302685,
- "Length": 4594
+ "Hash": 978843676,
+ "Length": 4568
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_E",
- "Hash": -993046506,
- "Length": 5810
+ "Hash": 2020640635,
+ "Length": 5784
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_of_the_Sandman_F",
- "Hash": 1701863621,
- "Length": 3509
+ "Hash": 2022456838,
+ "Length": 3483
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_A",
- "Hash": 459837202,
- "Length": 4757
+ "Hash": 424731379,
+ "Length": 4731
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_B",
- "Hash": -934768475,
- "Length": 12148
+ "Hash": 2033248660,
+ "Length": 12122
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_C",
- "Hash": -807815216,
- "Length": 12193
+ "Hash": -2103821527,
+ "Length": 12167
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_D",
- "Hash": 1334600202,
- "Length": 13348
+ "Hash": -644520357,
+ "Length": 13322
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_E",
- "Hash": 1023725579,
- "Length": 13367
+ "Hash": 974904226,
+ "Length": 13341
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Call_to_Arms_F",
- "Hash": 934135804,
- "Length": 3730
+ "Hash": 1799800867,
+ "Length": 3704
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Celerity_A",
- "Hash": 794931479,
- "Length": 3292
+ "Hash": -834408808,
+ "Length": 3266
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Celerity_B",
- "Hash": 1614931616,
- "Length": 3256
+ "Hash": 847083897,
+ "Length": 3230
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Celerity_C",
- "Hash": -313795661,
- "Length": 6727
+ "Hash": 767115372,
+ "Length": 6701
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cleaving_Blow_A",
- "Hash": -1313117687,
- "Length": 11930
+ "Hash": 732715180,
+ "Length": 11904
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cleaving_Blow_B",
- "Hash": 1989356045,
- "Length": 11974
+ "Hash": 755843424,
+ "Length": 11948
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cleaving_Blow_C",
- "Hash": -2068426100,
- "Length": 11955
+ "Hash": -492952511,
+ "Length": 11929
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cleaving_Blow_D",
- "Hash": 2016224661,
- "Length": 4545
+ "Hash": -235275826,
+ "Length": 4519
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_A",
- "Hash": 908919279,
- "Length": 3568
+ "Hash": 1495178566,
+ "Length": 3542
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_B",
- "Hash": 1400652821,
- "Length": 4765
+ "Hash": 55146068,
+ "Length": 4739
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_C",
- "Hash": -822820272,
- "Length": 4724
+ "Hash": -285118001,
+ "Length": 4698
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_D",
- "Hash": 109318727,
- "Length": 5989
+ "Hash": 2025590592,
+ "Length": 5963
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_E",
- "Hash": -1487624049,
- "Length": 5938
+ "Hash": 2018275950,
+ "Length": 5912
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Cloud_Senses_F",
- "Hash": -91385042,
- "Length": 4567
+ "Hash": 1294709023,
+ "Length": 4541
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_A",
- "Hash": -1649374536,
- "Length": 12560
+ "Hash": 1342576043,
+ "Length": 12534
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_B",
- "Hash": -1221424656,
- "Length": 12591
+ "Hash": -464280679,
+ "Length": 12565
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_C",
- "Hash": -89550174,
- "Length": 13780
+ "Hash": -1582485323,
+ "Length": 13754
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_D",
- "Hash": -1230935368,
- "Length": 13803
+ "Hash": -528396907,
+ "Length": 13777
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_E",
- "Hash": -1538380628,
- "Length": 15002
+ "Hash": 141184611,
+ "Length": 14976
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Command_of_the_Mastermind_F",
- "Hash": 1325511824,
- "Length": 3972
+ "Hash": 1894249433,
+ "Length": 3946
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Commanding_Presence_A",
- "Hash": -162663969,
- "Length": 12098
+ "Hash": -1509960472,
+ "Length": 12072
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Commanding_Presence_B",
- "Hash": 1693749267,
- "Length": 12142
+ "Hash": 1484630252,
+ "Length": 12116
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Commanding_Presence_C",
- "Hash": -1337413175,
- "Length": 4645
+ "Hash": 1042463378,
+ "Length": 4619
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Commanding_Presence_D",
- "Hash": -569647723,
- "Length": 13321
+ "Hash": 1233231828,
+ "Length": 13295
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Commanding_Presence_E",
- "Hash": -1551964759,
- "Length": 3397
+ "Hash": 774129654,
+ "Length": 3371
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_A",
- "Hash": 782187530,
- "Length": 12393
+ "Hash": 1380099119,
+ "Length": 12367
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_B",
- "Hash": 1795291085,
- "Length": 12420
+ "Hash": 2004684964,
+ "Length": 12394
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_C",
- "Hash": -1496226169,
- "Length": 13595
+ "Hash": -308989898,
+ "Length": 13569
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_D",
- "Hash": -1051164655,
- "Length": 13618
+ "Hash": -489961430,
+ "Length": 13592
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_E",
- "Hash": 887113909,
- "Length": 14799
+ "Hash": 1867759706,
+ "Length": 14773
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Critical_Strikes_F",
- "Hash": -1185857345,
- "Length": 5370
+ "Hash": -1574431998,
+ "Length": 5344
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_A",
- "Hash": -2084593684,
- "Length": 11986
+ "Hash": -1299465671,
+ "Length": 11960
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_B",
- "Hash": -1852209849,
- "Length": 12030
+ "Hash": 832475316,
+ "Length": 12004
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_C",
- "Hash": -1914372355,
- "Length": 12011
+ "Hash": 1940168102,
+ "Length": 11985
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_D",
- "Hash": -1854798551,
- "Length": 13185
+ "Hash": -400545482,
+ "Length": 13159
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_E",
- "Hash": -1371049148,
- "Length": 13201
+ "Hash": -656458973,
+ "Length": 13175
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Crushing_Impact_F",
- "Hash": 1262488040,
- "Length": 13188
+ "Hash": -1911188435,
+ "Length": 13162
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Curtail_Speed_A",
- "Hash": 858438186,
- "Length": 6620
+ "Hash": -1199620051,
+ "Length": 6594
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Curtail_Speed_B",
- "Hash": -956878532,
- "Length": 14038
+ "Hash": -268170347,
+ "Length": 14012
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Curtail_Speed_C",
- "Hash": -243214484,
- "Length": 4541
+ "Hash": -112987837,
+ "Length": 4515
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Curtail_Speed_D",
- "Hash": -486441509,
- "Length": 6605
+ "Hash": 1463027884,
+ "Length": 6579
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Curtail_Speed_E",
- "Hash": 883951286,
- "Length": 7898
+ "Hash": -1180136549,
+ "Length": 7872
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_A",
- "Hash": 1454679459,
- "Length": 3418
+ "Hash": -71230130,
+ "Length": 3392
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_B",
- "Hash": -938971188,
- "Length": 4637
+ "Hash": -903081287,
+ "Length": 4611
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_C",
- "Hash": 21531786,
- "Length": 5852
+ "Hash": -1687995507,
+ "Length": 5826
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_D",
- "Hash": 911391451,
- "Length": 4591
+ "Hash": 37367104,
+ "Length": 4565
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_E",
- "Hash": 39238774,
- "Length": 4652
+ "Hash": 48099557,
+ "Length": 4626
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dampened_Spirits_F",
- "Hash": -782215485,
- "Length": 3380
+ "Hash": 443551814,
+ "Length": 3354
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_A",
- "Hash": -307246440,
- "Length": 3480
+ "Hash": -984269183,
+ "Length": 3454
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_B",
- "Hash": -2086171449,
- "Length": 4709
+ "Hash": -1906807760,
+ "Length": 4683
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_C",
- "Hash": -1494681589,
- "Length": 5934
+ "Hash": 1542785972,
+ "Length": 5908
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_D",
- "Hash": -1138064322,
- "Length": 4663
+ "Hash": -1860450087,
+ "Length": 4637
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_E",
- "Hash": -1850856736,
- "Length": 4724
+ "Hash": 210548103,
+ "Length": 4698
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dark_Watchers_Despair_F",
- "Hash": 1352089537,
- "Length": 3485
+ "Hash": -1972607054,
+ "Length": 3459
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_A",
- "Hash": 1274303055,
- "Length": 4634
+ "Hash": 11023672,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_B",
- "Hash": -439494462,
- "Length": 4711
+ "Hash": 1995357131,
+ "Length": 4685
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_C",
- "Hash": 513476932,
- "Length": 4621
+ "Hash": 354884835,
+ "Length": 4595
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_D",
- "Hash": 458643530,
- "Length": 4624
+ "Hash": -2013111285,
+ "Length": 4598
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_E",
- "Hash": -733195337,
- "Length": 5828
+ "Hash": 776257668,
+ "Length": 5802
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Debiliative_Action_F",
- "Hash": 1049860841,
- "Length": 4669
+ "Hash": -50802092,
+ "Length": 4643
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_A",
- "Hash": 1318559980,
- "Length": 11846
+ "Hash": -1599880645,
+ "Length": 11820
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_B",
- "Hash": 493622298,
- "Length": 11890
+ "Hash": 1405346571,
+ "Length": 11864
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_C",
- "Hash": -778960635,
- "Length": 11871
+ "Hash": -1507809406,
+ "Length": 11845
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_D",
- "Hash": 1553527780,
- "Length": 5700
+ "Hash": -365941721,
+ "Length": 5674
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_E",
- "Hash": -332735434,
- "Length": 13048
+ "Hash": -1907609761,
+ "Length": 13022
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Decimation_F",
- "Hash": -1945837128,
- "Length": 3655
+ "Hash": 1377054717,
+ "Length": 3629
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_A",
- "Hash": -990286748,
- "Length": 12412
+ "Hash": 2007847915,
+ "Length": 12386
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_B",
- "Hash": 407886443,
- "Length": 12439
+ "Hash": -1137989758,
+ "Length": 12413
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_C",
- "Hash": -519381128,
- "Length": 13634
+ "Hash": 241121829,
+ "Length": 13608
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_D",
- "Hash": 544206321,
- "Length": 13615
+ "Hash": 901343180,
+ "Length": 13589
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_E",
- "Hash": 458879757,
- "Length": 14822
+ "Hash": -1202952476,
+ "Length": 14796
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defenders_Bastion_F",
- "Hash": 1515976116,
- "Length": 5232
+ "Hash": 1090200097,
+ "Length": 5206
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_A",
- "Hash": -644180343,
- "Length": 12360
+ "Hash": -403588636,
+ "Length": 12334
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_B",
- "Hash": -1631429622,
- "Length": 12387
+ "Hash": 100498987,
+ "Length": 12361
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_C",
- "Hash": 286289216,
- "Length": 13558
+ "Hash": 328829521,
+ "Length": 13532
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_D",
- "Hash": 1307297701,
- "Length": 13559
+ "Hash": -1334237662,
+ "Length": 13533
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_E",
- "Hash": -161921861,
- "Length": 14762
+ "Hash": 2132353142,
+ "Length": 14736
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Defiant_Barrage_F",
- "Hash": 462784570,
- "Length": 5477
+ "Hash": -1010147957,
+ "Length": 5451
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Deflated_Ego_A",
- "Hash": -142792540,
- "Length": 3370
+ "Hash": 349166067,
+ "Length": 3344
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Deflated_Ego_B",
- "Hash": -972394191,
- "Length": 4581
+ "Hash": -707200584,
+ "Length": 4555
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Deflated_Ego_C",
- "Hash": -798777555,
- "Length": 3523
+ "Hash": -1275824806,
+ "Length": 3497
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_A",
- "Hash": 463307085,
- "Length": 11846
+ "Hash": 734992484,
+ "Length": 11820
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_B",
- "Hash": 1789407591,
- "Length": 11890
+ "Hash": 239484704,
+ "Length": 11864
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_C",
- "Hash": -1657199715,
- "Length": 11871
+ "Hash": 685787108,
+ "Length": 11845
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_D",
- "Hash": -1600211530,
- "Length": 11826
+ "Hash": 475717275,
+ "Length": 11800
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_E",
- "Hash": -1774846838,
- "Length": 13051
+ "Hash": 2112052991,
+ "Length": 13025
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Detonation_F",
- "Hash": 239110961,
- "Length": 13028
+ "Hash": -1331434434,
+ "Length": 13002
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_A",
- "Hash": 1163622743,
- "Length": 11874
+ "Hash": -959288028,
+ "Length": 11848
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_B",
- "Hash": 1952303674,
- "Length": 11918
+ "Hash": 1915377639,
+ "Length": 11892
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_C",
- "Hash": 1905353610,
- "Length": 11899
+ "Hash": -2101419619,
+ "Length": 11873
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_D",
- "Hash": 641257374,
- "Length": 13080
+ "Hash": -794716983,
+ "Length": 13054
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_E",
- "Hash": -2048119753,
- "Length": 14260
+ "Hash": 526874168,
+ "Length": 14234
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Devastation_F",
- "Hash": 919901036,
- "Length": 4547
+ "Hash": -1630905093,
+ "Length": 4521
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Discouraging_Words_A",
- "Hash": -2052583670,
- "Length": 3442
+ "Hash": 1399088193,
+ "Length": 3416
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Discouraging_Words_B",
- "Hash": 1315261613,
- "Length": 4665
+ "Hash": -2125680328,
+ "Length": 4639
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Discouraging_Words_C",
- "Hash": 386562963,
- "Length": 5884
+ "Hash": -1457284894,
+ "Length": 5858
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_A",
- "Hash": 441526668,
- "Length": 7821
+ "Hash": -576861651,
+ "Length": 7795
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_B",
- "Hash": 696258168,
- "Length": 4553
+ "Hash": 1680353229,
+ "Length": 4527
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_C",
- "Hash": 570084342,
- "Length": 7814
+ "Hash": -1291757475,
+ "Length": 7788
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_D",
- "Hash": -1278855256,
- "Length": 9020
+ "Hash": 1486976813,
+ "Length": 8994
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_E",
- "Hash": -1299716440,
- "Length": 6605
+ "Hash": -287196143,
+ "Length": 6579
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Doctored_Wounds_F",
- "Hash": -751180145,
- "Length": 3327
+ "Hash": -2027979174,
+ "Length": 3301
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_A",
- "Hash": 931643094,
- "Length": 11219
+ "Hash": 894195163,
+ "Length": 11193
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_B",
- "Hash": -84954147,
- "Length": 11204
+ "Hash": -2103561748,
+ "Length": 11178
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_C",
- "Hash": -269754512,
- "Length": 5179
+ "Hash": -261158941,
+ "Length": 5153
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_D",
- "Hash": -1611067032,
- "Length": 12429
+ "Hash": 546775935,
+ "Length": 12403
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_E",
- "Hash": -412225716,
- "Length": 13638
+ "Hash": 1758799641,
+ "Length": 13612
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominating_Grasp_F",
- "Hash": -1553156838,
- "Length": 5383
+ "Hash": -1570592171,
+ "Length": 5357
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_A",
- "Hash": 1748656038,
- "Length": 12568
+ "Hash": -199991577,
+ "Length": 12542
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_B",
- "Hash": 865442499,
- "Length": 12597
+ "Hash": -1242821254,
+ "Length": 12571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_C",
- "Hash": 212956691,
- "Length": 13778
+ "Hash": 693323420,
+ "Length": 13752
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_D",
- "Hash": -887865321,
- "Length": 13803
+ "Hash": 1445760004,
+ "Length": 13777
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_E",
- "Hash": -1471787959,
- "Length": 14990
+ "Hash": 1963339126,
+ "Length": 14964
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Dominion_of_Arachnos_F",
- "Hash": 700502035,
- "Length": 14557
+ "Hash": -1201432288,
+ "Length": 14531
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_A",
- "Hash": 1487746884,
- "Length": 12098
+ "Hash": -1674363445,
+ "Length": 12072
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_B",
- "Hash": -502987904,
- "Length": 12142
+ "Hash": -1326099113,
+ "Length": 12116
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_C",
- "Hash": -1793870154,
- "Length": 4645
+ "Hash": 1179490913,
+ "Length": 4619
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_D",
- "Hash": -606066664,
- "Length": 13321
+ "Hash": 13025397,
+ "Length": 13295
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_E",
- "Hash": -1031011979,
- "Length": 10895
+ "Hash": 1519660206,
+ "Length": 10869
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Edict_of_the_Master_F",
- "Hash": 463699649,
- "Length": 3558
+ "Hash": -2113999300,
+ "Length": 3532
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_A",
- "Hash": -1410745837,
- "Length": 4489
+ "Hash": -232661954,
+ "Length": 4463
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_B",
- "Hash": -1310444602,
- "Length": 5704
+ "Hash": -1149053929,
+ "Length": 5678
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_C",
- "Hash": 1370442892,
- "Length": 6895
+ "Hash": -1143888629,
+ "Length": 6869
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_D",
- "Hash": -819404708,
- "Length": 4604
+ "Hash": -1697151567,
+ "Length": 4578
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_E",
- "Hash": 672054749,
- "Length": 5677
+ "Hash": -772419326,
+ "Length": 5651
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Efficacy_Adaptor_F",
- "Hash": -537639350,
- "Length": 5721
+ "Hash": 1665927353,
+ "Length": 5695
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Encouraged_Accuracy_A",
- "Hash": 715646401,
- "Length": 3438
+ "Hash": 1036573896,
+ "Length": 3412
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Encouraged_Accuracy_B",
- "Hash": 747751442,
- "Length": 4663
+ "Hash": 108574963,
+ "Length": 4637
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Encouraged_Accuracy_C",
- "Hash": -1728013156,
- "Length": 5884
+ "Hash": 2033927923,
+ "Length": 5858
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Energy_Manipulator_A",
- "Hash": -1301244183,
- "Length": 4517
+ "Hash": 726146938,
+ "Length": 4491
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Energy_Manipulator_B",
- "Hash": -1995781024,
- "Length": 5736
+ "Hash": -2086818309,
+ "Length": 5710
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Energy_Manipulator_C",
- "Hash": 1216437743,
- "Length": 3516
+ "Hash": -1998563318,
+ "Length": 3490
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_A",
- "Hash": -2004127333,
- "Length": 4645
+ "Hash": -327461244,
+ "Length": 4619
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_B",
- "Hash": -1313543151,
- "Length": 4712
+ "Hash": -1581619858,
+ "Length": 4686
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_C",
- "Hash": -66491079,
- "Length": 4632
+ "Hash": -510859144,
+ "Length": 4606
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_D",
- "Hash": 1632327113,
- "Length": 4635
+ "Hash": 2072776810,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_E",
- "Hash": -511183032,
- "Length": 5841
+ "Hash": 169436289,
+ "Length": 5815
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Enfeebled_Operation_F",
- "Hash": 1704200503,
- "Length": 4650
+ "Hash": -199602180,
+ "Length": 4624
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_A",
- "Hash": 184557491,
- "Length": 4638
+ "Hash": 2118164612,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_B",
- "Hash": -656340888,
- "Length": 4665
+ "Hash": 1480248455,
+ "Length": 4639
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_C",
- "Hash": -545437430,
- "Length": 4659
+ "Hash": -939683353,
+ "Length": 4633
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_D",
- "Hash": -1015164864,
- "Length": 5870
+ "Hash": 579472721,
+ "Length": 5844
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_E",
- "Hash": 673176422,
- "Length": 7063
+ "Hash": 556585985,
+ "Length": 7037
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entomb_F",
- "Hash": -675776375,
- "Length": 4773
+ "Hash": -1258173936,
+ "Length": 4747
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entropic_Chaos_A",
- "Hash": -5489998,
- "Length": 11958
+ "Hash": -1069083743,
+ "Length": 11932
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entropic_Chaos_B",
- "Hash": -60753644,
- "Length": 12002
+ "Hash": -777639091,
+ "Length": 11976
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entropic_Chaos_C",
- "Hash": -784306282,
- "Length": 11983
+ "Hash": -517056935,
+ "Length": 11957
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entropic_Chaos_D",
- "Hash": 1591656389,
- "Length": 13180
+ "Hash": 329191590,
+ "Length": 13154
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Entropic_Chaos_E",
- "Hash": -2041916749,
- "Length": 3437
+ "Hash": 1417816266,
+ "Length": 3411
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_A",
- "Hash": -1322962704,
- "Length": 10675
+ "Hash": 1204042177,
+ "Length": 10649
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_B",
- "Hash": 1150735816,
- "Length": 4497
+ "Hash": 1847282291,
+ "Length": 4471
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_C",
- "Hash": 1132967733,
- "Length": 11882
+ "Hash": -929446718,
+ "Length": 11856
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_D",
- "Hash": 1860364192,
- "Length": 13032
+ "Hash": -69302991,
+ "Length": 13006
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_E",
- "Hash": -1119191064,
- "Length": 14209
+ "Hash": -1895304185,
+ "Length": 14183
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Eradication_F",
- "Hash": 566962039,
- "Length": 4510
+ "Hash": 158423928,
+ "Length": 4484
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_A",
- "Hash": -540273664,
- "Length": 4610
+ "Hash": -1742548011,
+ "Length": 4584
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_B",
- "Hash": 1186790419,
- "Length": 4635
+ "Hash": -239989488,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_C",
- "Hash": -2087712655,
- "Length": 4597
+ "Hash": 732649494,
+ "Length": 4571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_D",
- "Hash": 300069468,
- "Length": 4558
+ "Hash": 1701137865,
+ "Length": 4532
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_E",
- "Hash": -412202489,
- "Length": 4603
+ "Hash": 1539879954,
+ "Length": 4577
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_of_Curare_F",
- "Hash": 1474655634,
- "Length": 5746
+ "Hash": -430368321,
+ "Length": 5720
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_A",
- "Hash": -892012731,
- "Length": 12431
+ "Hash": 118832854,
+ "Length": 12405
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_B",
- "Hash": 2059760029,
- "Length": 12458
+ "Hash": 1351422812,
+ "Length": 12432
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_C",
- "Hash": 626989679,
- "Length": 13633
+ "Hash": 1099892834,
+ "Length": 13607
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_D",
- "Hash": 1456787269,
- "Length": 13656
+ "Hash": -1690285836,
+ "Length": 13630
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_E",
- "Hash": -192379135,
- "Length": 14837
+ "Hash": 1562919350,
+ "Length": 14811
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Essence_Transfer_F",
- "Hash": -2091201640,
- "Length": 5131
+ "Hash": 402543247,
+ "Length": 5105
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_A",
- "Hash": -1075656644,
- "Length": 12154
+ "Hash": -386312921,
+ "Length": 12128
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_B",
- "Hash": -489035958,
- "Length": 12198
+ "Hash": 1026251793,
+ "Length": 12172
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_C",
- "Hash": -72979182,
- "Length": 12199
+ "Hash": -1198352299,
+ "Length": 12173
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_D",
- "Hash": -1447590315,
- "Length": 12132
+ "Hash": 1140501532,
+ "Length": 12106
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_E",
- "Hash": -328660826,
- "Length": 12179
+ "Hash": 887187293,
+ "Length": 12153
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Executioners_Contract_F",
- "Hash": -1794874940,
- "Length": 4718
+ "Hash": 1985749779,
+ "Length": 4692
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_A",
- "Hash": 1751049732,
- "Length": 4911
+ "Hash": 461206197,
+ "Length": 4885
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_B",
- "Hash": -893505072,
- "Length": 12456
+ "Hash": -1660393011,
+ "Length": 12430
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_C",
- "Hash": -1463346267,
- "Length": 12501
+ "Hash": 1238341054,
+ "Length": 12475
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_D",
- "Hash": 1317839240,
- "Length": 13678
+ "Hash": -567578553,
+ "Length": 13652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_E",
- "Hash": 1888988495,
- "Length": 13697
+ "Hash": -1953349548,
+ "Length": 13671
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Expedient_Reinforcement_F",
- "Hash": 1290954934,
- "Length": 3871
+ "Hash": -292097543,
+ "Length": 3845
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploit_Weakness_A",
- "Hash": 2018558875,
- "Length": 12014
+ "Hash": 952724576,
+ "Length": 11988
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploit_Weakness_B",
- "Hash": 1228217045,
- "Length": 12058
+ "Hash": 193422112,
+ "Length": 12032
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploit_Weakness_c",
- "Hash": -80158743,
- "Length": 12012
+ "Hash": -1773614012,
+ "Length": 11986
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploit_Weakness_D",
- "Hash": 1170204818,
- "Length": 12039
+ "Hash": 422242959,
+ "Length": 12013
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploited_Vulnerability_A",
- "Hash": 1951157255,
- "Length": 3518
+ "Hash": 1027424422,
+ "Length": 3492
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploited_Vulnerability_B",
- "Hash": -1991637853,
- "Length": 4745
+ "Hash": -1331977940,
+ "Length": 4719
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Exploited_Vulnerability_C",
- "Hash": 1585081347,
- "Length": 5978
+ "Hash": -271923208,
+ "Length": 5952
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Explosive_Strike_A",
- "Hash": -1668041030,
- "Length": 13152
+ "Hash": 1073075161,
+ "Length": 13126
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Explosive_Strike_B",
- "Hash": -679517814,
- "Length": 5694
+ "Hash": 673470741,
+ "Length": 5668
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Explosive_Strike_C",
- "Hash": 1555429489,
- "Length": 4516
+ "Hash": -865298116,
+ "Length": 4490
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_A",
- "Hash": -1450541710,
- "Length": 12014
+ "Hash": -574500325,
+ "Length": 11988
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_B",
- "Hash": -156284786,
- "Length": 12058
+ "Hash": 1447761109,
+ "Length": 12032
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_C",
- "Hash": -292836351,
- "Length": 5775
+ "Hash": 1817929998,
+ "Length": 5749
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_D",
- "Hash": -548273647,
- "Length": 13247
+ "Hash": 2101764736,
+ "Length": 13221
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_E",
- "Hash": 2118803762,
- "Length": 13218
+ "Hash": 899847159,
+ "Length": 13192
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Extreme_Measures_F",
- "Hash": -982978648,
- "Length": 5772
+ "Hash": 202701033,
+ "Length": 5746
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Far_Strike_A",
- "Hash": -2147456140,
- "Length": 11826
+ "Hash": -577301215,
+ "Length": 11800
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Far_Strike_B",
- "Hash": -2020558750,
- "Length": 11873
+ "Hash": -1947243805,
+ "Length": 11847
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Far_Strike_C",
- "Hash": -96075709,
- "Length": 4505
+ "Hash": -1806522484,
+ "Length": 4479
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Focused_Smite_A",
- "Hash": -1310837106,
- "Length": 11930
+ "Hash": 1005556379,
+ "Length": 11904
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Focused_Smite_B",
- "Hash": -586208078,
- "Length": 11974
+ "Hash": 531405423,
+ "Length": 11948
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Focused_Smite_C",
- "Hash": 1654032264,
- "Length": 11955
+ "Hash": -1593433205,
+ "Length": 11929
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Focused_Smite_D",
- "Hash": -356504455,
- "Length": 5748
+ "Hash": 819150976,
+ "Length": 5722
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Focused_Smite_E",
- "Hash": 1129627393,
- "Length": 13124
+ "Hash": -1050426320,
+ "Length": 13098
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_A",
- "Hash": -2010207204,
- "Length": 13092
+ "Hash": -1290537033,
+ "Length": 13066
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_B",
- "Hash": 128848888,
- "Length": 5662
+ "Hash": 1713125037,
+ "Length": 5636
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_C",
- "Hash": -1135591758,
- "Length": 5712
+ "Hash": 1157992615,
+ "Length": 5686
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_D",
- "Hash": 419232783,
- "Length": 4571
+ "Hash": -1727777014,
+ "Length": 4545
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_E",
- "Hash": -859805515,
- "Length": 14273
+ "Hash": 1989851044,
+ "Length": 14247
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Force_Feedback_F",
- "Hash": 309838433,
- "Length": 3628
+ "Hash": 541959844,
+ "Length": 3602
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Freebird_A",
- "Hash": 1188731448,
- "Length": 3291
+ "Hash": -233214319,
+ "Length": 3265
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Freebird_B",
- "Hash": -2054656718,
- "Length": 3261
+ "Hash": 1330434759,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Freebird_C",
- "Hash": -601150420,
- "Length": 6726
+ "Hash": 886783165,
+ "Length": 6700
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_A",
- "Hash": 345978540,
- "Length": 12166
+ "Hash": -1774306371,
+ "Length": 12140
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_B",
- "Hash": -5419134,
- "Length": 12195
+ "Hash": -1722298439,
+ "Length": 12169
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_C",
- "Hash": 1983646969,
- "Length": 13358
+ "Hash": -1266582670,
+ "Length": 13332
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_D",
- "Hash": -1281655169,
- "Length": 13359
+ "Hash": -560500718,
+ "Length": 13333
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_E",
- "Hash": -2025739338,
- "Length": 14556
+ "Hash": 11067235,
+ "Length": 14530
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Frozen_Blast_F",
- "Hash": 541189120,
- "Length": 6312
+ "Hash": 1899212129,
+ "Length": 6286
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_A",
- "Hash": 819878647,
- "Length": 12664
+ "Hash": 20599366,
+ "Length": 12638
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_B",
- "Hash": -403261602,
- "Length": 12693
+ "Hash": 1624089963,
+ "Length": 12667
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_C",
- "Hash": -384976155,
- "Length": 13900
+ "Hash": -799664954,
+ "Length": 13874
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_D",
- "Hash": 1748844636,
- "Length": 6388
+ "Hash": -1986061963,
+ "Length": 6362
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_E",
- "Hash": -203008262,
- "Length": 15076
+ "Hash": 1201993893,
+ "Length": 15050
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Fury_of_the_Gladiator_F",
- "Hash": 261225109,
- "Length": 4216
+ "Hash": 1899930592,
+ "Length": 4190
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_A",
- "Hash": -2070107531,
- "Length": 12355
+ "Hash": 1359912082,
+ "Length": 12329
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_B",
- "Hash": 1713827224,
- "Length": 12382
+ "Hash": -132694389,
+ "Length": 12356
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_C",
- "Hash": -787862448,
- "Length": 13555
+ "Hash": -1530495323,
+ "Length": 13529
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_D",
- "Hash": -1248045372,
- "Length": 13578
+ "Hash": 870736343,
+ "Length": 13552
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_E",
- "Hash": -599779710,
- "Length": 14757
+ "Hash": 1672984815,
+ "Length": 14731
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gauntleted_Fist_F",
- "Hash": 181601542,
- "Length": 5274
+ "Hash": -1661630377,
+ "Length": 5248
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_A",
- "Hash": 272241603,
- "Length": 3622
+ "Hash": 1105441258,
+ "Length": 3596
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_B",
- "Hash": 81389838,
- "Length": 4877
+ "Hash": 736322501,
+ "Length": 4851
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_C",
- "Hash": -751357682,
- "Length": 6128
+ "Hash": 877545689,
+ "Length": 6102
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_D",
- "Hash": 495537220,
- "Length": 4845
+ "Hash": -1644039567,
+ "Length": 4819
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_E",
- "Hash": 2083432822,
- "Length": 4892
+ "Hash": -1142112231,
+ "Length": 4866
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gaussians_Synchronized_FireControl_F",
- "Hash": -148888724,
- "Length": 3954
+ "Hash": 1294567479,
+ "Length": 3928
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_A",
- "Hash": -1918138681,
- "Length": 4653
+ "Hash": -758512724,
+ "Length": 4627
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_B",
- "Hash": 1666680072,
- "Length": 4678
+ "Hash": -1701849321,
+ "Length": 4652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_C",
- "Hash": -1130038795,
- "Length": 4640
+ "Hash": 251673298,
+ "Length": 4614
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_D",
- "Hash": -982302248,
- "Length": 4601
+ "Hash": -380079237,
+ "Length": 4575
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_E",
- "Hash": -145135081,
- "Length": 5823
+ "Hash": -1562070574,
+ "Length": 5797
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ghost_Widows_Embrace_F",
- "Hash": 825458936,
- "Length": 4678
+ "Hash": -1584668447,
+ "Length": 4652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_A",
- "Hash": 1101909980,
- "Length": 15599
+ "Hash": -865314613,
+ "Length": 15573
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_B",
- "Hash": 1593727144,
- "Length": 15585
+ "Hash": -788731309,
+ "Length": 15559
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_C",
- "Hash": -1105720292,
- "Length": 4678
+ "Hash": -2062559107,
+ "Length": 4652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_D",
- "Hash": -128031166,
- "Length": 16851
+ "Hash": -744068483,
+ "Length": 16825
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_E",
- "Hash": 1802815485,
- "Length": 14345
+ "Hash": 452503528,
+ "Length": 14319
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gift_of_the_Ancients_F",
- "Hash": 1140678140,
- "Length": 15705
+ "Hash": 2079642465,
+ "Length": 15679
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_A",
- "Hash": -1936967545,
- "Length": 12589
+ "Hash": -79782524,
+ "Length": 12563
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_B",
- "Hash": -1576916531,
- "Length": 12573
+ "Hash": 1130930868,
+ "Length": 12547
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_C",
- "Hash": 1668108264,
- "Length": 5119
+ "Hash": 1327779011,
+ "Length": 5093
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_D",
- "Hash": 1646805817,
- "Length": 13783
+ "Hash": -1992398278,
+ "Length": 13757
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_E",
- "Hash": 290335098,
- "Length": 11306
+ "Hash": 603249957,
+ "Length": 11280
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Armor_F",
- "Hash": 1857508937,
- "Length": 5209
+ "Hash": -1659492444,
+ "Length": 5183
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_A",
- "Hash": 1197553762,
- "Length": 12582
+ "Hash": 868912643,
+ "Length": 12556
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_B",
- "Hash": -218501929,
- "Length": 12611
+ "Hash": -607103254,
+ "Length": 12585
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_C",
- "Hash": 848047850,
- "Length": 13812
+ "Hash": 1680388541,
+ "Length": 13786
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_D",
- "Hash": 1900498101,
- "Length": 6342
+ "Hash": 1583512650,
+ "Length": 6316
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_E",
- "Hash": -424492173,
- "Length": 14983
+ "Hash": -1263160310,
+ "Length": 14957
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Javelin_F",
- "Hash": 110489940,
- "Length": 4613
+ "Hash": -993099689,
+ "Length": 4587
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_A",
- "Hash": 1663880805,
- "Length": 5067
+ "Hash": -974747064,
+ "Length": 5041
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_B",
- "Hash": 1064899649,
- "Length": 5056
+ "Hash": 1349126462,
+ "Length": 5030
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_C",
- "Hash": 1577676918,
- "Length": 5051
+ "Hash": -87136277,
+ "Length": 5025
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_D",
- "Hash": 1163634413,
- "Length": 6341
+ "Hash": -847264732,
+ "Length": 6315
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_E",
- "Hash": -1792323557,
- "Length": 7548
+ "Hash": 2094635496,
+ "Length": 7522
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Net_F",
- "Hash": 2138359537,
- "Length": 4560
+ "Hash": -804628208,
+ "Length": 4534
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_A",
- "Hash": -1577338599,
- "Length": 12554
+ "Hash": 1570733864,
+ "Length": 12528
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_B",
- "Hash": 2041046272,
- "Length": 12583
+ "Hash": -1234305739,
+ "Length": 12557
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_C",
- "Hash": -134002294,
- "Length": 13782
+ "Hash": -509586677,
+ "Length": 13756
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_D",
- "Hash": -1859175965,
- "Length": 6326
+ "Hash": -1994123182,
+ "Length": 6300
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_E",
- "Hash": -282471244,
- "Length": 14951
+ "Hash": 1229945659,
+ "Length": 14925
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Gladiators_Strike_F",
- "Hash": -136437989,
- "Length": 4611
+ "Hash": -666823416,
+ "Length": 4585
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_A",
- "Hash": 607682368,
- "Length": 4651
+ "Hash": 1267681761,
+ "Length": 4625
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_B",
- "Hash": 520308552,
- "Length": 4700
+ "Hash": 1713389135,
+ "Length": 4674
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_C",
- "Hash": 301248585,
- "Length": 4638
+ "Hash": 72135036,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_D",
- "Hash": 1070751846,
- "Length": 4600
+ "Hash": -907275455,
+ "Length": 4574
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_E",
- "Hash": 2043844421,
- "Length": 5818
+ "Hash": -498478342,
+ "Length": 5792
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Glimpse_of_the_Abyss_F",
- "Hash": 598026018,
- "Length": 4630
+ "Hash": -431047823,
+ "Length": 4604
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_A",
- "Hash": -1722719770,
- "Length": 7881
+ "Hash": -1966765941,
+ "Length": 7855
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_B",
- "Hash": -382453390,
- "Length": 4595
+ "Hash": -909396649,
+ "Length": 4569
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_C",
- "Hash": -760704633,
- "Length": 7874
+ "Hash": -1186132560,
+ "Length": 7848
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_D",
- "Hash": -223419849,
- "Length": 9086
+ "Hash": 1379576634,
+ "Length": 9060
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_E",
- "Hash": 1116630519,
- "Length": 6659
+ "Hash": -487685842,
+ "Length": 6633
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Harmonized_Healing_F",
- "Hash": 1532470319,
- "Length": 3372
+ "Hash": -651845052,
+ "Length": 3346
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Hibernation_A",
- "Hash": 2004059608,
- "Length": 4527
+ "Hash": 61578909,
+ "Length": 4501
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Hibernation_B",
- "Hash": -1931537501,
- "Length": 4564
+ "Hash": 1389472008,
+ "Length": 4538
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Hibernation_C",
- "Hash": -93328439,
- "Length": 4514
+ "Hash": -1464360656,
+ "Length": 4488
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Hibernation_D",
- "Hash": -1439066149,
- "Length": 4482
+ "Hash": 783440216,
+ "Length": 4456
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Hibernation_E",
- "Hash": -544831389,
- "Length": 5682
+ "Hash": -1619796842,
+ "Length": 5656
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Horror_A",
- "Hash": -1854685131,
- "Length": 4455
+ "Hash": 1302747172,
+ "Length": 4429
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Horror_B",
- "Hash": 1866659357,
- "Length": 4504
+ "Hash": 84541472,
+ "Length": 4478
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Horror_C",
- "Hash": 1048172250,
- "Length": 4442
+ "Hash": 1748340749,
+ "Length": 4416
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Horror_D",
- "Hash": 1039177979,
- "Length": 4404
+ "Hash": 1792799106,
+ "Length": 4378
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Horror_E",
- "Hash": -1194882836,
- "Length": 5594
+ "Hash": 854121633,
+ "Length": 5568
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_A",
- "Hash": -701084398,
- "Length": 6692
+ "Hash": -1385613115,
+ "Length": 6666
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_B",
- "Hash": 827704834,
- "Length": 14166
+ "Hash": 1867229771,
+ "Length": 14140
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_C",
- "Hash": 1557202682,
- "Length": 4597
+ "Hash": 945846051,
+ "Length": 4571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_D",
- "Hash": 1752061793,
- "Length": 6677
+ "Hash": -1839324620,
+ "Length": 6651
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_E",
- "Hash": 288854101,
- "Length": 7978
+ "Hash": 876144040,
+ "Length": 7952
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impeded_Swiftness_F",
- "Hash": 558342172,
- "Length": 4593
+ "Hash": -766118783,
+ "Length": 4567
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervious_Skin_A",
- "Hash": -1247888495,
- "Length": 11959
+ "Hash": 1621253252,
+ "Length": 11933
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervious_Skin_B",
- "Hash": 1686300661,
- "Length": 11945
+ "Hash": 1531977278,
+ "Length": 11919
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervious_Skin_C",
- "Hash": -339057268,
- "Length": 4591
+ "Hash": -1372038215,
+ "Length": 4565
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervious_Skin_D",
- "Hash": -2016211009,
- "Length": 13237
+ "Hash": 1589254216,
+ "Length": 13211
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervious_Skin_E",
- "Hash": 1147622521,
- "Length": 4423
+ "Hash": 1687380622,
+ "Length": 4397
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_A",
- "Hash": 2049981282,
- "Length": 11959
+ "Hash": -2014789953,
+ "Length": 11933
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_B",
- "Hash": 9016722,
- "Length": 11945
+ "Hash": -1807250771,
+ "Length": 11919
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_C",
- "Hash": 1579311951,
- "Length": 4591
+ "Hash": 1628845826,
+ "Length": 4565
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_D",
- "Hash": 1211681291,
- "Length": 13237
+ "Hash": 740471232,
+ "Length": 13211
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_E",
- "Hash": -77236714,
- "Length": 10741
+ "Hash": -438703073,
+ "Length": 10715
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Impervium_Armor_F",
- "Hash": 684481477,
- "Length": 3302
+ "Hash": -578740110,
+ "Length": 3276
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_A",
- "Hash": -1586657141,
- "Length": 4541
+ "Hash": 1144112324,
+ "Length": 4515
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_B",
- "Hash": 1644011344,
- "Length": 4578
+ "Hash": -1069200829,
+ "Length": 4552
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_C",
- "Hash": -1083085054,
- "Length": 4528
+ "Hash": -1854059301,
+ "Length": 4502
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_D",
- "Hash": 118829474,
- "Length": 4496
+ "Hash": -737086477,
+ "Length": 4470
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_E",
- "Hash": 877209065,
- "Length": 5698
+ "Hash": -1837703010,
+ "Length": 5672
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Induced_Coma_F",
- "Hash": 248333961,
- "Length": 3371
+ "Hash": 1760808134,
+ "Length": 3345
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Jaunt_A",
- "Hash": 756364175,
- "Length": 3227
+ "Hash": -174292522,
+ "Length": 3201
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Jaunt_B",
- "Hash": -591134274,
- "Length": 3249
+ "Hash": -2085037153,
+ "Length": 3223
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Jaunt_C",
- "Hash": 1245916621,
- "Length": 4455
+ "Hash": 1633053964,
+ "Length": 4429
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_A",
- "Hash": 219414648,
- "Length": 12468
+ "Hash": 2128330465,
+ "Length": 12442
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_B",
- "Hash": -1244985795,
- "Length": 12497
+ "Hash": -1970472024,
+ "Length": 12471
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_C",
- "Hash": 55577646,
- "Length": 13690
+ "Hash": -664335565,
+ "Length": 13664
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_D",
- "Hash": 1597542519,
- "Length": 6276
+ "Hash": 1793902388,
+ "Length": 6250
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_E",
- "Hash": -177288084,
- "Length": 14852
+ "Hash": 1037365727,
+ "Length": 14826
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Javelin_Volley_F",
- "Hash": 654034911,
- "Length": 4559
+ "Hash": 1087594506,
+ "Length": 4533
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Karma_A",
- "Hash": 381237170,
- "Length": 15089
+ "Hash": 510144815,
+ "Length": 15063
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Karma_B",
- "Hash": -1996031486,
- "Length": 15075
+ "Hash": 1165140215,
+ "Length": 15049
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Karma_C",
- "Hash": -1406664904,
- "Length": 3260
+ "Hash": 342791903,
+ "Length": 3234
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_A",
- "Hash": 1275999294,
- "Length": 12394
+ "Hash": 1532520847,
+ "Length": 12368
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_B",
- "Hash": -938364839,
- "Length": 12421
+ "Hash": -672576254,
+ "Length": 12395
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_C",
- "Hash": 367277267,
- "Length": 13594
+ "Hash": -465499616,
+ "Length": 13568
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_D",
- "Hash": 351955773,
- "Length": 13617
+ "Hash": -1404835530,
+ "Length": 13591
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_E",
- "Hash": -155864271,
- "Length": 14796
+ "Hash": -1992123770,
+ "Length": 14770
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kheldians_Grace_F",
- "Hash": 807158421,
- "Length": 4375
+ "Hash": -715744442,
+ "Length": 4349
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Combat_A",
- "Hash": -9862170,
- "Length": 11958
+ "Hash": 1411653293,
+ "Length": 11932
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Combat_B",
- "Hash": -504383726,
- "Length": 12002
+ "Hash": 643004939,
+ "Length": 11976
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Combat_C",
- "Hash": 181334548,
- "Length": 11983
+ "Hash": -635712183,
+ "Length": 11957
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Combat_D",
- "Hash": 1000537016,
- "Length": 13178
+ "Hash": -2017411307,
+ "Length": 13152
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Combat_E",
- "Hash": 694081578,
- "Length": 3379
+ "Hash": 271280139,
+ "Length": 3353
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_A",
- "Hash": -1061766039,
- "Length": 13062
+ "Hash": 766138576,
+ "Length": 13036
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_B",
- "Hash": -906631379,
- "Length": 5646
+ "Hash": -225363518,
+ "Length": 5620
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_C",
- "Hash": -2094112283,
- "Length": 5696
+ "Hash": 979065798,
+ "Length": 5670
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_D",
- "Hash": -1901481603,
- "Length": 4557
+ "Hash": 370947850,
+ "Length": 4531
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_E",
- "Hash": -643220731,
- "Length": 14241
+ "Hash": 472979866,
+ "Length": 14215
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kinetic_Crash_F",
- "Hash": 1520943907,
- "Length": 14211
+ "Hash": 1763048440,
+ "Length": 14185
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kismet_A",
- "Hash": -85486196,
- "Length": 15123
+ "Hash": -1987672255,
+ "Length": 15097
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kismet_B",
- "Hash": 1988626148,
- "Length": 15109
+ "Hash": 319514645,
+ "Length": 15083
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kismet_C",
- "Hash": -670243237,
- "Length": 4482
+ "Hash": -1220528024,
+ "Length": 4456
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kismet_D",
- "Hash": -505138909,
- "Length": 16359
+ "Hash": 118134484,
+ "Length": 16333
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Kismet_E",
- "Hash": -269584368,
- "Length": 3442
+ "Hash": 1004032463,
+ "Length": 3416
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_A",
- "Hash": -1723570457,
- "Length": 4597
+ "Hash": -1170014684,
+ "Length": 4571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_B",
- "Hash": -890934344,
- "Length": 4634
+ "Hash": -1097169257,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_C",
- "Hash": -1064519630,
- "Length": 4584
+ "Hash": 193567351,
+ "Length": 4558
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_D",
- "Hash": 94151946,
- "Length": 4552
+ "Hash": -1037781049,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_E",
- "Hash": -933834423,
- "Length": 5762
+ "Hash": 1572851258,
+ "Length": 5736
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lethargic_Repose_F",
- "Hash": -58546456,
- "Length": 4567
+ "Hash": -960544603,
+ "Length": 4541
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_A",
- "Hash": -1019552553,
- "Length": 4469
+ "Hash": -1254774836,
+ "Length": 4443
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_B",
- "Hash": 194669112,
- "Length": 4458
+ "Hash": -1569142041,
+ "Length": 4432
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_C",
- "Hash": 916866923,
- "Length": 4453
+ "Hash": -1156503496,
+ "Length": 4427
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_D",
- "Hash": 44308868,
- "Length": 5731
+ "Hash": -1069644161,
+ "Length": 5705
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_E",
- "Hash": 202208042,
- "Length": 6926
+ "Hash": 2071422115,
+ "Length": 6900
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Lockdown_F",
- "Hash": -1915183847,
- "Length": 4539
+ "Hash": 2016961822,
+ "Length": 4513
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_A",
- "Hash": -1886913240,
- "Length": 15565
+ "Hash": -976235059,
+ "Length": 15539
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_B",
- "Hash": 1929319366,
- "Length": 15551
+ "Hash": -1965586957,
+ "Length": 15525
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_C",
- "Hash": 1059823004,
- "Length": 4664
+ "Hash": 457108427,
+ "Length": 4638
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_D",
- "Hash": -1031382264,
- "Length": 16815
+ "Hash": 1760838717,
+ "Length": 16789
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_E",
- "Hash": 511063959,
- "Length": 14313
+ "Hash": 1046864574,
+ "Length": 14287
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Luck_of_the_Gambler_F",
- "Hash": 505318641,
- "Length": 15665
+ "Hash": 5308196,
+ "Length": 15639
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Maelstroms_Fury_A",
- "Hash": -1028713261,
- "Length": 11987
+ "Hash": -109193288,
+ "Length": 11961
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Maelstroms_Fury_B",
- "Hash": 1895447021,
- "Length": 12031
+ "Hash": -1408371190,
+ "Length": 12005
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Maelstroms_Fury_C",
- "Hash": -1009895605,
- "Length": 12012
+ "Hash": -563561692,
+ "Length": 11986
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Maelstroms_Fury_D",
- "Hash": -960086066,
- "Length": 13211
+ "Hash": -516622923,
+ "Length": 13185
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_B",
- "Hash": -440627967,
- "Length": 11893
+ "Hash": -1948853804,
+ "Length": 11867
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_C",
- "Hash": 1490102191,
- "Length": 11874
+ "Hash": 1632130508,
+ "Length": 11848
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_D",
- "Hash": -581445876,
- "Length": 5703
+ "Hash": -1860864269,
+ "Length": 5677
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_E",
- "Hash": -1283914212,
- "Length": 14219
+ "Hash": -1808122519,
+ "Length": 14193
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_F",
- "Hash": -1413469736,
- "Length": 4491
+ "Hash": -903724033,
+ "Length": 4465
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Makos_Bite_A",
- "Hash": -264141250,
- "Length": 11848
+ "Hash": -1800093721,
+ "Length": 11822
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_A",
- "Hash": -1203618048,
- "Length": 4627
+ "Hash": 430834633,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_B",
- "Hash": -1016841903,
- "Length": 4681
+ "Hash": 100269380,
+ "Length": 4655
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_C",
- "Hash": -202579811,
- "Length": 4614
+ "Hash": 1995296604,
+ "Length": 4588
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_D",
- "Hash": 2103157569,
- "Length": 4596
+ "Hash": -1923418902,
+ "Length": 4570
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_E",
- "Hash": -849235926,
- "Length": 5810
+ "Hash": 2076543919,
+ "Length": 5784
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malaises_Illusions_F",
- "Hash": -914764148,
- "Length": 4606
+ "Hash": 1936696467,
+ "Length": 4580
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_A",
- "Hash": -1035662634,
- "Length": 12582
+ "Hash": -172054341,
+ "Length": 12556
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_B",
- "Hash": 178152205,
- "Length": 12611
+ "Hash": 914270266,
+ "Length": 12585
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_C",
- "Hash": 1857370335,
- "Length": 13798
+ "Hash": -1577812570,
+ "Length": 13772
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_D",
- "Hash": -1020793492,
- "Length": 13823
+ "Hash": 990016729,
+ "Length": 13797
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_E",
- "Hash": -838854180,
- "Length": 15016
+ "Hash": 965477453,
+ "Length": 14990
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Malice_of_the_Corruptor_F",
- "Hash": 1934654031,
- "Length": 6337
+ "Hash": -1717861482,
+ "Length": 6311
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_A",
- "Hash": 1208340279,
- "Length": 11151
+ "Hash": 237184684,
+ "Length": 11125
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_B",
- "Hash": -1275319564,
- "Length": 12395
+ "Hash": 1819297267,
+ "Length": 12369
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_C",
- "Hash": 809630114,
- "Length": 12351
+ "Hash": -536297309,
+ "Length": 12325
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_D",
- "Hash": 894354187,
- "Length": 4928
+ "Hash": 1574184062,
+ "Length": 4902
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_E",
- "Hash": 1421665215,
- "Length": 13556
+ "Hash": 829587274,
+ "Length": 13530
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mark_of_Supremacy_F",
- "Hash": -1443992852,
- "Length": 3999
+ "Hash": 1143035037,
+ "Length": 3973
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_A",
- "Hash": 1737371153,
- "Length": 12458
+ "Hash": -32850194,
+ "Length": 12432
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_B",
- "Hash": -1378794984,
- "Length": 12485
+ "Hash": -952064753,
+ "Length": 12459
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_C",
- "Hash": -1167395550,
- "Length": 13666
+ "Hash": -228849019,
+ "Length": 13640
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_D",
- "Hash": 1892468360,
- "Length": 13689
+ "Hash": 1327947175,
+ "Length": 13663
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_E",
- "Hash": -1132519510,
- "Length": 14876
+ "Hash": 1803197295,
+ "Length": 14850
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Might_of_the_Tanker_F",
- "Hash": -2061029255,
- "Length": 5367
+ "Hash": 1607270368,
+ "Length": 5341
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_A",
- "Hash": 930274684,
- "Length": 7661
+ "Hash": -2008193913,
+ "Length": 7635
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_B",
- "Hash": -320532401,
- "Length": 4441
+ "Hash": 1781371048,
+ "Length": 4415
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_C",
- "Hash": 1445301920,
- "Length": 7654
+ "Hash": -351324939,
+ "Length": 7628
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_D",
- "Hash": 515743476,
- "Length": 8844
+ "Hash": 1006500319,
+ "Length": 8818
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_E",
- "Hash": 1999901950,
- "Length": 6461
+ "Hash": 1148701253,
+ "Length": 6435
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Miracle_F",
- "Hash": 2007872197,
- "Length": 3463
+ "Hash": -1472690568,
+ "Length": 3437
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_A",
- "Hash": 641603217,
- "Length": 3415
+ "Hash": -632512124,
+ "Length": 3389
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_B",
- "Hash": 2034141709,
- "Length": 4654
+ "Hash": -1881932322,
+ "Length": 4628
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_C",
- "Hash": 1879840661,
- "Length": 5808
+ "Hash": -1820910486,
+ "Length": 5782
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_D",
- "Hash": -1072355444,
- "Length": 4625
+ "Hash": -168040623,
+ "Length": 4599
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_E",
- "Hash": 215484693,
- "Length": 4589
+ "Hash": 2057348934,
+ "Length": 4563
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Mocking_Beratement_F",
- "Hash": -1853920729,
- "Length": 3396
+ "Hash": -1502997042,
+ "Length": 3370
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_A",
- "Hash": -1276306898,
- "Length": 11902
+ "Hash": -1941324949,
+ "Length": 11876
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_B",
- "Hash": 1950700770,
- "Length": 11946
+ "Hash": -522997827,
+ "Length": 11920
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_C",
- "Hash": -585520880,
- "Length": 11927
+ "Hash": -255884521,
+ "Length": 11901
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_D",
- "Hash": 1509465093,
- "Length": 4547
+ "Hash": 1247327498,
+ "Length": 4521
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_E",
- "Hash": -1772688147,
- "Length": 13111
+ "Hash": -1958842052,
+ "Length": 13085
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Multi_Strike_F",
- "Hash": -2081359509,
- "Length": 13098
+ "Hash": 919616538,
+ "Length": 13072
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_A",
- "Hash": -1934549518,
- "Length": 4610
+ "Hash": -1665459041,
+ "Length": 4584
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_B",
- "Hash": 588960269,
- "Length": 4635
+ "Hash": -1866266454,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_C",
- "Hash": -651776009,
- "Length": 4597
+ "Hash": -574729988,
+ "Length": 4571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_D",
- "Hash": -743237411,
- "Length": 4558
+ "Hash": 2069054238,
+ "Length": 4532
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_E",
- "Hash": -1076809932,
- "Length": 5826
+ "Hash": 1525302951,
+ "Length": 5800
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Neuronic_Shutdown_F",
- "Hash": 1569607792,
- "Length": 4592
+ "Hash": 723856613,
+ "Length": 4566
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_A",
- "Hash": -1954586179,
- "Length": 4497
+ "Hash": 1232135980,
+ "Length": 4471
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_B",
- "Hash": 737481145,
- "Length": 4546
+ "Hash": -1760206276,
+ "Length": 4520
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_C",
- "Hash": -720938970,
- "Length": 4484
+ "Hash": -201212819,
+ "Length": 4458
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_D",
- "Hash": -2145594589,
- "Length": 4446
+ "Hash": 1717453478,
+ "Length": 4420
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_E",
- "Hash": -1853576458,
- "Length": 5642
+ "Hash": -878504079,
+ "Length": 5616
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Nightmare_F",
- "Hash": -1753290815,
- "Length": 4461
+ "Hash": -1001236922,
+ "Length": 4435
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_A",
- "Hash": 1506131313,
- "Length": 7926
+ "Hash": -2028133754,
+ "Length": 7900
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_B",
- "Hash": -2141073942,
- "Length": 4628
+ "Hash": 124199923,
+ "Length": 4602
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_C",
- "Hash": -2134491703,
- "Length": 7919
+ "Hash": 2028439934,
+ "Length": 7893
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_D",
- "Hash": 100090379,
- "Length": 9135
+ "Hash": -1955841526,
+ "Length": 9109
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_E",
- "Hash": 681153037,
- "Length": 6700
+ "Hash": 1592492274,
+ "Length": 6674
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Numinas_Convalesence_F",
- "Hash": -1638836933,
- "Length": 4762
+ "Hash": -406555382,
+ "Length": 4736
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_A",
- "Hash": -2121035610,
- "Length": 10701
+ "Hash": 1828172933,
+ "Length": 10675
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_B",
- "Hash": -1556719289,
- "Length": 4511
+ "Hash": 1156545354,
+ "Length": 4485
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_C",
- "Hash": -532849376,
- "Length": 11912
+ "Hash": 104317817,
+ "Length": 11886
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_D",
- "Hash": 1153533905,
- "Length": 13062
+ "Hash": 1819405486,
+ "Length": 13036
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_E",
- "Hash": -816181801,
- "Length": 14241
+ "Hash": 1031575630,
+ "Length": 14215
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Obliteration_F",
- "Hash": 1574545365,
- "Length": 4532
+ "Hash": 451916840,
+ "Length": 4506
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_A",
- "Hash": 1859041147,
- "Length": 11342
+ "Hash": -1669707656,
+ "Length": 11316
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_B",
- "Hash": 854534804,
- "Length": 11327
+ "Hash": -2128220167,
+ "Length": 11301
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_C",
- "Hash": -22304177,
- "Length": 5252
+ "Hash": 941826676,
+ "Length": 5226
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_D",
- "Hash": 2037832054,
- "Length": 12562
+ "Hash": -935529823,
+ "Length": 12536
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_E",
- "Hash": 953621554,
- "Length": 13777
+ "Hash": 1277039635,
+ "Length": 13751
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overpowering_Presence_F",
- "Hash": 1660352619,
- "Length": 5461
+ "Hash": -1476226896,
+ "Length": 5435
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_A",
- "Hash": -1059431244,
- "Length": 12266
+ "Hash": 1564404963,
+ "Length": 12240
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_B",
- "Hash": -149556786,
- "Length": 4782
+ "Hash": 1470142465,
+ "Length": 4756
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_C",
- "Hash": 1594243530,
- "Length": 13455
+ "Hash": 46482091,
+ "Length": 13429
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_D",
- "Hash": -1209070296,
- "Length": 13437
+ "Hash": -52310457,
+ "Length": 13411
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_E",
- "Hash": 1226217478,
- "Length": 14597
+ "Hash": 1236044547,
+ "Length": 14571
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Overwhelming_Force_F",
- "Hash": 488678903,
- "Length": 16897
+ "Hash": -1217639572,
+ "Length": 16871
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_A",
- "Hash": -920082315,
- "Length": 6746
+ "Hash": 1488996050,
+ "Length": 6720
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_B",
- "Hash": -724783151,
- "Length": 14262
+ "Hash": 1305339180,
+ "Length": 14236
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_C",
- "Hash": 872662887,
- "Length": 4639
+ "Hash": -845894294,
+ "Length": 4613
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_D",
- "Hash": -944798962,
- "Length": 6731
+ "Hash": -591942273,
+ "Length": 6705
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_E",
- "Hash": -1020107181,
- "Length": 8038
+ "Hash": -854502042,
+ "Length": 8012
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pacing_of_the_Turtle_F",
- "Hash": -1085395402,
- "Length": 3476
+ "Hash": 312723161,
+ "Length": 3450
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_A",
- "Hash": -732451455,
- "Length": 8173
+ "Hash": -589953708,
+ "Length": 8147
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_B",
- "Hash": -1693014581,
- "Length": 4953
+ "Hash": -2144481368,
+ "Length": 4927
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_C",
- "Hash": 24791148,
- "Length": 8166
+ "Hash": 1687825189,
+ "Length": 8140
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_D",
- "Hash": -919020077,
- "Length": 9356
+ "Hash": 1290401698,
+ "Length": 9330
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_E",
- "Hash": -1722442311,
- "Length": 6971
+ "Hash": -1683302450,
+ "Length": 6945
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Panacea_F",
- "Hash": 628745233,
- "Length": 6548
+ "Hash": -227922470,
+ "Length": 6522
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Paralytic_A",
- "Hash": 1075252291,
- "Length": 4498
+ "Hash": -1941160636,
+ "Length": 4472
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Paralytic_B",
- "Hash": -2110955728,
- "Length": 4523
+ "Hash": 573334937,
+ "Length": 4497
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Paralytic_C",
- "Hash": -1868988670,
- "Length": 4485
+ "Hash": -1055642381,
+ "Length": 4459
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Paralytic_D",
- "Hash": -925776501,
- "Length": 4446
+ "Hash": 230058338,
+ "Length": 4420
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Paralytic_E",
- "Hash": 721223518,
- "Length": 5698
+ "Hash": -1252461839,
+ "Length": 5672
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_A",
- "Hash": -1251994847,
- "Length": 3367
+ "Hash": 2091203100,
+ "Length": 3341
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_B",
- "Hash": -1004418101,
- "Length": 4598
+ "Hash": 1269842494,
+ "Length": 4572
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_C",
- "Hash": 1957661900,
- "Length": 5744
+ "Hash": -293512677,
+ "Length": 5718
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_D",
- "Hash": 553474569,
- "Length": 4569
+ "Hash": -263532246,
+ "Length": 4543
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_E",
- "Hash": 917329060,
- "Length": 4533
+ "Hash": -2054611001,
+ "Length": 4507
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perfect_Zinger_F",
- "Hash": 359353275,
- "Length": 4551
+ "Hash": 540855382,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_A",
- "Hash": -1076350348,
- "Length": 4531
+ "Hash": 1336876221,
+ "Length": 4505
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_B",
- "Hash": -1182607071,
- "Length": 5752
+ "Hash": -747038052,
+ "Length": 5726
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_C",
- "Hash": -533579187,
- "Length": 6949
+ "Hash": 1019472230,
+ "Length": 6923
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_D",
- "Hash": -584048097,
- "Length": 4645
+ "Hash": -622768974,
+ "Length": 4619
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_E",
- "Hash": 1775393059,
- "Length": 5724
+ "Hash": -1219224040,
+ "Length": 5698
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Performance_Shifter_F",
- "Hash": -1151095122,
- "Length": 3547
+ "Hash": 47144795,
+ "Length": 3521
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_A",
- "Hash": 339947000,
- "Length": 4472
+ "Hash": 1390945621,
+ "Length": 4446
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_B",
- "Hash": -1915114761,
- "Length": 4526
+ "Hash": 1846407888,
+ "Length": 4500
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_C",
- "Hash": -1344428663,
- "Length": 4459
+ "Hash": -1378510522,
+ "Length": 4433
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_D",
- "Hash": -1334851273,
- "Length": 4441
+ "Hash": 695986890,
+ "Length": 4415
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_E",
- "Hash": -210286892,
- "Length": 5633
+ "Hash": 188742231,
+ "Length": 5607
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Perplex_F",
- "Hash": -148534360,
- "Length": 4514
+ "Hash": 1416914165,
+ "Length": 4488
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_A",
- "Hash": -132962942,
- "Length": 11988
+ "Hash": 198106835,
+ "Length": 11962
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_B",
- "Hash": 1191565615,
- "Length": 12031
+ "Hash": -1127355620,
+ "Length": 12005
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_C",
- "Hash": -365579129,
- "Length": 12012
+ "Hash": -890415688,
+ "Length": 11986
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_D",
- "Hash": 1686494246,
- "Length": 11967
+ "Hash": -1387836657,
+ "Length": 11941
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_E",
- "Hash": 699120186,
- "Length": 13202
+ "Hash": 1264815251,
+ "Length": 13176
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Positrons_Blast_F",
- "Hash": 375517596,
- "Length": 4561
+ "Hash": -516837385,
+ "Length": 4535
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pounding_Slugfest_A",
- "Hash": -1479854250,
- "Length": 12042
+ "Hash": -2097084041,
+ "Length": 12016
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pounding_Slugfest_B",
- "Hash": 2085784834,
- "Length": 12086
+ "Hash": -129170861,
+ "Length": 12060
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pounding_Slugfest_C",
- "Hash": 1199231490,
- "Length": 12069
+ "Hash": 269902347,
+ "Length": 12043
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pounding_Slugfest_D",
- "Hash": -746328722,
- "Length": 4678
+ "Hash": -524832781,
+ "Length": 4652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_A",
- "Hash": -21919249,
- "Length": 6709
+ "Hash": -1621711396,
+ "Length": 6683
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_B",
- "Hash": 711289758,
- "Length": 7981
+ "Hash": -962466295,
+ "Length": 7955
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_C",
- "Hash": 1566434152,
- "Length": 4651
+ "Hash": -948018069,
+ "Length": 4625
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_D",
- "Hash": -1316065787,
- "Length": 7955
+ "Hash": 1102280656,
+ "Length": 7929
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_E",
- "Hash": -2011781657,
- "Length": 9167
+ "Hash": 1209751396,
+ "Length": 9141
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Preventive_Medicine_F",
- "Hash": -1312294094,
- "Length": 4025
+ "Hash": 347161371,
+ "Length": 3999
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pulverizing_Fisticuffs_A",
- "Hash": 485407578,
- "Length": 12182
+ "Hash": -1697011845,
+ "Length": 12156
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pulverizing_Fisticuffs_B",
- "Hash": -772251033,
- "Length": 13390
+ "Hash": 1267984012,
+ "Length": 13364
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Pulverizing_Fisticuffs_C",
- "Hash": -535025889,
- "Length": 14604
+ "Hash": -1157031150,
+ "Length": 14578
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Quickfoot_A",
- "Hash": 201691926,
- "Length": 3268
+ "Hash": -1912516615,
+ "Length": 3242
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Quickfoot_B",
- "Hash": -8271266,
- "Length": 3304
+ "Hash": -1636781373,
+ "Length": 3278
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Quickfoot_C",
- "Hash": -919489775,
- "Length": 4498
+ "Hash": -1665731678,
+ "Length": 4472
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_A",
- "Hash": 1466774776,
- "Length": 4557
+ "Hash": -818451321,
+ "Length": 4531
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_B",
- "Hash": 429725399,
- "Length": 4583
+ "Hash": -2116691098,
+ "Length": 4557
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_C",
- "Hash": -758215453,
- "Length": 4544
+ "Hash": -1276213148,
+ "Length": 4518
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_D",
- "Hash": 615583366,
- "Length": 4506
+ "Hash": -632772975,
+ "Length": 4480
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_E",
- "Hash": -63493675,
- "Length": 5710
+ "Hash": 934817708,
+ "Length": 5684
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Razzle_Dazzle_F",
- "Hash": 1187090050,
- "Length": 4630
+ "Hash": 1346581331,
+ "Length": 4604
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_A",
- "Hash": 847566836,
- "Length": 11931
+ "Hash": 723192661,
+ "Length": 11905
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_B",
- "Hash": -1660242060,
- "Length": 11917
+ "Hash": 1441928021,
+ "Length": 11891
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_C",
- "Hash": 2071261396,
- "Length": 4577
+ "Hash": -1047729493,
+ "Length": 4551
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_D",
- "Hash": -74106075,
- "Length": 13209
+ "Hash": -701465896,
+ "Length": 13183
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_E",
- "Hash": 1111516848,
- "Length": 10715
+ "Hash": -696180681,
+ "Length": 10689
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Armor_F",
- "Hash": -1041014475,
- "Length": 3375
+ "Hash": -831323858,
+ "Length": 3349
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_A",
- "Hash": 2121511537,
- "Length": 14276
+ "Hash": 1861155394,
+ "Length": 14250
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_B",
- "Hash": 248540702,
- "Length": 15594
+ "Hash": 59955253,
+ "Length": 15568
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_C",
- "Hash": 217347138,
- "Length": 4628
+ "Hash": 1699283151,
+ "Length": 4602
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_D",
- "Hash": 2085872606,
- "Length": 15588
+ "Hash": 1918280131,
+ "Length": 15562
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_E",
- "Hash": 1003067346,
- "Length": 16738
+ "Hash": 989873551,
+ "Length": 16712
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Reactive_Defenses_F",
- "Hash": -730787969,
- "Length": 5830
+ "Hash": -170631564,
+ "Length": 5804
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rectified_Reticle_A",
- "Hash": 325933738,
- "Length": 3414
+ "Hash": -1055804619,
+ "Length": 3388
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rectified_Reticle_B",
- "Hash": -1944406313,
- "Length": 4635
+ "Hash": 1589010056,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rectified_Reticle_C",
- "Hash": -833138850,
- "Length": 3553
+ "Hash": -1268484343,
+ "Length": 3527
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_A",
- "Hash": -763953388,
- "Length": 15293
+ "Hash": 1315500995,
+ "Length": 15267
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_B",
- "Hash": -29215062,
- "Length": 15279
+ "Hash": 1867049809,
+ "Length": 15253
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_C",
- "Hash": -460215486,
- "Length": 4552
+ "Hash": -734823139,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_D",
- "Hash": 425529559,
- "Length": 16527
+ "Hash": 2020391476,
+ "Length": 16501
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_E",
- "Hash": 1731901046,
- "Length": 14057
+ "Hash": -2145810747,
+ "Length": 14031
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Red_Fortune_F",
- "Hash": 623954892,
- "Length": 3295
+ "Hash": -655401427,
+ "Length": 3269
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Regenerative_Tissue_A",
- "Hash": 1835432614,
- "Length": 7901
+ "Hash": 1351740929,
+ "Length": 7875
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Regenerative_Tissue_B",
- "Hash": 1155938032,
- "Length": 4609
+ "Hash": 1140049291,
+ "Length": 4583
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Regenerative_Tissue_C",
- "Hash": -1512724619,
- "Length": 7894
+ "Hash": -1103815610,
+ "Length": 7868
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Regenerative_Tissue_D",
- "Hash": 1943427367,
- "Length": 9108
+ "Hash": 1640131862,
+ "Length": 9082
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Regenerative_Tissue_E",
- "Hash": -974389142,
- "Length": 3585
+ "Hash": 1765007385,
+ "Length": 3559
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rooting_Grasp_A",
- "Hash": -900014485,
- "Length": 4561
+ "Hash": 33958604,
+ "Length": 4535
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rooting_Grasp_B",
- "Hash": -213249727,
- "Length": 4628
+ "Hash": 324972534,
+ "Length": 4602
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rooting_Grasp_C",
- "Hash": -1847569239,
- "Length": 4548
+ "Hash": 1377250656,
+ "Length": 4522
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rooting_Grasp_D",
- "Hash": 4285245,
- "Length": 4551
+ "Hash": -1013067694,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rooting_Grasp_E",
- "Hash": 613145168,
- "Length": 5745
+ "Hash": 1607485457,
+ "Length": 5719
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_A",
- "Hash": 1386409699,
- "Length": 4529
+ "Hash": -492433304,
+ "Length": 4503
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_B",
- "Hash": 2121303254,
- "Length": 4555
+ "Hash": -663839975,
+ "Length": 4529
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_C",
- "Hash": 1783510804,
- "Length": 4516
+ "Hash": 1496738999,
+ "Length": 4490
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_D",
- "Hash": -1659310509,
- "Length": 4478
+ "Hash": -569480020,
+ "Length": 4452
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_E",
- "Hash": 1313644666,
- "Length": 5678
+ "Hash": -987153263,
+ "Length": 5652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Rope_A_Dope_F",
- "Hash": -490405295,
- "Length": 4493
+ "Hash": 1400817456,
+ "Length": 4467
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ruin_A",
- "Hash": 522396900,
- "Length": 11678
+ "Hash": -185919373,
+ "Length": 11652
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ruin_B",
- "Hash": -611649035,
- "Length": 11722
+ "Hash": 289351178,
+ "Length": 11696
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ruin_C",
- "Hash": 1929747387,
- "Length": 11703
+ "Hash": -2114204478,
+ "Length": 11677
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ruin_D",
- "Hash": -886089310,
- "Length": 5604
+ "Hash": 68729923,
+ "Length": 5578
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Ruin_E",
- "Hash": 67732136,
- "Length": 12868
+ "Hash": -2079161347,
+ "Length": 12842
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Salvo_A",
- "Hash": 701443922,
- "Length": 11706
+ "Hash": -1615819901,
+ "Length": 11680
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Salvo_B",
- "Hash": -1040183775,
- "Length": 12932
+ "Hash": 523749474,
+ "Length": 12906
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Salvo_C",
- "Hash": -172059175,
- "Length": 14014
+ "Hash": 1254825370,
+ "Length": 13988
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_A",
- "Hash": -1505057652,
- "Length": 12044
+ "Hash": -654609389,
+ "Length": 12018
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_B",
- "Hash": 1915956994,
- "Length": 12088
+ "Hash": 1592110813,
+ "Length": 12062
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_C",
- "Hash": 363753840,
- "Length": 12069
+ "Hash": -1940252297,
+ "Length": 12043
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_D",
- "Hash": 1942627914,
- "Length": 4603
+ "Hash": -878578073,
+ "Length": 4577
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_E",
- "Hash": 1229418454,
- "Length": 13263
+ "Hash": -1085711561,
+ "Length": 13237
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sciroccos_Dervish_F",
- "Hash": 1782719226,
- "Length": 4590
+ "Hash": -2093272543,
+ "Length": 4564
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_A",
- "Hash": -516981170,
- "Length": 12370
+ "Hash": -491490853,
+ "Length": 12344
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_B",
- "Hash": 1873750546,
- "Length": 12399
+ "Hash": -390218279,
+ "Length": 12373
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_C",
- "Hash": -1541197300,
- "Length": 13570
+ "Hash": -898362549,
+ "Length": 13544
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_D",
- "Hash": -12830600,
- "Length": 13595
+ "Hash": 1357577749,
+ "Length": 13569
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_E",
- "Hash": 1801716674,
- "Length": 14772
+ "Hash": 1559670797,
+ "Length": 14746
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scourging_Blast_F",
- "Hash": 1388427197,
- "Length": 5206
+ "Hash": -815877064,
+ "Length": 5180
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_A",
- "Hash": 935279283,
- "Length": 12384
+ "Hash": 566822352,
+ "Length": 12358
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_B",
- "Hash": -522774084,
- "Length": 12411
+ "Hash": -1128027787,
+ "Length": 12385
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_C",
- "Hash": 2134645608,
- "Length": 13586
+ "Hash": -1149964937,
+ "Length": 13560
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_D",
- "Hash": -1679791290,
- "Length": 13609
+ "Hash": 1326893365,
+ "Length": 13583
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_E",
- "Hash": 1642740726,
- "Length": 14790
+ "Hash": 1715353521,
+ "Length": 14764
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Scrappers_Strike_F",
- "Hash": 1812525965,
- "Length": 4144
+ "Hash": 1432406652,
+ "Length": 4118
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_A",
- "Hash": 1359756365,
- "Length": 15293
+ "Hash": -2125557786,
+ "Length": 15267
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_B",
- "Hash": -1957415524,
- "Length": 15279
+ "Hash": -981368049,
+ "Length": 15253
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_C",
- "Hash": 1839393666,
- "Length": 4552
+ "Hash": 1560584543,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_D",
- "Hash": -12089898,
- "Length": 16527
+ "Hash": -1133469887,
+ "Length": 16501
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_E",
- "Hash": 1444128359,
- "Length": 14057
+ "Hash": 201272096,
+ "Length": 14031
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Serendipity_F",
- "Hash": -126099409,
- "Length": 3328
+ "Hash": 293046850,
+ "Length": 3302
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_A",
- "Hash": 1589936164,
- "Length": 3610
+ "Hash": -1177176009,
+ "Length": 3584
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_B",
- "Hash": -1728271917,
- "Length": 4805
+ "Hash": 1395554326,
+ "Length": 4779
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_C",
- "Hash": 1238746616,
- "Length": 4755
+ "Hash": -794019877,
+ "Length": 4729
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_D",
- "Hash": -1725299569,
- "Length": 6037
+ "Hash": -508412774,
+ "Length": 6011
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_E",
- "Hash": -1743332933,
- "Length": 5973
+ "Hash": 1252815292,
+ "Length": 5947
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Breaker_F",
- "Hash": 1203906011,
- "Length": 4560
+ "Hash": -1411304288,
+ "Length": 4534
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_A",
- "Hash": 797617148,
- "Length": 15550
+ "Hash": -1191091175,
+ "Length": 15524
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_B",
- "Hash": 473558274,
- "Length": 15536
+ "Hash": -980339637,
+ "Length": 15510
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_C",
- "Hash": -1644288414,
- "Length": 5066
+ "Hash": -173088767,
+ "Length": 5040
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_D",
- "Hash": -377882100,
- "Length": 17041
+ "Hash": 2125559047,
+ "Length": 17015
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_E",
- "Hash": 1791644665,
- "Length": 14313
+ "Hash": 50199206,
+ "Length": 14287
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Shield_Wall_F",
- "Hash": -410118272,
- "Length": 5126
+ "Hash": 245200727,
+ "Length": 5100
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_A",
- "Hash": 864383032,
- "Length": 3592
+ "Hash": 1546354715,
+ "Length": 3566
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_B",
- "Hash": 1306279610,
- "Length": 4793
+ "Hash": 825257555,
+ "Length": 4767
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_C",
- "Hash": 110604875,
- "Length": 4752
+ "Hash": -1686330058,
+ "Length": 4726
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_D",
- "Hash": 1201224825,
- "Length": 6021
+ "Hash": -778406530,
+ "Length": 5995
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_E",
- "Hash": -566165673,
- "Length": 5970
+ "Hash": -971782036,
+ "Length": 5944
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Siphon_Insight_F",
- "Hash": 2035320898,
- "Length": 3726
+ "Hash": -615753581,
+ "Length": 3700
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Smashing_Haymaker_A",
- "Hash": 1090952184,
- "Length": 12044
+ "Hash": 1059976211,
+ "Length": 12018
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Smashing_Haymaker_B",
- "Hash": -715736104,
- "Length": 12088
+ "Hash": 1258813309,
+ "Length": 12062
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Smashing_Haymaker_C",
- "Hash": -1328776232,
- "Length": 12071
+ "Hash": 935461975,
+ "Length": 12045
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Smashing_Haymaker_D",
- "Hash": 93209261,
- "Length": 13270
+ "Hash": -1544221934,
+ "Length": 13244
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Soaring_A",
- "Hash": -1223186323,
- "Length": 3251
+ "Hash": 1381138744,
+ "Length": 3225
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Soaring_B",
- "Hash": -49520061,
- "Length": 3281
+ "Hash": -272590092,
+ "Length": 3255
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Soaring_C",
- "Hash": 2101445125,
- "Length": 4477
+ "Hash": 1257143686,
+ "Length": 4451
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_A",
- "Hash": 1831447314,
- "Length": 11988
+ "Hash": -615651259,
+ "Length": 11962
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_B",
- "Hash": 334948780,
- "Length": 12032
+ "Hash": 1703820005,
+ "Length": 12006
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_C",
- "Hash": -396520540,
- "Length": 4591
+ "Hash": -917978741,
+ "Length": 4565
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_D",
- "Hash": -1869923188,
- "Length": 13203
+ "Hash": -1083325281,
+ "Length": 13177
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_E",
- "Hash": -1864047069,
- "Length": 3365
+ "Hash": -1706569918,
+ "Length": 3339
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sovereign_Right_F",
- "Hash": 1532165838,
- "Length": 3524
+ "Hash": 1164265031,
+ "Length": 3498
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_A",
- "Hash": -1653061507,
- "Length": 12370
+ "Hash": 113151982,
+ "Length": 12344
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_B",
- "Hash": 2120989198,
- "Length": 12399
+ "Hash": 1343181199,
+ "Length": 12373
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_C",
- "Hash": -995281796,
- "Length": 13564
+ "Hash": -810181459,
+ "Length": 13538
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_D",
- "Hash": -2114997720,
- "Length": 13589
+ "Hash": 552651415,
+ "Length": 13563
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_E",
- "Hash": -1712915206,
- "Length": 14760
+ "Hash": 1144843183,
+ "Length": 14734
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Spiders_Bite_F",
- "Hash": -704589772,
- "Length": 4048
+ "Hash": -2082136161,
+ "Length": 4022
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Springfoot_A",
- "Hash": -2092052385,
- "Length": 4345
+ "Hash": -102246852,
+ "Length": 4319
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Springfoot_B",
- "Hash": -1573796698,
- "Length": 3310
+ "Hash": -275267199,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Springfoot_C",
- "Hash": -238736282,
- "Length": 5579
+ "Hash": -808377423,
+ "Length": 5553
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stagger_A",
- "Hash": -839644219,
- "Length": 4475
+ "Hash": 1049099650,
+ "Length": 4449
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stagger_B",
- "Hash": -1999295849,
- "Length": 4501
+ "Hash": 52323972,
+ "Length": 4475
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stagger_C",
- "Hash": 1718088765,
- "Length": 4462
+ "Hash": -254678454,
+ "Length": 4436
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stagger_D",
- "Hash": -186109292,
- "Length": 4424
+ "Hash": -1581808327,
+ "Length": 4398
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stagger_E",
- "Hash": -2012104929,
- "Length": 5616
+ "Hash": 202007652,
+ "Length": 5590
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_A",
- "Hash": -1050064365,
- "Length": 12342
+ "Hash": 1782902124,
+ "Length": 12316
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_B",
- "Hash": -361355620,
- "Length": 12369
+ "Hash": 1432596255,
+ "Length": 12343
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_C",
- "Hash": 178354532,
- "Length": 13540
+ "Hash": -505552461,
+ "Length": 13514
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_D",
- "Hash": 245864414,
- "Length": 13563
+ "Hash": -102007933,
+ "Length": 13537
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_E",
- "Hash": 1436564366,
- "Length": 14740
+ "Hash": 683953029,
+ "Length": 14714
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stalkers_Guile_F",
- "Hash": -1803734071,
- "Length": 5170
+ "Hash": -17898250,
+ "Length": 5144
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Steadfast_Protection_A",
- "Hash": 809314253,
- "Length": 12101
+ "Hash": -257478510,
+ "Length": 12075
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Steadfast_Protection_B",
- "Hash": 300797317,
- "Length": 12305
+ "Hash": -270052080,
+ "Length": 12279
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Steadfast_Protection_C",
- "Hash": -1031384847,
- "Length": 3356
+ "Hash": 718934604,
+ "Length": 3330
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_A",
- "Hash": 2140491551,
- "Length": 12184
+ "Hash": -1804373344,
+ "Length": 12158
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_B",
- "Hash": -881824463,
- "Length": 12228
+ "Hash": -295216882,
+ "Length": 12202
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_C",
- "Hash": 262987708,
- "Length": 5873
+ "Hash": 1672484941,
+ "Length": 5847
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_D",
- "Hash": -1812342366,
- "Length": 13429
+ "Hash": 2018511073,
+ "Length": 13403
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_E",
- "Hash": -1734947413,
- "Length": 13400
+ "Hash": -908026800,
+ "Length": 13374
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Sting_of_the_Manticore_F",
- "Hash": -528005146,
- "Length": 4656
+ "Hash": 99512299,
+ "Length": 4630
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_A",
- "Hash": -2006721269,
- "Length": 4475
+ "Hash": 811349574,
+ "Length": 4449
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_B",
- "Hash": -1136330067,
- "Length": 4501
+ "Hash": -61105334,
+ "Length": 4475
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_C",
- "Hash": -1182396305,
- "Length": 4462
+ "Hash": -142412838,
+ "Length": 4436
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_D",
- "Hash": 1323350820,
- "Length": 4424
+ "Hash": 1166358247,
+ "Length": 4398
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_E",
- "Hash": -1291772607,
- "Length": 5616
+ "Hash": 693364214,
+ "Length": 5590
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Stupefy_F",
- "Hash": 1927172713,
- "Length": 3313
+ "Hash": -1245988338,
+ "Length": 3287
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_A",
- "Hash": -2110188903,
- "Length": 6712
+ "Hash": -1671690840,
+ "Length": 6686
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_B",
- "Hash": -694822451,
- "Length": 14200
+ "Hash": -327113442,
+ "Length": 14174
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_C",
- "Hash": -30632489,
- "Length": 4613
+ "Hash": 204366414,
+ "Length": 4587
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_D",
- "Hash": -1350514036,
- "Length": 6697
+ "Hash": -1956748533,
+ "Length": 6671
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_E",
- "Hash": 31153075,
- "Length": 8000
+ "Hash": 1881783574,
+ "Length": 7974
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempered_Readiness_F",
- "Hash": -295181301,
- "Length": 15359
+ "Hash": -21616694,
+ "Length": 15333
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempest_A",
- "Hash": -2001775864,
- "Length": 11764
+ "Hash": -2134227493,
+ "Length": 11738
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempest_B",
- "Hash": 1067828908,
- "Length": 11808
+ "Hash": 1818197489,
+ "Length": 11782
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempest_C",
- "Hash": 688418756,
- "Length": 11789
+ "Hash": 1226792107,
+ "Length": 11763
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Tempest_D",
- "Hash": 1904771857,
- "Length": 4444
+ "Hash": 1737839286,
+ "Length": 4418
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_A",
- "Hash": 693592627,
- "Length": 6811
+ "Hash": -725042210,
+ "Length": 6785
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_B",
- "Hash": 1828400552,
- "Length": 8022
+ "Hash": -856535299,
+ "Length": 7996
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_C",
- "Hash": -60130338,
- "Length": 8018
+ "Hash": 894533551,
+ "Length": 7992
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_D",
- "Hash": 959452224,
- "Length": 9238
+ "Hash": -1537817055,
+ "Length": 9212
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_E",
- "Hash": 1084430674,
- "Length": 5964
+ "Hash": 1246000509,
+ "Length": 5938
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Theft_of_Essence_F",
- "Hash": -2058503622,
- "Length": 3704
+ "Hash": 278080019,
+ "Length": 3678
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_A",
- "Hash": 1865411641,
- "Length": 11932
+ "Hash": -1170025796,
+ "Length": 11906
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_B",
- "Hash": -1260074453,
- "Length": 11976
+ "Hash": 2049607872,
+ "Length": 11950
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_C",
- "Hash": -656166639,
- "Length": 11957
+ "Hash": 1856770322,
+ "Length": 11931
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_D",
- "Hash": 793651741,
- "Length": 13132
+ "Hash": 480290958,
+ "Length": 13106
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_E",
- "Hash": 386542048,
- "Length": 13143
+ "Hash": -488815261,
+ "Length": 13117
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Thunderstrike_F",
- "Hash": 1508057532,
- "Length": 13152
+ "Hash": 1231831845,
+ "Length": 13126
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_TimeSpace_Manipulation_A",
- "Hash": -197263595,
- "Length": 3438
+ "Hash": 962085470,
+ "Length": 3412
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_TimeSpace_Manipulation_B",
- "Hash": 395050659,
- "Length": 3416
+ "Hash": -104075228,
+ "Length": 3390
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_TimeSpace_Manipulation_C",
- "Hash": 562498681,
- "Length": 6919
+ "Hash": 820830472,
+ "Length": 6893
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_A",
- "Hash": -1917015835,
- "Length": 11989
+ "Hash": 418403116,
+ "Length": 11963
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_B",
- "Hash": -190114967,
- "Length": 11975
+ "Hash": -1530628378,
+ "Length": 11949
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_C",
- "Hash": -1068571536,
- "Length": 4607
+ "Hash": -1336980011,
+ "Length": 4581
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_D",
- "Hash": -11973973,
- "Length": 13269
+ "Hash": -1141087644,
+ "Length": 13243
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_E",
- "Hash": -1124813638,
- "Length": 10769
+ "Hash": -1031311635,
+ "Length": 10743
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Titanium_Coating_F",
- "Hash": 239813759,
- "Length": 3401
+ "Hash": -1611019198,
+ "Length": 3375
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_A",
- "Hash": -769847787,
- "Length": 11960
+ "Hash": -292324072,
+ "Length": 11934
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_B",
- "Hash": -2135639219,
- "Length": 12004
+ "Hash": 16509244,
+ "Length": 11978
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_C",
- "Hash": 393563361,
- "Length": 11985
+ "Hash": -424276368,
+ "Length": 11959
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_D",
- "Hash": -1493846949,
- "Length": 13173
+ "Hash": 528890816,
+ "Length": 13147
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_E",
- "Hash": 454146720,
- "Length": 13180
+ "Hash": -1477788279,
+ "Length": 13154
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Death_F",
- "Hash": 896790190,
- "Length": 4573
+ "Hash": 1323041281,
+ "Length": 4547
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_A",
- "Hash": -5434765,
- "Length": 3460
+ "Hash": 1989636538,
+ "Length": 3434
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_B",
- "Hash": 656305741,
- "Length": 4677
+ "Hash": -1079006644,
+ "Length": 4651
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_C",
- "Hash": 698156987,
- "Length": 5900
+ "Hash": 1930719242,
+ "Length": 5874
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_D",
- "Hash": -1201134992,
- "Length": 4622
+ "Hash": -1955554765,
+ "Length": 4596
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_E",
- "Hash": -294102623,
- "Length": 4692
+ "Hash": 421958438,
+ "Length": 4666
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_Lady_Grey_F",
- "Hash": -1792803985,
- "Length": 3563
+ "Hash": -1641461332,
+ "Length": 3537
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_A",
- "Hash": -785077820,
- "Length": 6865
+ "Hash": -421925219,
+ "Length": 6839
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_B",
- "Hash": -1220538567,
- "Length": 8082
+ "Hash": 1139222716,
+ "Length": 8056
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_C",
- "Hash": 395541698,
- "Length": 8078
+ "Hash": -1441276405,
+ "Length": 8052
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_D",
- "Hash": -1827685856,
- "Length": 9304
+ "Hash": 1027618603,
+ "Length": 9278
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_E",
- "Hash": -1737388414,
- "Length": 6012
+ "Hash": 90256037,
+ "Length": 5986
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Touch_of_the_Nictus_F",
- "Hash": 2112723325,
- "Length": 3592
+ "Hash": -1240116428,
+ "Length": 3566
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_A",
- "Hash": -802655268,
- "Length": 4633
+ "Hash": -364723869,
+ "Length": 4607
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_B",
- "Hash": -157612445,
- "Length": 4705
+ "Hash": -933182912,
+ "Length": 4679
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_C",
- "Hash": 1397747087,
- "Length": 4620
+ "Hash": -922082782,
+ "Length": 4594
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_D",
- "Hash": -450351617,
- "Length": 4638
+ "Hash": -743959956,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_E",
- "Hash": -1500969566,
- "Length": 5827
+ "Hash": -2105853273,
+ "Length": 5801
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Trap_of_the_Hunter_F",
- "Hash": 320064946,
- "Length": 4608
+ "Hash": -1597627093,
+ "Length": 4582
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triage_A",
- "Hash": -1822378844,
- "Length": 7643
+ "Hash": -1035421777,
+ "Length": 7617
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triage_B",
- "Hash": -1815183650,
- "Length": 4429
+ "Hash": 794736231,
+ "Length": 4403
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triage_C",
- "Hash": -1685366277,
- "Length": 7636
+ "Hash": 1908207798,
+ "Length": 7610
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triage_D",
- "Hash": 1975514591,
- "Length": 8824
+ "Hash": 935192158,
+ "Length": 8798
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triumphant_Insult_A",
- "Hash": -947562544,
- "Length": 3405
+ "Hash": -708811799,
+ "Length": 3379
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triumphant_Insult_B",
- "Hash": 1479743246,
- "Length": 4642
+ "Hash": -1388863105,
+ "Length": 4616
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Triumphant_Insult_C",
- "Hash": 596495989,
- "Length": 4664
+ "Hash": 1819881860,
+ "Length": 4638
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbounded_Leap_A",
- "Hash": 855663872,
- "Length": 3358
+ "Hash": 1615276875,
+ "Length": 3332
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbounded_Leap_B",
- "Hash": 1167553915,
- "Length": 4401
+ "Hash": -1429112718,
+ "Length": 4375
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbounded_Leap_C",
- "Hash": 821680654,
- "Length": 6829
+ "Hash": -1062794737,
+ "Length": 6803
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_A",
- "Hash": -782415746,
- "Length": 10838
+ "Hash": -186234921,
+ "Length": 10812
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_B",
- "Hash": 776760989,
- "Length": 12130
+ "Hash": 1434464350,
+ "Length": 12104
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_C",
- "Hash": -680545487,
- "Length": 4613
+ "Hash": 1343884580,
+ "Length": 4587
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_D",
- "Hash": -1922074047,
- "Length": 12116
+ "Hash": 1950983752,
+ "Length": 12090
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_E",
- "Hash": 405587855,
- "Length": 13301
+ "Hash": 1849705610,
+ "Length": 13275
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unbreakable_Guard_F",
- "Hash": 776505468,
- "Length": 3514
+ "Hash": 998648813,
+ "Length": 3488
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_A",
- "Hash": -639619873,
- "Length": 3472
+ "Hash": 1133252562,
+ "Length": 3446
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_B",
- "Hash": 982090305,
- "Length": 4691
+ "Hash": -800866816,
+ "Length": 4665
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_C",
- "Hash": 1125772479,
- "Length": 5916
+ "Hash": -1572986492,
+ "Length": 5890
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_D",
- "Hash": -132132478,
- "Length": 4636
+ "Hash": -681825641,
+ "Length": 4610
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_E",
- "Hash": -169905027,
- "Length": 4706
+ "Hash": -512946686,
+ "Length": 4680
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Undermined_Defenses_F",
- "Hash": -102834092,
- "Length": 3419
+ "Hash": -239769985,
+ "Length": 3393
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unquestioning_Loyalty_A",
- "Hash": -804117791,
- "Length": 12156
+ "Hash": -843776430,
+ "Length": 12130
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unquestioning_Loyalty_B",
- "Hash": -1249709775,
- "Length": 12200
+ "Hash": 982501646,
+ "Length": 12174
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unquestioning_Loyalty_C",
- "Hash": -1015996585,
- "Length": 4675
+ "Hash": -398332020,
+ "Length": 4649
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unquestioning_Loyalty_D",
- "Hash": 90333187,
- "Length": 13383
+ "Hash": 740825484,
+ "Length": 13357
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_A",
- "Hash": -1192460,
- "Length": 12380
+ "Hash": 1907737909,
+ "Length": 12354
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_B",
- "Hash": 1129322795,
- "Length": 12407
+ "Hash": -198416716,
+ "Length": 12381
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_C",
- "Hash": -1395702775,
- "Length": 13582
+ "Hash": -91517396,
+ "Length": 13556
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_D",
- "Hash": 111133087,
- "Length": 13605
+ "Hash": 1948211076,
+ "Length": 13579
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_E",
- "Hash": -543094757,
- "Length": 14786
+ "Hash": 1530294880,
+ "Length": 14760
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unrelenting_Fury_F",
- "Hash": 720179877,
- "Length": 5397
+ "Hash": 61864618,
+ "Length": 5371
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_A",
- "Hash": -1539095668,
- "Length": 4625
+ "Hash": 1376575151,
+ "Length": 4599
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_B",
- "Hash": 1815352156,
- "Length": 4674
+ "Hash": -519780419,
+ "Length": 4648
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_C",
- "Hash": -1778407029,
- "Length": 4612
+ "Hash": -1998161946,
+ "Length": 4586
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_D",
- "Hash": 973474978,
- "Length": 4574
+ "Hash": -2145397133,
+ "Length": 4548
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_E",
- "Hash": 1943767167,
- "Length": 5788
+ "Hash": 1308889846,
+ "Length": 5762
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Unspeakable_Terror_F",
- "Hash": -1778011040,
- "Length": 4660
+ "Hash": -78681911,
+ "Length": 4634
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_A",
- "Hash": 446869099,
- "Length": 12395
+ "Hash": -2092012004,
+ "Length": 12369
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_B",
- "Hash": 630241016,
- "Length": 12422
+ "Hash": -109347115,
+ "Length": 12396
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_C",
- "Hash": 2125493437,
- "Length": 13615
+ "Hash": -1612570088,
+ "Length": 13589
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_D",
- "Hash": -657188869,
- "Length": 13596
+ "Hash": 1734355320,
+ "Length": 13570
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_E",
- "Hash": 229150161,
- "Length": 14801
+ "Hash": 1169420286,
+ "Length": 14775
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Vigilant_Assault_F",
- "Hash": 471353333,
- "Length": 5290
+ "Hash": 669139648,
+ "Length": 5264
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_Fire_A",
- "Hash": -599850388,
- "Length": 11876
+ "Hash": -1807702689,
+ "Length": 11850
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_Fire_B",
- "Hash": -142619218,
- "Length": 11920
+ "Hash": 644789927,
+ "Length": 11894
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_Fire_C",
- "Hash": 1835847936,
- "Length": 11901
+ "Hash": 1102434179,
+ "Length": 11875
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_of_Velocity_A",
- "Hash": -1881150711,
- "Length": 13214
+ "Hash": 977038516,
+ "Length": 13188
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_of_Velocity_B",
- "Hash": -1170930953,
- "Length": 4635
+ "Hash": 753507964,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Volley_of_Velocity_C",
- "Hash": -1903499975,
- "Length": 4685
+ "Hash": -1824238928,
+ "Length": 4659
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_A",
- "Hash": 1327652105,
- "Length": 11355
+ "Hash": 1598108644,
+ "Length": 11329
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_B",
- "Hash": -810352180,
- "Length": 11340
+ "Hash": -1225305831,
+ "Length": 11314
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_C",
- "Hash": 1029094233,
- "Length": 5255
+ "Hash": 353464512,
+ "Length": 5229
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_D",
- "Hash": 2114623639,
- "Length": 12577
+ "Hash": -1399890674,
+ "Length": 12551
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_E",
- "Hash": 501347335,
- "Length": 13794
+ "Hash": 133302446,
+ "Length": 13768
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Will_of_the_Controller_F",
- "Hash": 434130212,
- "Length": 6536
+ "Hash": 32248581,
+ "Length": 6510
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Gift_A",
- "Hash": -138827087,
- "Length": 8501
+ "Hash": -756388356,
+ "Length": 8475
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Gift_B",
- "Hash": 1126031308,
- "Length": 9745
+ "Hash": 1014118457,
+ "Length": 9719
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Gift_C",
- "Hash": -60459162,
- "Length": 3663
+ "Hash": 741996627,
+ "Length": 3637
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_A",
- "Hash": -512708457,
- "Length": 12170
+ "Hash": 400866662,
+ "Length": 12144
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_B",
- "Hash": 1898419746,
- "Length": 12197
+ "Hash": -414366045,
+ "Length": 12171
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_C",
- "Hash": 1951139510,
- "Length": 13362
+ "Hash": -157247769,
+ "Length": 13336
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_D",
- "Hash": -1016689674,
- "Length": 13363
+ "Hash": 521284409,
+ "Length": 13337
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_E",
- "Hash": 1129678774,
- "Length": 14560
+ "Hash": 678315949,
+ "Length": 14534
},
{
"Archetype": "",
"Fullname": "Boosts.Attuned_Winters_Bite_F",
- "Hash": -398108883,
- "Length": 9058
+ "Hash": -2145363642,
+ "Length": 9032
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_A",
- "Hash": -841174324,
- "Length": 3580
+ "Hash": -1416329339,
+ "Length": 3554
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_B",
- "Hash": 2073477858,
- "Length": 4825
+ "Hash": 1232487601,
+ "Length": 4799
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_C",
- "Hash": -1370214372,
- "Length": 5978
+ "Hash": 1151236161,
+ "Length": 5952
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_D",
- "Hash": -2086030664,
- "Length": 4794
+ "Hash": -1358412953,
+ "Length": 4768
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_E",
- "Hash": -2054257742,
- "Length": 4817
+ "Hash": -632179581,
+ "Length": 4791
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Absolute_Amazement_F",
- "Hash": -455489609,
- "Length": 3569
+ "Hash": -1325642490,
+ "Length": 3543
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_10",
- "Hash": -1334092589,
- "Length": 3244
+ "Hash": -473743080,
+ "Length": 3218
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy",
- "Hash": 691769329,
- "Length": 3230
+ "Hash": 1675302744,
+ "Length": 3204
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_15",
- "Hash": -584763382,
- "Length": 3251
+ "Hash": 1966985401,
+ "Length": 3225
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_20",
- "Hash": 684380403,
- "Length": 3244
+ "Hash": -835817082,
+ "Length": 3218
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_25",
- "Hash": 1688698639,
- "Length": 3246
+ "Hash": -1760258270,
+ "Length": 3220
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_30",
- "Hash": 568919732,
- "Length": 3250
+ "Hash": 1892761315,
+ "Length": 3224
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_35",
- "Hash": 1791919958,
- "Length": 3248
+ "Hash": 1707795701,
+ "Length": 3222
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_40",
- "Hash": -1973292805,
- "Length": 3246
+ "Hash": 1913792438,
+ "Length": 3220
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_45",
- "Hash": -1250370371,
- "Length": 3248
+ "Hash": -168359240,
+ "Length": 3222
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Accuracy_50",
- "Hash": 1553742163,
- "Length": 3244
+ "Hash": 1720288742,
+ "Length": 3218
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Achilles_Heel_A",
- "Hash": 787605745,
- "Length": 3397
+ "Hash": 764149290,
+ "Length": 3371
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Achilles_Heel_B",
- "Hash": 2052762253,
- "Length": 4604
+ "Hash": 954790686,
+ "Length": 4578
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Achilles_Heel_C",
- "Hash": 1212939100,
- "Length": 3370
+ "Hash": -551202885,
+ "Length": 3344
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_A",
- "Hash": 469953037,
- "Length": 3423
+ "Hash": 123320860,
+ "Length": 3397
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_B",
- "Hash": -615141552,
- "Length": 4646
+ "Hash": -782418225,
+ "Length": 4620
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_C",
- "Hash": -201453136,
- "Length": 5865
+ "Hash": -2079213913,
+ "Length": 5839
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_D",
- "Hash": 1983835970,
- "Length": 4614
+ "Hash": 109297871,
+ "Length": 4588
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_E",
- "Hash": 1367986064,
- "Length": 4661
+ "Hash": -494698853,
+ "Length": 4635
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adjusted_Targeting_F",
- "Hash": 1861048120,
- "Length": 3399
+ "Hash": -1523887777,
+ "Length": 3373
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adrenal_Adjustment_A",
- "Hash": 1767371890,
- "Length": 4514
+ "Hash": 587257391,
+ "Length": 4488
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adrenal_Adjustment_B",
- "Hash": 530683871,
- "Length": 5733
+ "Hash": 328057792,
+ "Length": 5707
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Adrenal_Adjustment_C",
- "Hash": 385134935,
- "Length": 6928
+ "Hash": 1554311324,
+ "Length": 6902
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_A",
- "Hash": 1230438058,
- "Length": 11676
+ "Hash": -1247754501,
+ "Length": 11650
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_B",
- "Hash": -230868669,
- "Length": 11662
+ "Hash": 179621108,
+ "Length": 11636
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_C",
- "Hash": -277944820,
- "Length": 4448
+ "Hash": 1850812761,
+ "Length": 4422
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_D",
- "Hash": 1910614333,
- "Length": 12934
+ "Hash": -1169762808,
+ "Length": 12908
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_E",
- "Hash": 1836649992,
- "Length": 10478
+ "Hash": 2089442889,
+ "Length": 10452
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Aegis_F",
- "Hash": -330439085,
- "Length": 9424
+ "Hash": -665159528,
+ "Length": 9398
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Air_Burst_A",
- "Hash": -611531279,
- "Length": 11815
+ "Hash": -60815924,
+ "Length": 11789
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Air_Burst_B",
- "Hash": 1422304443,
- "Length": 11859
+ "Hash": 1439170266,
+ "Length": 11833
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Air_Burst_C",
- "Hash": -1482409995,
- "Length": 11840
+ "Hash": 1304480968,
+ "Length": 11814
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Air_Burst_D",
- "Hash": -954127122,
- "Length": 11795
+ "Hash": 1338663111,
+ "Length": 11769
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_A",
- "Hash": -1648839787,
- "Length": 3631
+ "Hash": 1591732126,
+ "Length": 3605
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_B",
- "Hash": 1283855765,
- "Length": 4830
+ "Hash": -1998323284,
+ "Length": 4804
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_C",
- "Hash": 1870054730,
- "Length": 4780
+ "Hash": -1650632827,
+ "Length": 4754
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_D",
- "Hash": 2096018893,
- "Length": 6064
+ "Hash": -2074213578,
+ "Length": 6038
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_E",
- "Hash": -1771617139,
- "Length": 6002
+ "Hash": -534583252,
+ "Length": 5976
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Analyze_Weakness_F",
- "Hash": -968891519,
- "Length": 3729
+ "Hash": -1396628958,
+ "Length": 3703
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_A",
- "Hash": -1445786589,
- "Length": 11899
+ "Hash": -1764870242,
+ "Length": 11873
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_B",
- "Hash": -1514679802,
- "Length": 11924
+ "Hash": 842891663,
+ "Length": 11898
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_C",
- "Hash": -255841438,
- "Length": 13048
+ "Hash": 1414185339,
+ "Length": 13022
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_D",
- "Hash": -280404263,
- "Length": 13070
+ "Hash": 1684934940,
+ "Length": 13044
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_E",
- "Hash": 900724648,
- "Length": 14280
+ "Hash": 1141761779,
+ "Length": 14254
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annihilation_F",
- "Hash": 47003452,
- "Length": 3473
+ "Hash": 1054385727,
+ "Length": 3447
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annoyance_A",
- "Hash": -710987190,
- "Length": 3304
+ "Hash": -1873303151,
+ "Length": 3278
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annoyance_B",
- "Hash": 18991890,
- "Length": 4525
+ "Hash": 1816702813,
+ "Length": 4499
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Annoyance_C",
- "Hash": -50531772,
- "Length": 5641
+ "Hash": 1873471989,
+ "Length": 5615
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_A",
- "Hash": 13261876,
- "Length": 10810
+ "Hash": 514207603,
+ "Length": 10784
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_B",
- "Hash": -1941983621,
- "Length": 12040
+ "Hash": 385794170,
+ "Length": 12014
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_C",
- "Hash": -1279407151,
- "Length": 13181
+ "Hash": 379094754,
+ "Length": 13155
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_D",
- "Hash": 1481136332,
- "Length": 4634
+ "Hash": -350351037,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_E",
- "Hash": 195955402,
- "Length": 12058
+ "Hash": -1910323115,
+ "Length": 12032
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Apocalypse_F",
- "Hash": 1947386784,
- "Length": 3581
+ "Hash": -1564464485,
+ "Length": 3555
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_A",
- "Hash": -1500792141,
- "Length": 10810
+ "Hash": 1356745486,
+ "Length": 10784
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_B",
- "Hash": 1165183722,
- "Length": 12040
+ "Hash": -1717177817,
+ "Length": 12014
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_C",
- "Hash": 108740363,
- "Length": 13181
+ "Hash": -256383512,
+ "Length": 13155
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_D",
- "Hash": 1011279030,
- "Length": 4634
+ "Hash": -1482765927,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_E",
- "Hash": -1481437698,
- "Length": 12058
+ "Hash": 682549207,
+ "Length": 12032
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Armageddon_F",
- "Hash": 1426066383,
- "Length": 3418
+ "Hash": 1582228088,
+ "Length": 3392
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_A",
- "Hash": 618982017,
- "Length": 4552
+ "Hash": 1814098054,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_B",
- "Hash": 975078593,
- "Length": 4541
+ "Hash": 781985920,
+ "Length": 4515
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_C",
- "Hash": -1005234138,
- "Length": 4536
+ "Hash": 937752695,
+ "Length": 4510
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_D",
- "Hash": 1727485221,
- "Length": 5828
+ "Hash": 2129417182,
+ "Length": 5802
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_E",
- "Hash": 347547707,
- "Length": 7035
+ "Hash": 689908536,
+ "Length": 7009
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Basilisks_Gaze_F",
- "Hash": 988076894,
- "Length": 3361
+ "Hash": 849769307,
+ "Length": 3335
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Befuddling_Aura_A",
- "Hash": 2123918250,
- "Length": 4583
+ "Hash": 1276147949,
+ "Length": 4557
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Befuddling_Aura_B",
- "Hash": -550613125,
- "Length": 4637
+ "Hash": -1053582984,
+ "Length": 4611
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Befuddling_Aura_C",
- "Hash": 810658205,
- "Length": 4570
+ "Hash": 966105506,
+ "Length": 4544
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Befuddling_Aura_D",
- "Hash": 267374103,
- "Length": 4552
+ "Hash": 1098207342,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Befuddling_Aura_E",
- "Hash": 1423528506,
- "Length": 5760
+ "Hash": -2080668561,
+ "Length": 5734
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blessing_of_the_Zephyr_A",
- "Hash": 561772847,
- "Length": 8531
+ "Hash": 2088353716,
+ "Length": 8505
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blessing_of_the_Zephyr_B",
- "Hash": 1063246514,
- "Length": 9795
+ "Hash": 594575393,
+ "Length": 9769
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blessing_of_the_Zephyr_C",
- "Hash": 340255900,
- "Length": 3605
+ "Hash": -220534951,
+ "Length": 3579
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_A",
- "Hash": 332511205,
- "Length": 11929
+ "Hash": -753077696,
+ "Length": 11903
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_B",
- "Hash": -1014798207,
- "Length": 11973
+ "Hash": -1946248748,
+ "Length": 11947
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_C",
- "Hash": 1746669167,
- "Length": 4560
+ "Hash": -1255284412,
+ "Length": 4534
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_D",
- "Hash": -1624966569,
- "Length": 13140
+ "Hash": -1451382222,
+ "Length": 13114
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_E",
- "Hash": 1933845568,
- "Length": 3338
+ "Hash": -1417696293,
+ "Length": 3312
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Blood_Mandate_F",
- "Hash": -372422183,
- "Length": 10738
+ "Hash": 338881568,
+ "Length": 10712
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bonesnap_A",
- "Hash": 472842943,
- "Length": 11789
+ "Hash": -221924472,
+ "Length": 11763
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bonesnap_B",
- "Hash": -195849581,
- "Length": 11835
+ "Hash": 335951948,
+ "Length": 11809
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bonesnap_C",
- "Hash": 648214753,
- "Length": 4460
+ "Hash": 1757237154,
+ "Length": 4434
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_A",
- "Hash": 524587867,
- "Length": 12125
+ "Hash": 231091756,
+ "Length": 12099
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_B",
- "Hash": 1808108393,
- "Length": 12169
+ "Hash": -1710629420,
+ "Length": 12143
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_C",
- "Hash": 1950313649,
- "Length": 4658
+ "Hash": -2079328890,
+ "Length": 4632
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_D",
- "Hash": -173828505,
- "Length": 13350
+ "Hash": -1412404590,
+ "Length": 13324
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_E",
- "Hash": -632734258,
- "Length": 3422
+ "Hash": -2131558911,
+ "Length": 3396
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Brilliant_Leadership_F",
- "Hash": 1740137929,
- "Length": 10920
+ "Hash": -1261388296,
+ "Length": 10894
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bruising_Blow_A",
- "Hash": 698499897,
- "Length": 11929
+ "Hash": 686953190,
+ "Length": 11903
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bruising_Blow_B",
- "Hash": 922843118,
- "Length": 11975
+ "Hash": 593358009,
+ "Length": 11949
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Bruising_Blow_C",
- "Hash": 1115035700,
- "Length": 11956
+ "Hash": -131766369,
+ "Length": 11930
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_A",
- "Hash": 1926368635,
- "Length": 4499
+ "Hash": -244504206,
+ "Length": 4473
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_B",
- "Hash": -2124188620,
- "Length": 4553
+ "Hash": -689902851,
+ "Length": 4527
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_C",
- "Hash": 2128136262,
- "Length": 4486
+ "Hash": -1026276977,
+ "Length": 4460
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_D",
- "Hash": 1517709594,
- "Length": 4468
+ "Hash": -1976159499,
+ "Length": 4442
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_E",
- "Hash": -1932094231,
- "Length": 5664
+ "Hash": 223236570,
+ "Length": 5638
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cacophany_F",
- "Hash": -1542325296,
- "Length": 4455
+ "Hash": 1502580645,
+ "Length": 4429
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_A",
- "Hash": 333355867,
- "Length": 12097
+ "Hash": 769840448,
+ "Length": 12071
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_B",
- "Hash": 1525712710,
- "Length": 4626
+ "Hash": 392005201,
+ "Length": 4600
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_C",
- "Hash": -710385723,
- "Length": 4627
+ "Hash": -1595690870,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_D",
- "Hash": 1910153762,
- "Length": 4558
+ "Hash": -715954435,
+ "Length": 4532
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_E",
- "Hash": -991366769,
- "Length": 4605
+ "Hash": 920261652,
+ "Length": 4579
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Calibrated_Accuracy_F",
- "Hash": -1384351890,
- "Length": 13317
+ "Hash": -1633361637,
+ "Length": 13291
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_A",
- "Hash": -696973495,
- "Length": 4638
+ "Hash": -1726677458,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_B",
- "Hash": -421095260,
- "Length": 4675
+ "Hash": 1646070835,
+ "Length": 4649
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_C",
- "Hash": 1153093912,
- "Length": 4625
+ "Hash": -1963827279,
+ "Length": 4599
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_D",
- "Hash": 102639840,
- "Length": 4593
+ "Hash": -751185313,
+ "Length": 4567
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_E",
- "Hash": 1969529527,
- "Length": 5809
+ "Hash": -1167442338,
+ "Length": 5783
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_of_the_Sandman_F",
- "Hash": 1383250101,
- "Length": 3489
+ "Hash": -1553508246,
+ "Length": 3463
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_A",
- "Hash": 1579571638,
- "Length": 4756
+ "Hash": -1318398115,
+ "Length": 4730
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_B",
- "Hash": -2064840100,
- "Length": 12147
+ "Hash": 1958051915,
+ "Length": 12121
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_C",
- "Hash": -404471451,
- "Length": 12192
+ "Hash": -2041485744,
+ "Length": 12166
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_D",
- "Hash": 1032748305,
- "Length": 13347
+ "Hash": -263685338,
+ "Length": 13321
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_E",
- "Hash": -1663097514,
- "Length": 13366
+ "Hash": -1127739501,
+ "Length": 13340
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Call_to_Arms_F",
- "Hash": -646242034,
- "Length": 3698
+ "Hash": 1939714007,
+ "Length": 3672
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Celerity_A",
- "Hash": -263604392,
- "Length": 3291
+ "Hash": -827442221,
+ "Length": 3265
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Celerity_B",
- "Hash": 869031487,
- "Length": 3255
+ "Hash": 577422456,
+ "Length": 3229
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Celerity_C",
- "Hash": 1379083625,
- "Length": 6695
+ "Hash": -1821937166,
+ "Length": 6669
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cleaving_Blow_A",
- "Hash": -147555128,
- "Length": 11929
+ "Hash": -852296885,
+ "Length": 11903
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cleaving_Blow_B",
- "Hash": 227497221,
- "Length": 11973
+ "Hash": -427200722,
+ "Length": 11947
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cleaving_Blow_C",
- "Hash": -32340965,
- "Length": 11954
+ "Hash": -1065220562,
+ "Length": 11928
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cleaving_Blow_D",
- "Hash": -313921932,
- "Length": 4544
+ "Hash": -621546519,
+ "Length": 4518
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_A",
- "Hash": 330493226,
- "Length": 3567
+ "Hash": 762505749,
+ "Length": 3541
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_B",
- "Hash": 1922160426,
- "Length": 4764
+ "Hash": -1168192535,
+ "Length": 4738
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_C",
- "Hash": 1957369633,
- "Length": 4723
+ "Hash": -164591642,
+ "Length": 4697
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_D",
- "Hash": 2109783130,
- "Length": 5988
+ "Hash": 849220151,
+ "Length": 5962
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_E",
- "Hash": 2123112226,
- "Length": 5937
+ "Hash": -76193787,
+ "Length": 5911
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Cloud_Senses_F",
- "Hash": -256571774,
- "Length": 4547
+ "Hash": -1105889603,
+ "Length": 4521
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_A",
- "Hash": 1924867622,
- "Length": 3613
+ "Hash": -283560871,
+ "Length": 3587
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_B",
- "Hash": -1505584029,
- "Length": 4860
+ "Hash": 102202082,
+ "Length": 4834
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_C",
- "Hash": 912250147,
- "Length": 6015
+ "Hash": 1018617410,
+ "Length": 5989
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_D",
- "Hash": -545928232,
- "Length": 4809
+ "Hash": -2090529527,
+ "Length": 4783
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_E",
- "Hash": 1517005537,
- "Length": 4852
+ "Hash": 1994204712,
+ "Length": 4826
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Coercive_Persuasion_F",
- "Hash": 761734894,
- "Length": 3739
+ "Hash": -1470619661,
+ "Length": 3713
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Commanding_Presence_A",
- "Hash": -1630463680,
- "Length": 12097
+ "Hash": -1676424819,
+ "Length": 12071
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Commanding_Presence_B",
- "Hash": 1721846338,
- "Length": 12141
+ "Hash": -1962101945,
+ "Length": 12115
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Commanding_Presence_C",
- "Hash": -778169518,
- "Length": 4644
+ "Hash": 1029321875,
+ "Length": 4618
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Commanding_Presence_D",
- "Hash": 2082682222,
- "Length": 13320
+ "Hash": 933539113,
+ "Length": 13294
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Commanding_Presence_E",
- "Hash": -524287339,
- "Length": 3365
+ "Hash": -1574681832,
+ "Length": 3339
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_10",
- "Hash": 605838753,
- "Length": 3295
+ "Hash": -742583506,
+ "Length": 3269
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse",
- "Hash": -1857131151,
- "Length": 3281
+ "Hash": 1513903928,
+ "Length": 3255
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_15",
- "Hash": 1422097206,
- "Length": 3302
+ "Hash": 1997322465,
+ "Length": 3276
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_20",
- "Hash": 793810402,
- "Length": 3295
+ "Hash": 1486228795,
+ "Length": 3269
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_25",
- "Hash": 1418620674,
- "Length": 3297
+ "Hash": 875318441,
+ "Length": 3271
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_30",
- "Hash": 1302784627,
- "Length": 3301
+ "Hash": 1949474470,
+ "Length": 3275
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_35",
- "Hash": 1655487415,
- "Length": 3299
+ "Hash": -1180234318,
+ "Length": 3273
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_40",
- "Hash": 581686028,
- "Length": 3297
+ "Hash": -444667529,
+ "Length": 3271
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_45",
- "Hash": 969961618,
- "Length": 3299
+ "Hash": -944008845,
+ "Length": 3273
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Confuse_50",
- "Hash": -1328377378,
- "Length": 3295
+ "Hash": 533170879,
+ "Length": 3269
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_A",
- "Hash": -1240303051,
- "Length": 11985
+ "Hash": -93326708,
+ "Length": 11959
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_B",
- "Hash": 1562047193,
- "Length": 12029
+ "Hash": 718057272,
+ "Length": 12003
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_C",
- "Hash": 390830525,
- "Length": 12010
+ "Hash": 393362418,
+ "Length": 11984
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_D",
- "Hash": -1330818781,
- "Length": 13184
+ "Hash": 1729221832,
+ "Length": 13158
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_E",
- "Hash": 366795682,
- "Length": 13200
+ "Hash": -931875717,
+ "Length": 13174
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Crushing_Impact_F",
- "Hash": -1126689742,
- "Length": 13187
+ "Hash": -1459311337,
+ "Length": 13161
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Curtail_Speed_A",
- "Hash": 244501652,
- "Length": 6619
+ "Hash": -916622003,
+ "Length": 6593
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Curtail_Speed_B",
- "Hash": 216785568,
- "Length": 14037
+ "Hash": 1080152503,
+ "Length": 14011
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Curtail_Speed_C",
- "Hash": 1273558508,
- "Length": 4540
+ "Hash": 392944247,
+ "Length": 4514
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Curtail_Speed_D",
- "Hash": -318186739,
- "Length": 6604
+ "Hash": -1258789536,
+ "Length": 6578
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Curtail_Speed_E",
- "Hash": -442336361,
- "Length": 7897
+ "Hash": -373652290,
+ "Length": 7871
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage",
- "Hash": 1241630133,
- "Length": 10483
+ "Hash": 820208264,
+ "Length": 10457
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_10",
- "Hash": 632773204,
- "Length": 10413
+ "Hash": 1806348553,
+ "Length": 10387
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_15",
- "Hash": -906682065,
- "Length": 10469
+ "Hash": 2086158748,
+ "Length": 10443
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_20",
- "Hash": -84183056,
- "Length": 10413
+ "Hash": -350035329,
+ "Length": 10387
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_25",
- "Hash": 1573099281,
- "Length": 10429
+ "Hash": 1737796286,
+ "Length": 10403
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_30",
- "Hash": -100653102,
- "Length": 10461
+ "Hash": 2142901657,
+ "Length": 10435
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_35",
- "Hash": -832009253,
- "Length": 10445
+ "Hash": -770943316,
+ "Length": 10419
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_40",
- "Hash": -1713508142,
- "Length": 10429
+ "Hash": 2085318223,
+ "Length": 10403
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_45",
- "Hash": -1532065167,
- "Length": 10445
+ "Hash": -1006597296,
+ "Length": 10419
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Damage_50",
- "Hash": 2082028158,
- "Length": 10413
+ "Hash": -434626937,
+ "Length": 10387
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_A",
- "Hash": 140146444,
- "Length": 3417
+ "Hash": 1826102195,
+ "Length": 3391
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_B",
- "Hash": 2094154955,
- "Length": 4636
+ "Hash": -795070210,
+ "Length": 4610
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_C",
- "Hash": -1862729379,
- "Length": 5851
+ "Hash": 1984611000,
+ "Length": 5825
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_D",
- "Hash": -1750035150,
- "Length": 4590
+ "Hash": 1163170977,
+ "Length": 4564
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_E",
- "Hash": 386757149,
- "Length": 4651
+ "Hash": -1482646412,
+ "Length": 4625
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dampened_Spirits_F",
- "Hash": 779210924,
- "Length": 3379
+ "Hash": -1065575923,
+ "Length": 3353
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_A",
- "Hash": -288627967,
- "Length": 3479
+ "Hash": -1831341662,
+ "Length": 3453
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_B",
- "Hash": 162833606,
- "Length": 4708
+ "Hash": -2133467959,
+ "Length": 4682
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_C",
- "Hash": 1466007724,
- "Length": 5933
+ "Hash": 1646086399,
+ "Length": 5907
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_D",
- "Hash": 1081354028,
- "Length": 4662
+ "Hash": -1196188053,
+ "Length": 4636
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_E",
- "Hash": 316497831,
- "Length": 4723
+ "Hash": 2113351066,
+ "Length": 4697
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Dark_Watchers_Despair_F",
- "Hash": 650281745,
- "Length": 3453
+ "Hash": -1394007670,
+ "Length": 3427
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_A",
- "Hash": 845566120,
- "Length": 4633
+ "Hash": 541940883,
+ "Length": 4607
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_B",
- "Hash": -51268319,
- "Length": 4710
+ "Hash": -1253862698,
+ "Length": 4684
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_C",
- "Hash": 1844408299,
- "Length": 4620
+ "Hash": 968501910,
+ "Length": 4594
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_D",
- "Hash": -1818630527,
- "Length": 4623
+ "Hash": 638345862,
+ "Length": 4597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_E",
- "Hash": 732388244,
- "Length": 5827
+ "Hash": -1731356373,
+ "Length": 5801
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Debiliative_Action_F",
- "Hash": -887524171,
- "Length": 4651
+ "Hash": 224524114,
+ "Length": 4625
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_A",
- "Hash": 188700063,
- "Length": 11845
+ "Hash": -1823862996,
+ "Length": 11819
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_B",
- "Hash": -1797589222,
- "Length": 11889
+ "Hash": -638827861,
+ "Length": 11863
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_C",
- "Hash": -234824216,
- "Length": 11870
+ "Hash": -739343,
+ "Length": 11844
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_D",
- "Hash": 896526421,
- "Length": 5699
+ "Hash": -463985348,
+ "Length": 5673
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_E",
- "Hash": -1670636429,
- "Length": 13047
+ "Hash": -1680445662,
+ "Length": 13021
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decimation_F",
- "Hash": -1852702196,
- "Length": 3637
+ "Hash": -1079944363,
+ "Length": 3611
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration",
- "Hash": 802959598,
- "Length": 3268
+ "Hash": 1954108527,
+ "Length": 3242
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_1",
- "Hash": 1166719302,
- "Length": 3277
+ "Hash": -1584879727,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_2",
- "Hash": 1559224391,
- "Length": 3277
+ "Hash": 1269185072,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_3",
- "Hash": 430987830,
- "Length": 3283
+ "Hash": -1550268733,
+ "Length": 3257
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_4",
- "Hash": -1178021031,
- "Length": 3277
+ "Hash": 9318406,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_5",
- "Hash": 200939253,
- "Length": 3277
+ "Hash": -419476202,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_6",
- "Hash": -756593061,
- "Length": 3283
+ "Hash": -943941184,
+ "Length": 3257
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_7",
- "Hash": 1838589811,
- "Length": 3277
+ "Hash": 487204312,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Decreased_Regeneration_8",
- "Hash": -1092514030,
- "Length": 3277
+ "Hash": -763747751,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff",
- "Hash": 686043435,
- "Length": 14086
+ "Hash": -1119960120,
+ "Length": 14060
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_10",
- "Hash": 1341710567,
- "Length": 14107
+ "Hash": -655327372,
+ "Length": 14081
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_15",
- "Hash": 1366136047,
- "Length": 14129
+ "Hash": -1724547404,
+ "Length": 14103
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_20",
- "Hash": -1546821247,
- "Length": 14118
+ "Hash": -384114170,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_25",
- "Hash": 2011455221,
- "Length": 14140
+ "Hash": -1984193592,
+ "Length": 14114
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_30",
- "Hash": -638405816,
- "Length": 14118
+ "Hash": -507885607,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_35",
- "Hash": 474557458,
- "Length": 14118
+ "Hash": 613782273,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_40",
- "Hash": 254427076,
- "Length": 14118
+ "Hash": 660685003,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_45",
- "Hash": 316623273,
- "Length": 14118
+ "Hash": 309086854,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_Buff_50",
- "Hash": -1551063988,
- "Length": 14118
+ "Hash": -1764004071,
+ "Length": 14092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_10",
- "Hash": -1294533278,
- "Length": 14166
+ "Hash": 1074460083,
+ "Length": 14140
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff",
- "Hash": 906873080,
- "Length": 14222
+ "Hash": 220017003,
+ "Length": 14196
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_15",
- "Hash": 1830887471,
- "Length": 14243
+ "Hash": -696818710,
+ "Length": 14217
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_20",
- "Hash": 849093357,
- "Length": 14166
+ "Hash": 1258939664,
+ "Length": 14140
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_25",
- "Hash": 135953635,
- "Length": 14188
+ "Hash": 1715742296,
+ "Length": 14162
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_30",
- "Hash": -460175678,
- "Length": 14232
+ "Hash": 251765897,
+ "Length": 14206
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_35",
- "Hash": 2114480013,
- "Length": 14210
+ "Hash": 2097407152,
+ "Length": 14184
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_40",
- "Hash": -1103703916,
- "Length": 14188
+ "Hash": 165819261,
+ "Length": 14162
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_45",
- "Hash": 1392581506,
- "Length": 14210
+ "Hash": 620888265,
+ "Length": 14184
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Defense_DeBuff_50",
- "Hash": -742646948,
- "Length": 14166
+ "Hash": -61968511,
+ "Length": 14140
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Deflated_Ego_A",
- "Hash": -2088374504,
- "Length": 3369
+ "Hash": 1814991275,
+ "Length": 3343
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Deflated_Ego_B",
- "Hash": 863475833,
- "Length": 4580
+ "Hash": 180981436,
+ "Length": 4554
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Deflated_Ego_C",
- "Hash": -821166498,
- "Length": 3491
+ "Hash": 677079895,
+ "Length": 3465
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_A",
- "Hash": 1771277533,
- "Length": 11845
+ "Hash": -445650966,
+ "Length": 11819
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_B",
- "Hash": 192374395,
- "Length": 11889
+ "Hash": -36543886,
+ "Length": 11863
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_C",
- "Hash": -81770795,
- "Length": 11870
+ "Hash": 508087594,
+ "Length": 11844
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_D",
- "Hash": -548423907,
- "Length": 11825
+ "Hash": 1339528494,
+ "Length": 11799
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_E",
- "Hash": 1518178837,
- "Length": 13050
+ "Hash": 576543198,
+ "Length": 13024
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Detonation_F",
- "Hash": -772714820,
- "Length": 13027
+ "Hash": 1993168407,
+ "Length": 13001
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_A",
- "Hash": -1534439888,
- "Length": 11873
+ "Hash": -958901415,
+ "Length": 11847
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_B",
- "Hash": -367079894,
- "Length": 11917
+ "Hash": -1637151925,
+ "Length": 11891
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_C",
- "Hash": 1501643568,
- "Length": 11898
+ "Hash": -939181087,
+ "Length": 11872
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_D",
- "Hash": 973684380,
- "Length": 13079
+ "Hash": 192367957,
+ "Length": 13053
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_E",
- "Hash": 267208631,
- "Length": 14259
+ "Hash": -1710826934,
+ "Length": 14233
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Devastation_F",
- "Hash": 96135565,
- "Length": 4527
+ "Hash": 588224678,
+ "Length": 4501
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Discouraging_Words_A",
- "Hash": -1400889528,
- "Length": 3441
+ "Hash": -1111383635,
+ "Length": 3415
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Discouraging_Words_B",
- "Hash": -1098191730,
- "Length": 4664
+ "Hash": 2074563909,
+ "Length": 4638
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Discouraging_Words_C",
- "Hash": -853114020,
- "Length": 5883
+ "Hash": -588373409,
+ "Length": 5857
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_A",
- "Hash": 2058240849,
- "Length": 7820
+ "Hash": -1949321954,
+ "Length": 7794
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_B",
- "Hash": -331494555,
- "Length": 4552
+ "Hash": -209897886,
+ "Length": 4526
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_C",
- "Hash": 497224524,
- "Length": 7813
+ "Hash": 2121738221,
+ "Length": 7787
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_D",
- "Hash": 1636708226,
- "Length": 9019
+ "Hash": 2112456293,
+ "Length": 8993
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_E",
- "Hash": 1491166712,
- "Length": 6604
+ "Hash": 1562096021,
+ "Length": 6578
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Doctored_Wounds_F",
- "Hash": 585273819,
- "Length": 3326
+ "Hash": -1575185566,
+ "Length": 3300
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_A",
- "Hash": 828098003,
- "Length": 12097
+ "Hash": -196155906,
+ "Length": 12071
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_B",
- "Hash": -1734997009,
- "Length": 12141
+ "Hash": 1843415058,
+ "Length": 12115
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_C",
- "Hash": -411506956,
- "Length": 4644
+ "Hash": 762085743,
+ "Length": 4618
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_D",
- "Hash": 1438057874,
- "Length": 13320
+ "Hash": -880572217,
+ "Length": 13294
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_E",
- "Hash": 1236956035,
- "Length": 10894
+ "Hash": 339000172,
+ "Length": 10868
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Edict_of_the_Master_F",
- "Hash": 1935557088,
- "Length": 3526
+ "Hash": -1481068991,
+ "Length": 3500
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_A",
- "Hash": -1749294335,
- "Length": 4488
+ "Hash": 1045947458,
+ "Length": 4462
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_B",
- "Hash": 392850162,
- "Length": 5703
+ "Hash": -349065539,
+ "Length": 5677
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_C",
- "Hash": -1097243728,
- "Length": 6894
+ "Hash": 1100674733,
+ "Length": 6868
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_D",
- "Hash": -113640336,
- "Length": 4603
+ "Hash": -1464408065,
+ "Length": 4577
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_E",
- "Hash": 1168029412,
- "Length": 5676
+ "Hash": 281670271,
+ "Length": 5650
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Efficacy_Adaptor_F",
- "Hash": -991939501,
- "Length": 5720
+ "Hash": 764830442,
+ "Length": 5694
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Encouraged_Accuracy_A",
- "Hash": -1234158601,
- "Length": 3437
+ "Hash": 1884298496,
+ "Length": 3411
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Encouraged_Accuracy_B",
- "Hash": -2094680822,
- "Length": 4662
+ "Hash": -124772267,
+ "Length": 4636
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Encouraged_Accuracy_C",
- "Hash": -2074307658,
- "Length": 5883
+ "Hash": 2074150641,
+ "Length": 5857
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_10",
- "Hash": 1955134566,
- "Length": 3408
+ "Hash": 1276858107,
+ "Length": 3382
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount",
- "Hash": 1234346132,
- "Length": 3394
+ "Hash": -1764702083,
+ "Length": 3368
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_15",
- "Hash": 462916965,
- "Length": 3415
+ "Hash": -2002510426,
+ "Length": 3389
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_20",
- "Hash": 595120577,
- "Length": 3408
+ "Hash": 907629432,
+ "Length": 3382
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_25",
- "Hash": -2046254887,
- "Length": 3410
+ "Hash": 387725740,
+ "Length": 3384
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_30",
- "Hash": -1520345726,
- "Length": 3414
+ "Hash": -141626531,
+ "Length": 3388
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_35",
- "Hash": 296661448,
- "Length": 3412
+ "Hash": -118712113,
+ "Length": 3386
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_40",
- "Hash": -2049631767,
- "Length": 3410
+ "Hash": -158957370,
+ "Length": 3384
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_45",
- "Hash": 2099230643,
- "Length": 3412
+ "Hash": -1251335108,
+ "Length": 3386
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Endurance_Discount_50",
- "Hash": -2014248183,
- "Length": 3408
+ "Hash": 246612070,
+ "Length": 3382
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Energy_Manipulator_A",
- "Hash": -856093147,
- "Length": 4516
+ "Hash": -952513070,
+ "Length": 4490
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Energy_Manipulator_B",
- "Hash": 1397634556,
- "Length": 5735
+ "Hash": -1306542221,
+ "Length": 5709
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Energy_Manipulator_C",
- "Hash": 849140260,
- "Length": 3496
+ "Hash": -28693635,
+ "Length": 3470
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_A",
- "Hash": -1714884993,
- "Length": 4644
+ "Hash": -1375642892,
+ "Length": 4618
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_B",
- "Hash": 1509982297,
- "Length": 4711
+ "Hash": 1551862382,
+ "Length": 4685
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_C",
- "Hash": -30683568,
- "Length": 4631
+ "Hash": -2104098981,
+ "Length": 4605
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_D",
- "Hash": -367813370,
- "Length": 4634
+ "Hash": 1369155731,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_E",
- "Hash": -867909540,
- "Length": 5840
+ "Hash": -1911996493,
+ "Length": 5814
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Enfeebled_Operation_F",
- "Hash": 145818917,
- "Length": 4649
+ "Hash": -1410274378,
+ "Length": 4623
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Entropic_Chaos_A",
- "Hash": 2038918868,
- "Length": 11957
+ "Hash": -1810566693,
+ "Length": 11931
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Entropic_Chaos_B",
- "Hash": 2056804548,
- "Length": 12001
+ "Hash": 664248911,
+ "Length": 11975
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Entropic_Chaos_C",
- "Hash": 50295696,
- "Length": 11982
+ "Hash": 1957506711,
+ "Length": 11956
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Entropic_Chaos_D",
- "Hash": -430544161,
- "Length": 13179
+ "Hash": -1425352222,
+ "Length": 13153
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Entropic_Chaos_E",
- "Hash": 1069336518,
- "Length": 3417
+ "Hash": -1830476353,
+ "Length": 3391
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_A",
- "Hash": -1779556456,
- "Length": 10674
+ "Hash": -1300714945,
+ "Length": 10648
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_B",
- "Hash": -681602763,
- "Length": 4496
+ "Hash": -1733151536,
+ "Length": 4470
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_C",
- "Hash": -806196676,
- "Length": 11881
+ "Hash": 856766251,
+ "Length": 11855
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_D",
- "Hash": -687596904,
- "Length": 13031
+ "Hash": 10301913,
+ "Length": 13005
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_E",
- "Hash": 1124984064,
- "Length": 14208
+ "Hash": -591508189,
+ "Length": 14182
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Eradication_F",
- "Hash": -1187242712,
- "Length": 4490
+ "Hash": 384258981,
+ "Length": 4464
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_A",
- "Hash": 867567382,
- "Length": 4609
+ "Hash": 664081637,
+ "Length": 4583
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_B",
- "Hash": -1964644401,
- "Length": 4634
+ "Hash": 190330548,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_C",
- "Hash": -1388079619,
- "Length": 4596
+ "Hash": 632225390,
+ "Length": 4570
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_D",
- "Hash": -814687128,
- "Length": 4557
+ "Hash": -130592883,
+ "Length": 4531
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_E",
- "Hash": 646662611,
- "Length": 4602
+ "Hash": 1485211940,
+ "Length": 4576
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Essence_of_Curare_F",
- "Hash": -28297382,
- "Length": 5745
+ "Hash": -1340855189,
+ "Length": 5719
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_A",
- "Hash": 1849028782,
- "Length": 12153
+ "Hash": 531555487,
+ "Length": 12127
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_B",
- "Hash": -1655309303,
- "Length": 12197
+ "Hash": -1342363036,
+ "Length": 12171
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_C",
- "Hash": -345109047,
- "Length": 12198
+ "Hash": 865228140,
+ "Length": 12172
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_D",
- "Hash": -1468917476,
- "Length": 12131
+ "Hash": -161462611,
+ "Length": 12105
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_E",
- "Hash": 554160901,
- "Length": 12178
+ "Hash": 1908128836,
+ "Length": 12152
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Executioners_Contract_F",
- "Hash": 283074324,
- "Length": 4698
+ "Hash": -3804471,
+ "Length": 4672
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_A",
- "Hash": 10962377,
- "Length": 4910
+ "Hash": -646293574,
+ "Length": 4884
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_B",
- "Hash": 1918058049,
- "Length": 12455
+ "Hash": -883057830,
+ "Length": 12429
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_C",
- "Hash": -1740505346,
- "Length": 12500
+ "Hash": -2032010839,
+ "Length": 12474
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_D",
- "Hash": 198375042,
- "Length": 13677
+ "Hash": 1556137775,
+ "Length": 13651
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_E",
- "Hash": 915910567,
- "Length": 13696
+ "Hash": -52589358,
+ "Length": 13670
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Expedient_Reinforcement_F",
- "Hash": 836766374,
- "Length": 3839
+ "Hash": -1898052007,
+ "Length": 3813
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploit_Weakness_A",
- "Hash": -1418863662,
- "Length": 12013
+ "Hash": 1003023385,
+ "Length": 11987
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploit_Weakness_B",
- "Hash": 1351924242,
- "Length": 12057
+ "Hash": -1764930545,
+ "Length": 12031
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploit_Weakness_c",
- "Hash": 1090830764,
- "Length": 12011
+ "Hash": -1163596777,
+ "Length": 11985
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploit_Weakness_D",
- "Hash": -541728707,
- "Length": 12038
+ "Hash": 1775849972,
+ "Length": 12012
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploited_Vulnerability_A",
- "Hash": -1108561592,
- "Length": 3517
+ "Hash": -587960851,
+ "Length": 3491
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploited_Vulnerability_B",
- "Hash": 1057832250,
- "Length": 4744
+ "Hash": -1178241443,
+ "Length": 4718
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Exploited_Vulnerability_C",
- "Hash": -1038256498,
- "Length": 5977
+ "Hash": -773679419,
+ "Length": 5951
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Explosive_Strike_A",
- "Hash": 1341784204,
- "Length": 13151
+ "Hash": 1139464001,
+ "Length": 13125
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Explosive_Strike_B",
- "Hash": 1061072564,
- "Length": 5693
+ "Hash": 1121716485,
+ "Length": 5667
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Explosive_Strike_C",
- "Hash": -314041296,
- "Length": 4567
+ "Hash": -208257507,
+ "Length": 4541
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_A",
- "Hash": -1082213909,
- "Length": 12013
+ "Hash": 773219272,
+ "Length": 11987
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_B",
- "Hash": 2049460385,
- "Length": 12057
+ "Hash": 734018696,
+ "Length": 12031
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_C",
- "Hash": -544864376,
- "Length": 5774
+ "Hash": -1165438703,
+ "Length": 5748
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_D",
- "Hash": 1736021154,
- "Length": 13246
+ "Hash": -2001319555,
+ "Length": 13220
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_E",
- "Hash": -594388001,
- "Length": 13217
+ "Hash": -1041530324,
+ "Length": 13191
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Extreme_Measures_F",
- "Hash": 804616901,
- "Length": 5771
+ "Hash": 1073357510,
+ "Length": 5745
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Far_Strike_A",
- "Hash": -1834867855,
- "Length": 11825
+ "Hash": -541559118,
+ "Length": 11799
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Far_Strike_B",
- "Hash": 1614677836,
- "Length": 11872
+ "Hash": -2139179713,
+ "Length": 11846
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Far_Strike_C",
- "Hash": -1592346989,
- "Length": 4504
+ "Hash": 136202216,
+ "Length": 4478
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear",
- "Hash": 1283729812,
- "Length": 4294
+ "Hash": -1057071797,
+ "Length": 4268
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_10",
- "Hash": -285276401,
- "Length": 4301
+ "Hash": 1272354788,
+ "Length": 4275
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_15",
- "Hash": 945985894,
- "Length": 4315
+ "Hash": 1069519463,
+ "Length": 4289
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_20",
- "Hash": -1894640487,
- "Length": 4301
+ "Hash": 1259787520,
+ "Length": 4275
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_25",
- "Hash": 2094892328,
- "Length": 4305
+ "Hash": 946270813,
+ "Length": 4279
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_30",
- "Hash": -1566285841,
- "Length": 4313
+ "Hash": -1378358894,
+ "Length": 4287
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_35",
- "Hash": -1971297944,
- "Length": 4309
+ "Hash": 1359503727,
+ "Length": 4283
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_40",
- "Hash": -1688337635,
- "Length": 4305
+ "Hash": 1646752838,
+ "Length": 4279
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_45",
- "Hash": 367285950,
- "Length": 4309
+ "Hash": 1774385649,
+ "Length": 4283
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fear_50",
- "Hash": 1545500871,
- "Length": 4301
+ "Hash": 230716956,
+ "Length": 4275
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_10",
- "Hash": 1813969910,
- "Length": 3217
+ "Hash": -1102103627,
+ "Length": 3191
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly",
- "Hash": -978200582,
- "Length": 3203
+ "Hash": -1711396051,
+ "Length": 3177
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_15",
- "Hash": 586079321,
- "Length": 3224
+ "Hash": -619811162,
+ "Length": 3198
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_20",
- "Hash": 681543475,
- "Length": 3217
+ "Hash": 1169329758,
+ "Length": 3191
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_25",
- "Hash": -380219919,
- "Length": 3219
+ "Hash": 88035408,
+ "Length": 3193
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_30",
- "Hash": -829902614,
- "Length": 3223
+ "Hash": 814580571,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_35",
- "Hash": -2137500674,
- "Length": 3221
+ "Hash": -1189522297,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_40",
- "Hash": -1567858141,
- "Length": 3219
+ "Hash": -168636362,
+ "Length": 3193
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_45",
- "Hash": 139110923,
- "Length": 3221
+ "Hash": -737981154,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fly_50",
- "Hash": 1461975327,
- "Length": 3217
+ "Hash": 1694579378,
+ "Length": 3191
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Focused_Smite_A",
- "Hash": 1955233159,
- "Length": 11929
+ "Hash": 163771244,
+ "Length": 11903
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Focused_Smite_B",
- "Hash": 1198841787,
- "Length": 11973
+ "Hash": 2100149544,
+ "Length": 11947
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Focused_Smite_C",
- "Hash": 1811067003,
- "Length": 11954
+ "Hash": 1132630602,
+ "Length": 11928
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Focused_Smite_D",
- "Hash": 657189232,
- "Length": 5747
+ "Hash": 1626585861,
+ "Length": 5721
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Focused_Smite_E",
- "Hash": -358973100,
- "Length": 13123
+ "Hash": -972734351,
+ "Length": 13097
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_A",
- "Hash": -47517037,
- "Length": 13091
+ "Hash": 903513646,
+ "Length": 13065
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_B",
- "Hash": -2085503191,
- "Length": 5661
+ "Hash": 440959074,
+ "Length": 5635
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_C",
- "Hash": -868431665,
- "Length": 5711
+ "Hash": -1431003820,
+ "Length": 5685
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_D",
- "Hash": 1057092181,
- "Length": 4570
+ "Hash": 790779426,
+ "Length": 4544
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_E",
- "Hash": 1329412543,
- "Length": 14272
+ "Hash": -1464920758,
+ "Length": 14246
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Force_Feedback_F",
- "Hash": 452840393,
- "Length": 3608
+ "Hash": 283516604,
+ "Length": 3582
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_A",
- "Hash": 413171196,
- "Length": 3586
+ "Hash": 1639479631,
+ "Length": 3560
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_B",
- "Hash": -2129150090,
- "Length": 4831
+ "Hash": 1079393747,
+ "Length": 4805
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_C",
- "Hash": 422368778,
- "Length": 5984
+ "Hash": 162900235,
+ "Length": 5958
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_D",
- "Hash": -1923572899,
- "Length": 4794
+ "Hash": -356820704,
+ "Length": 4768
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_E",
- "Hash": 1841377008,
- "Length": 4823
+ "Hash": 1358295469,
+ "Length": 4797
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fortunata_Hypnosis_F",
- "Hash": -616655545,
- "Length": 4781
+ "Hash": 777106422,
+ "Length": 4755
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Freebird_A",
- "Hash": -1226294443,
- "Length": 3290
+ "Hash": -1951675980,
+ "Length": 3264
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Freebird_B",
- "Hash": 1083121319,
- "Length": 3260
+ "Hash": -1554154086,
+ "Length": 3234
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Freebird_C",
- "Hash": -211676654,
- "Length": 6694
+ "Hash": 598305487,
+ "Length": 6668
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_A",
- "Hash": -455407458,
- "Length": 12663
+ "Hash": -787187995,
+ "Length": 12637
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_B",
- "Hash": 1546247385,
- "Length": 12692
+ "Hash": -63238484,
+ "Length": 12666
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_C",
- "Hash": 1143000874,
- "Length": 13899
+ "Hash": -584551025,
+ "Length": 13873
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_D",
- "Hash": -1067429313,
- "Length": 6387
+ "Hash": 1237600258,
+ "Length": 6361
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_E",
- "Hash": 137806276,
- "Length": 15075
+ "Hash": 2020371639,
+ "Length": 15049
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Fury_of_the_Gladiator_F",
- "Hash": 1141642880,
- "Length": 4107
+ "Hash": 2046829617,
+ "Length": 4081
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_A",
- "Hash": 11681213,
- "Length": 3621
+ "Hash": -1344742892,
+ "Length": 3595
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_B",
- "Hash": -1092335508,
- "Length": 4876
+ "Hash": 45149663,
+ "Length": 4850
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_C",
- "Hash": -405851122,
- "Length": 6127
+ "Hash": 1982366199,
+ "Length": 6101
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_D",
- "Hash": -585319008,
- "Length": 4844
+ "Hash": -1121518777,
+ "Length": 4818
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_E",
- "Hash": -775086669,
- "Length": 4891
+ "Hash": -727805706,
+ "Length": 4865
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gaussians_Synchronized_FireControl_F",
- "Hash": -211155726,
- "Length": 3934
+ "Hash": 1242276455,
+ "Length": 3908
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_A",
- "Hash": 1787994074,
- "Length": 4652
+ "Hash": 555003385,
+ "Length": 4626
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_B",
- "Hash": -1471589803,
- "Length": 4677
+ "Hash": 410906590,
+ "Length": 4651
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_C",
- "Hash": -1888846675,
- "Length": 4639
+ "Hash": -718776502,
+ "Length": 4613
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_D",
- "Hash": -487684588,
- "Length": 4600
+ "Hash": 1642916279,
+ "Length": 4574
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_E",
- "Hash": 1642140555,
- "Length": 5822
+ "Hash": 2143124282,
+ "Length": 5796
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ghost_Widows_Embrace_F",
- "Hash": -1698988241,
- "Length": 4658
+ "Hash": 1900922818,
+ "Length": 4632
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_A",
- "Hash": -1128593412,
- "Length": 15598
+ "Hash": 197658719,
+ "Length": 15572
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_B",
- "Hash": 10196504,
- "Length": 15584
+ "Hash": -279861681,
+ "Length": 15558
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_C",
- "Hash": -761184201,
- "Length": 4677
+ "Hash": -806989676,
+ "Length": 4651
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_D",
- "Hash": 786733891,
- "Length": 16850
+ "Hash": 1071886570,
+ "Length": 16824
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_E",
- "Hash": -1922384834,
- "Length": 14344
+ "Hash": 2061411423,
+ "Length": 14318
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gift_of_the_Ancients_F",
- "Hash": -168802517,
- "Length": 15704
+ "Hash": 415308186,
+ "Length": 15678
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_A",
- "Hash": 604778913,
- "Length": 12588
+ "Hash": 1164763112,
+ "Length": 12562
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_B",
- "Hash": -1492349921,
- "Length": 12572
+ "Hash": -1736735024,
+ "Length": 12546
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_C",
- "Hash": 1224432990,
- "Length": 5118
+ "Hash": 133324525,
+ "Length": 5092
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_D",
- "Hash": -913980501,
- "Length": 13782
+ "Hash": -1266187380,
+ "Length": 13756
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_E",
- "Hash": 1253894148,
- "Length": 11305
+ "Hash": -783831041,
+ "Length": 11279
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Armor_F",
- "Hash": 1594384294,
- "Length": 5177
+ "Hash": -371704999,
+ "Length": 5151
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_A",
- "Hash": -1446318231,
- "Length": 12581
+ "Hash": 1648022592,
+ "Length": 12555
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_B",
- "Hash": -679242214,
- "Length": 12610
+ "Hash": 1920302285,
+ "Length": 12584
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_C",
- "Hash": 1468947283,
- "Length": 13811
+ "Hash": 749120018,
+ "Length": 13785
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_D",
- "Hash": 1847878200,
- "Length": 6341
+ "Hash": 1540555615,
+ "Length": 6315
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_E",
- "Hash": 912830459,
- "Length": 14982
+ "Hash": -709841038,
+ "Length": 14956
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Javelin_F",
- "Hash": -2132814543,
- "Length": 4581
+ "Hash": 287526358,
+ "Length": 4555
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_A",
- "Hash": 2023806913,
- "Length": 5066
+ "Hash": -1229850002,
+ "Length": 5040
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_B",
- "Hash": -1005504683,
- "Length": 5055
+ "Hash": 793157904,
+ "Length": 5029
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_C",
- "Hash": 1833247108,
- "Length": 5050
+ "Hash": -483045089,
+ "Length": 5024
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_D",
- "Hash": -667892575,
- "Length": 6340
+ "Hash": 189014682,
+ "Length": 6314
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_E",
- "Hash": -1616870780,
- "Length": 7547
+ "Hash": 1025848109,
+ "Length": 7521
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Net_F",
- "Hash": 1089218389,
- "Length": 4528
+ "Hash": -2056123940,
+ "Length": 4502
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_A",
- "Hash": 328524356,
- "Length": 12553
+ "Hash": -86665417,
+ "Length": 12527
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_B",
- "Hash": 2022347771,
- "Length": 12582
+ "Hash": 1373510908,
+ "Length": 12556
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_C",
- "Hash": 321821476,
- "Length": 13781
+ "Hash": 1422034705,
+ "Length": 13755
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_D",
- "Hash": -254919839,
- "Length": 6325
+ "Hash": 317178734,
+ "Length": 6299
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_E",
- "Hash": -1605528570,
- "Length": 14950
+ "Hash": 100540513,
+ "Length": 14924
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gladiators_Strike_F",
- "Hash": -11653128,
- "Length": 4579
+ "Hash": 2077684211,
+ "Length": 4553
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_A",
- "Hash": 1005721612,
- "Length": 4650
+ "Hash": -770586533,
+ "Length": 4624
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_B",
- "Hash": -151805210,
- "Length": 4699
+ "Hash": -1473655527,
+ "Length": 4673
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_C",
- "Hash": -1414100230,
- "Length": 4637
+ "Hash": 1966848267,
+ "Length": 4611
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_D",
- "Hash": 249031091,
- "Length": 4599
+ "Hash": 1644363618,
+ "Length": 4573
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_E",
- "Hash": -1240521744,
- "Length": 5817
+ "Hash": 1500316775,
+ "Length": 5791
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Glimpse_of_the_Abyss_F",
- "Hash": -1309917270,
- "Length": 4610
+ "Hash": 820656161,
+ "Length": 4584
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_A",
- "Hash": -568312881,
- "Length": 3651
+ "Hash": -1206680166,
+ "Length": 3625
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_B",
- "Hash": -193037103,
- "Length": 4900
+ "Hash": 868009768,
+ "Length": 4874
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_C",
- "Hash": 1034994611,
- "Length": 6057
+ "Hash": 566750504,
+ "Length": 6031
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_D",
- "Hash": -973928850,
- "Length": 4828
+ "Hash": 67036017,
+ "Length": 4802
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_E",
- "Hash": 1847275549,
- "Length": 4892
+ "Hash": 68672536,
+ "Length": 4866
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Gravitational_Anchor_F",
- "Hash": -881153404,
- "Length": 4843
+ "Hash": 2083576875,
+ "Length": 4817
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_A",
- "Hash": -1193786464,
- "Length": 7880
+ "Hash": 606750087,
+ "Length": 7854
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_B",
- "Hash": -66465270,
- "Length": 4594
+ "Hash": 1221365775,
+ "Length": 4568
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_C",
- "Hash": 1886927455,
- "Length": 7873
+ "Hash": 1186129172,
+ "Length": 7847
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_D",
- "Hash": 683924579,
- "Length": 9085
+ "Hash": 1556150372,
+ "Length": 9059
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_E",
- "Hash": 704353991,
- "Length": 6658
+ "Hash": -1536532746,
+ "Length": 6632
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Harmonized_Healing_F",
- "Hash": -114674061,
- "Length": 3371
+ "Hash": 1991237426,
+ "Length": 3345
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal",
- "Hash": -126220927,
- "Length": 6381
+ "Hash": -562396770,
+ "Length": 6355
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_10",
- "Hash": -1318564954,
- "Length": 6374
+ "Hash": 783907445,
+ "Length": 6348
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_15",
- "Hash": -751885023,
- "Length": 6402
+ "Hash": 1686980492,
+ "Length": 6376
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_20",
- "Hash": 182094256,
- "Length": 6374
+ "Hash": 1182386091,
+ "Length": 6348
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_25",
- "Hash": -215255302,
- "Length": 6382
+ "Hash": 491429031,
+ "Length": 6356
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_30",
- "Hash": 221802985,
- "Length": 6398
+ "Hash": -139100092,
+ "Length": 6372
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_35",
- "Hash": 973595920,
- "Length": 6390
+ "Hash": -970035199,
+ "Length": 6364
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_40",
- "Hash": 1219411575,
- "Length": 6382
+ "Hash": 1842711604,
+ "Length": 6356
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_45",
- "Hash": 300201960,
- "Length": 6390
+ "Hash": -2031797769,
+ "Length": 6364
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Heal_50",
- "Hash": -1886711487,
- "Length": 6374
+ "Hash": -1383478726,
+ "Length": 6348
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_A",
- "Hash": -1020695894,
- "Length": 10760
+ "Hash": 1304643045,
+ "Length": 10734
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_B",
- "Hash": -1013682003,
- "Length": 11990
+ "Hash": -1289341036,
+ "Length": 11964
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_C",
- "Hash": 56867606,
- "Length": 13123
+ "Hash": 1315015897,
+ "Length": 13097
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_D",
- "Hash": -1952315465,
- "Length": 4624
+ "Hash": -1560144888,
+ "Length": 4598
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_E",
- "Hash": -102218248,
- "Length": 12004
+ "Hash": 1099535599,
+ "Length": 11978
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hecatomb_F",
- "Hash": 2011715341,
- "Length": 3585
+ "Hash": 468467012,
+ "Length": 3559
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hibernation_A",
- "Hash": 970599952,
- "Length": 4526
+ "Hash": -1798880193,
+ "Length": 4500
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hibernation_B",
- "Hash": -29164223,
- "Length": 4563
+ "Hash": -552207026,
+ "Length": 4537
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hibernation_C",
- "Hash": 1438122911,
- "Length": 4513
+ "Hash": 1711062578,
+ "Length": 4487
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hibernation_D",
- "Hash": -118793079,
- "Length": 4481
+ "Hash": -1918779586,
+ "Length": 4455
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hibernation_E",
- "Hash": 315769254,
- "Length": 5681
+ "Hash": 70738837,
+ "Length": 5655
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold",
- "Hash": 530030616,
- "Length": 3223
+ "Hash": -1983968415,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_10",
- "Hash": 2013707364,
- "Length": 3237
+ "Hash": -2067244457,
+ "Length": 3211
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_15",
- "Hash": 1099988369,
- "Length": 3244
+ "Hash": -1767627152,
+ "Length": 3218
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_20",
- "Hash": -1477749720,
- "Length": 3237
+ "Hash": -596485515,
+ "Length": 3211
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_25",
- "Hash": -1785406524,
- "Length": 3239
+ "Hash": 95504133,
+ "Length": 3213
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_30",
- "Hash": -352537227,
- "Length": 3243
+ "Hash": -1824458474,
+ "Length": 3217
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_35",
- "Hash": -128941001,
- "Length": 3241
+ "Hash": -8973164,
+ "Length": 3215
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_40",
- "Hash": 1430468872,
- "Length": 3239
+ "Hash": 1587477189,
+ "Length": 3213
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_45",
- "Hash": 1946781694,
- "Length": 3241
+ "Hash": -1784028665,
+ "Length": 3215
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Hold_50",
- "Hash": 1443224226,
- "Length": 3237
+ "Hash": 1188341473,
+ "Length": 3211
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Horror_A",
- "Hash": -1694967179,
- "Length": 4454
+ "Hash": 2062613192,
+ "Length": 4428
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Horror_B",
- "Hash": -1314541975,
- "Length": 4503
+ "Hash": 239825192,
+ "Length": 4477
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Horror_C",
- "Hash": 716216576,
- "Length": 4441
+ "Hash": 1043972297,
+ "Length": 4415
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Horror_D",
- "Hash": -251045593,
- "Length": 4403
+ "Hash": 2127139812,
+ "Length": 4377
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Horror_E",
- "Hash": -395675384,
- "Length": 5593
+ "Hash": 619943729,
+ "Length": 5567
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize",
- "Hash": -1735242680,
- "Length": 3348
+ "Hash": -1998376231,
+ "Length": 3322
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_10",
- "Hash": 678195710,
- "Length": 3362
+ "Hash": 1571139033,
+ "Length": 3336
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_15",
- "Hash": -529873087,
- "Length": 3369
+ "Hash": -1309807344,
+ "Length": 3343
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_20",
- "Hash": -1484161901,
- "Length": 3362
+ "Hash": -268930954,
+ "Length": 3336
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_25",
- "Hash": -129100919,
- "Length": 3364
+ "Hash": 19263936,
+ "Length": 3338
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_30",
- "Hash": -2118932676,
- "Length": 3368
+ "Hash": 1803968915,
+ "Length": 3342
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_35",
- "Hash": 1785705368,
- "Length": 3366
+ "Hash": 178668683,
+ "Length": 3340
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_40",
- "Hash": -1102134413,
- "Length": 3364
+ "Hash": 1764895426,
+ "Length": 3338
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_45",
- "Hash": 234678840,
- "Length": 3366
+ "Hash": -660441833,
+ "Length": 3340
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Immobilize_50",
- "Hash": -111642038,
- "Length": 3362
+ "Hash": -465145897,
+ "Length": 3336
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_A",
- "Hash": -234047881,
- "Length": 6691
+ "Hash": 37886416,
+ "Length": 6665
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_B",
- "Hash": 563221645,
- "Length": 14165
+ "Hash": 1835004548,
+ "Length": 14139
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_C",
- "Hash": 1139459481,
- "Length": 4596
+ "Hash": -1828213792,
+ "Length": 4570
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_D",
- "Hash": 94534424,
- "Length": 6676
+ "Hash": -1897104825,
+ "Length": 6650
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_E",
- "Hash": 1979151361,
- "Length": 7977
+ "Hash": -2044087580,
+ "Length": 7951
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impeded_Swiftness_F",
- "Hash": -1103688437,
- "Length": 4573
+ "Hash": 1683849434,
+ "Length": 4547
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervious_Skin_A",
- "Hash": 1386161253,
- "Length": 11958
+ "Hash": -818631074,
+ "Length": 11932
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervious_Skin_B",
- "Hash": -1512810263,
- "Length": 11944
+ "Hash": -1225914556,
+ "Length": 11918
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervious_Skin_C",
- "Hash": 357348875,
- "Length": 4590
+ "Hash": 111184354,
+ "Length": 4564
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervious_Skin_D",
- "Hash": 980820808,
- "Length": 13236
+ "Hash": -1384299191,
+ "Length": 13210
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervious_Skin_E",
- "Hash": -1831417611,
- "Length": 4391
+ "Hash": -714251548,
+ "Length": 4365
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_A",
- "Hash": -1561126055,
- "Length": 11958
+ "Hash": -698694500,
+ "Length": 11932
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_B",
- "Hash": 1539720475,
- "Length": 11944
+ "Hash": 326502764,
+ "Length": 11918
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_C",
- "Hash": -46135626,
- "Length": 4590
+ "Hash": -1178341583,
+ "Length": 4564
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_D",
- "Hash": 1154214425,
- "Length": 13236
+ "Hash": -1141146262,
+ "Length": 13210
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_E",
- "Hash": 1623596416,
- "Length": 10740
+ "Hash": -1683006043,
+ "Length": 10714
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Impervium_Armor_F",
- "Hash": 410135872,
- "Length": 3270
+ "Hash": 438622625,
+ "Length": 3244
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_A",
- "Hash": 1969468937,
- "Length": 4540
+ "Hash": 256831092,
+ "Length": 4514
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_B",
- "Hash": -1778215387,
- "Length": 4577
+ "Hash": -111947136,
+ "Length": 4551
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_C",
- "Hash": 1993849669,
- "Length": 4527
+ "Hash": -1330640812,
+ "Length": 4501
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_D",
- "Hash": 1683920157,
- "Length": 4495
+ "Hash": 1187066100,
+ "Length": 4469
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_E",
- "Hash": 2064776392,
- "Length": 5697
+ "Hash": 747824443,
+ "Length": 5671
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Induced_Coma_F",
- "Hash": -2060251327,
- "Length": 3351
+ "Hash": -315423428,
+ "Length": 3325
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_10",
- "Hash": 1235589686,
- "Length": 5488
+ "Hash": -1449814373,
+ "Length": 5462
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible",
- "Hash": 1355580288,
- "Length": 5488
+ "Hash": 1169234145,
+ "Length": 5462
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_15",
- "Hash": 1189318573,
- "Length": 5509
+ "Hash": -1599975754,
+ "Length": 5483
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_20",
- "Hash": 869641341,
- "Length": 5488
+ "Hash": 1265978174,
+ "Length": 5462
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_25",
- "Hash": 785541821,
- "Length": 5494
+ "Hash": 1759168962,
+ "Length": 5468
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_30",
- "Hash": 1632382471,
- "Length": 5506
+ "Hash": 801415934,
+ "Length": 5480
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_35",
- "Hash": -1232976855,
- "Length": 5500
+ "Hash": 935943390,
+ "Length": 5474
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_40",
- "Hash": -678775738,
- "Length": 5494
+ "Hash": -1258842473,
+ "Length": 5468
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_45",
- "Hash": 1416618254,
- "Length": 5500
+ "Hash": -1504895235,
+ "Length": 5474
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Intangible_50",
- "Hash": 991868704,
- "Length": 5488
+ "Hash": -87148801,
+ "Length": 5462
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_10",
- "Hash": -1182518579,
- "Length": 3305
+ "Hash": -1253389688,
+ "Length": 3279
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt",
- "Hash": 1521490793,
- "Length": 3278
+ "Hash": 28501082,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_15",
- "Hash": -1413119582,
- "Length": 3305
+ "Hash": -959936819,
+ "Length": 3279
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_20",
- "Hash": -1744781677,
- "Length": 3302
+ "Hash": -459402910,
+ "Length": 3276
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_25",
- "Hash": 2102013753,
- "Length": 3310
+ "Hash": -717193726,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_30",
- "Hash": -1483123856,
- "Length": 3304
+ "Hash": -208309257,
+ "Length": 3278
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_35",
- "Hash": -733485406,
- "Length": 3302
+ "Hash": -809504967,
+ "Length": 3276
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_40",
- "Hash": -632370017,
- "Length": 3300
+ "Hash": 1772674768,
+ "Length": 3274
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_45",
- "Hash": 334263755,
- "Length": 3302
+ "Hash": -631640856,
+ "Length": 3276
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Interrupt_50",
- "Hash": 437590278,
- "Length": 3298
+ "Hash": -1208868403,
+ "Length": 3272
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jaunt_A",
- "Hash": -1867785722,
- "Length": 3226
+ "Hash": -45864097,
+ "Length": 3200
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jaunt_B",
- "Hash": 1830049722,
- "Length": 3248
+ "Hash": 1295106845,
+ "Length": 3222
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jaunt_C",
- "Hash": 1119643823,
- "Length": 4454
+ "Hash": 2068138638,
+ "Length": 4428
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_A",
- "Hash": 1162948386,
- "Length": 12467
+ "Hash": -1818282845,
+ "Length": 12441
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_B",
- "Hash": -854640769,
- "Length": 12496
+ "Hash": -683441910,
+ "Length": 12470
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_C",
- "Hash": -1360442613,
- "Length": 13689
+ "Hash": -753575172,
+ "Length": 13663
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_D",
- "Hash": 1393594954,
- "Length": 6275
+ "Hash": -998217937,
+ "Length": 6249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_E",
- "Hash": -1730351725,
- "Length": 14851
+ "Hash": 902272248,
+ "Length": 14825
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Javelin_Volley_F",
- "Hash": -916843467,
- "Length": 4527
+ "Hash": -1633474532,
+ "Length": 4501
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump",
- "Hash": 2133155667,
- "Length": 4268
+ "Hash": 535668966,
+ "Length": 4242
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_10",
- "Hash": -1050944106,
- "Length": 4275
+ "Hash": -124861265,
+ "Length": 4249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_15",
- "Hash": 233372083,
- "Length": 4289
+ "Hash": -249059982,
+ "Length": 4263
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_20",
- "Hash": -192891220,
- "Length": 4275
+ "Hash": -2135630195,
+ "Length": 4249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_25",
- "Hash": -1460058087,
- "Length": 4279
+ "Hash": 1829122324,
+ "Length": 4253
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_30",
- "Hash": 354999564,
- "Length": 4287
+ "Hash": -792275681,
+ "Length": 4261
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_35",
- "Hash": 322940344,
- "Length": 4283
+ "Hash": -1204426529,
+ "Length": 4257
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_40",
- "Hash": 1174416209,
- "Length": 4279
+ "Hash": 2035298396,
+ "Length": 4253
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_45",
- "Hash": -1861118768,
- "Length": 4283
+ "Hash": -1719952991,
+ "Length": 4257
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Jump_50",
- "Hash": 1154941303,
- "Length": 4275
+ "Hash": 1824613550,
+ "Length": 4249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Karma_A",
- "Hash": 234943072,
- "Length": 15088
+ "Hash": 1391494197,
+ "Length": 15062
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Karma_B",
- "Hash": 1767516616,
- "Length": 15074
+ "Hash": -1531164347,
+ "Length": 15048
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Karma_C",
- "Hash": -658499982,
- "Length": 3228
+ "Hash": 176036275,
+ "Length": 3202
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Combat_A",
- "Hash": -1656816311,
- "Length": 11957
+ "Hash": 943651512,
+ "Length": 11931
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Combat_B",
- "Hash": -1611077841,
- "Length": 12001
+ "Hash": -138409596,
+ "Length": 11975
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Combat_C",
- "Hash": -1322075839,
- "Length": 11982
+ "Hash": 673677570,
+ "Length": 11956
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Combat_D",
- "Hash": -1662525619,
- "Length": 13177
+ "Hash": 1564966482,
+ "Length": 13151
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Combat_E",
- "Hash": -1159412720,
- "Length": 3347
+ "Hash": -1449180891,
+ "Length": 3321
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_A",
- "Hash": 606583170,
- "Length": 13061
+ "Hash": -1737840191,
+ "Length": 13035
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_B",
- "Hash": 505278704,
- "Length": 5645
+ "Hash": 2056801733,
+ "Length": 5619
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_C",
- "Hash": -339657124,
- "Length": 5695
+ "Hash": 170437101,
+ "Length": 5669
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_D",
- "Hash": -1533114680,
- "Length": 4556
+ "Hash": -278792095,
+ "Length": 4530
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_E",
- "Hash": -1051952232,
- "Length": 14240
+ "Hash": 926930237,
+ "Length": 14214
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kinetic_Crash_F",
- "Hash": -1625165350,
- "Length": 14210
+ "Hash": -2026190853,
+ "Length": 14184
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kismet_A",
- "Hash": 386744873,
- "Length": 15122
+ "Hash": -206770090,
+ "Length": 15096
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kismet_B",
- "Hash": -656107531,
- "Length": 15108
+ "Hash": 254741134,
+ "Length": 15082
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kismet_C",
- "Hash": 789669100,
- "Length": 4481
+ "Hash": 686724159,
+ "Length": 4455
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kismet_D",
- "Hash": -824287524,
- "Length": 16358
+ "Hash": -152310721,
+ "Length": 16332
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Kismet_E",
- "Hash": 1982945940,
- "Length": 3410
+ "Hash": -1125112235,
+ "Length": 3384
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback",
- "Hash": 810841229,
- "Length": 4372
+ "Hash": 756089960,
+ "Length": 4346
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_10",
- "Hash": -425284646,
- "Length": 4391
+ "Hash": -358768417,
+ "Length": 4365
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_15",
- "Hash": 713016869,
- "Length": 4399
+ "Hash": 591446664,
+ "Length": 4373
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_20",
- "Hash": -1271538916,
- "Length": 4395
+ "Hash": 961548885,
+ "Length": 4369
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_25",
- "Hash": 1035922547,
- "Length": 4399
+ "Hash": -1387505886,
+ "Length": 4373
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_30",
- "Hash": -508799202,
- "Length": 4391
+ "Hash": -93337173,
+ "Length": 4365
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_35",
- "Hash": 145885353,
- "Length": 4399
+ "Hash": 1768746900,
+ "Length": 4373
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_40",
- "Hash": -197029892,
- "Length": 4395
+ "Hash": -715079809,
+ "Length": 4369
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_45",
- "Hash": -1738921199,
- "Length": 4391
+ "Hash": -1451517130,
+ "Length": 4365
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Knockback_50",
- "Hash": 1734572450,
- "Length": 4395
+ "Hash": 1740012641,
+ "Length": 4369
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_A",
- "Hash": 1557542074,
- "Length": 4596
+ "Hash": -271645329,
+ "Length": 4570
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_B",
- "Hash": 1964283587,
- "Length": 4633
+ "Hash": -1865667044,
+ "Length": 4607
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_C",
- "Hash": -628134273,
- "Length": 4583
+ "Hash": -773905932,
+ "Length": 4557
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_D",
- "Hash": 511388975,
- "Length": 4551
+ "Hash": -100638308,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_E",
- "Hash": -411196358,
- "Length": 5761
+ "Hash": 1187271025,
+ "Length": 5735
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lethargic_Repose_F",
- "Hash": 8310325,
- "Length": 4566
+ "Hash": -1116137454,
+ "Length": 4540
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_A",
- "Hash": 102672410,
- "Length": 4468
+ "Hash": 1121629775,
+ "Length": 4442
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_B",
- "Hash": -1872366807,
- "Length": 4457
+ "Hash": -568825014,
+ "Length": 4431
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_C",
- "Hash": 1107781648,
- "Length": 4452
+ "Hash": -1658904451,
+ "Length": 4426
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_D",
- "Hash": -1728143927,
- "Length": 5730
+ "Hash": 1109333286,
+ "Length": 5704
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_E",
- "Hash": 1827197749,
- "Length": 6925
+ "Hash": 1872490330,
+ "Length": 6899
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Lockdown_F",
- "Hash": 420740641,
- "Length": 4519
+ "Hash": -930838032,
+ "Length": 4493
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_A",
- "Hash": 1118168983,
- "Length": 15564
+ "Hash": 691341292,
+ "Length": 15538
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_B",
- "Hash": -2017067435,
- "Length": 15550
+ "Hash": 1557672550,
+ "Length": 15524
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_C",
- "Hash": 540418049,
- "Length": 4663
+ "Hash": 1285777764,
+ "Length": 4637
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_D",
- "Hash": -957985033,
- "Length": 16814
+ "Hash": -1225117124,
+ "Length": 16788
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_E",
- "Hash": -2108679160,
- "Length": 14312
+ "Hash": 914966877,
+ "Length": 14286
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Luck_of_the_Gambler_F",
- "Hash": 477369360,
- "Length": 15664
+ "Hash": -766699195,
+ "Length": 15638
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Maelstroms_Fury_A",
- "Hash": -193685212,
- "Length": 11986
+ "Hash": -482717565,
+ "Length": 11960
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Maelstroms_Fury_B",
- "Hash": -1342638290,
- "Length": 12030
+ "Hash": -1177100319,
+ "Length": 12004
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Maelstroms_Fury_C",
- "Hash": 1944282868,
- "Length": 12011
+ "Hash": -1859071117,
+ "Length": 11985
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Maelstroms_Fury_D",
- "Hash": -1064295179,
- "Length": 13210
+ "Hash": 392043216,
+ "Length": 13184
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_B",
- "Hash": 818322432,
- "Length": 11892
+ "Hash": -481402607,
+ "Length": 11866
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_C",
- "Hash": -261931384,
- "Length": 11873
+ "Hash": -1243006833,
+ "Length": 11847
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_D",
- "Hash": 195603303,
- "Length": 5702
+ "Hash": -1381332906,
+ "Length": 5676
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_E",
- "Hash": 1673622913,
- "Length": 14218
+ "Hash": 89055042,
+ "Length": 14192
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_F",
- "Hash": -349547271,
- "Length": 4473
+ "Hash": -309068044,
+ "Length": 4447
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Makos_Bite_A",
- "Hash": 359014707,
- "Length": 11847
+ "Hash": 1381675548,
+ "Length": 11821
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_A",
- "Hash": -1488435810,
- "Length": 4626
+ "Hash": 2049651705,
+ "Length": 4600
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_B",
- "Hash": -255916087,
- "Length": 4680
+ "Hash": 193575224,
+ "Length": 4654
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_C",
- "Hash": 81651593,
- "Length": 4613
+ "Hash": -1321767254,
+ "Length": 4587
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_D",
- "Hash": 1280402317,
- "Length": 4595
+ "Hash": 1793580700,
+ "Length": 4569
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_E",
- "Hash": 60878198,
- "Length": 5809
+ "Hash": 1006727127,
+ "Length": 5783
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Malaises_Illusions_F",
- "Hash": -751174403,
- "Length": 4586
+ "Hash": -977601012,
+ "Length": 4560
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_A",
- "Hash": 1573784539,
- "Length": 7660
+ "Hash": 608597978,
+ "Length": 7634
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_B",
- "Hash": 120906409,
- "Length": 4440
+ "Hash": 702126796,
+ "Length": 4414
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_C",
- "Hash": 1220328032,
- "Length": 7653
+ "Hash": 562427867,
+ "Length": 7627
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_D",
- "Hash": 1191258835,
- "Length": 8843
+ "Hash": 1670324202,
+ "Length": 8817
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_E",
- "Hash": -1502828283,
- "Length": 6460
+ "Hash": -209680768,
+ "Length": 6434
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Miracle_F",
- "Hash": 1929747759,
- "Length": 3431
+ "Hash": 483037680,
+ "Length": 3405
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_A",
- "Hash": 446958332,
- "Length": 3414
+ "Hash": -96877463,
+ "Length": 3388
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_B",
- "Hash": 1955204370,
- "Length": 4653
+ "Hash": -1044466831,
+ "Length": 4627
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_C",
- "Hash": -1376946578,
- "Length": 5807
+ "Hash": -1944574571,
+ "Length": 5781
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_D",
- "Hash": -621958527,
- "Length": 4624
+ "Hash": 2057358382,
+ "Length": 4598
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_E",
- "Hash": 1913849900,
- "Length": 4588
+ "Hash": 1974205681,
+ "Length": 4562
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Mocking_Beratement_F",
- "Hash": -2122998061,
- "Length": 3395
+ "Hash": -1926741910,
+ "Length": 3369
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_A",
- "Hash": 1514620896,
- "Length": 11901
+ "Hash": 966426843,
+ "Length": 11875
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_B",
- "Hash": -1552555751,
- "Length": 11945
+ "Hash": 242151292,
+ "Length": 11919
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_C",
- "Hash": -1834302429,
- "Length": 11926
+ "Hash": 1667423050,
+ "Length": 11900
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_D",
- "Hash": 30636698,
- "Length": 4546
+ "Hash": 362619521,
+ "Length": 4520
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_E",
- "Hash": -492978058,
- "Length": 13110
+ "Hash": 1905407965,
+ "Length": 13084
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Multi_Strike_F",
- "Hash": 1620270952,
- "Length": 13097
+ "Hash": 965535431,
+ "Length": 13071
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_A",
- "Hash": -1704766105,
- "Length": 4609
+ "Hash": 492929006,
+ "Length": 4583
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_B",
- "Hash": 886904512,
- "Length": 4634
+ "Hash": -1233345395,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_C",
- "Hash": 25786030,
- "Length": 4596
+ "Hash": -1295345993,
+ "Length": 4570
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_D",
- "Hash": 1784150903,
- "Length": 4557
+ "Hash": -840416424,
+ "Length": 4531
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_E",
- "Hash": -354211102,
- "Length": 5825
+ "Hash": 107495969,
+ "Length": 5799
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Neuronic_Shutdown_F",
- "Hash": 2128144218,
- "Length": 4572
+ "Hash": -231255665,
+ "Length": 4546
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_A",
- "Hash": 123121004,
- "Length": 4496
+ "Hash": -936456519,
+ "Length": 4470
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_B",
- "Hash": -143690600,
- "Length": 4545
+ "Hash": -1083895823,
+ "Length": 4519
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_C",
- "Hash": -1108964355,
- "Length": 4483
+ "Hash": 1130386648,
+ "Length": 4457
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_D",
- "Hash": -578476622,
- "Length": 4445
+ "Hash": -760616809,
+ "Length": 4419
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_E",
- "Hash": 2035293169,
- "Length": 5641
+ "Hash": 1272728316,
+ "Length": 5615
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Nightmare_F",
- "Hash": 1897623970,
- "Length": 4460
+ "Hash": -1627074771,
+ "Length": 4434
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_A",
- "Hash": -1432623342,
- "Length": 7925
+ "Hash": -903880023,
+ "Length": 7899
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_B",
- "Hash": 1013182682,
- "Length": 4627
+ "Hash": -1601869261,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_C",
- "Hash": -1304596323,
- "Length": 7918
+ "Hash": 1578883098,
+ "Length": 7892
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_D",
- "Hash": -1072794740,
- "Length": 9134
+ "Hash": 1466211291,
+ "Length": 9108
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_E",
- "Hash": -440601712,
- "Length": 6699
+ "Hash": 830286373,
+ "Length": 6673
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Numinas_Convalesence_F",
- "Hash": 1463111777,
- "Length": 4730
+ "Hash": 699919008,
+ "Length": 4704
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_A",
- "Hash": 1768246017,
- "Length": 10700
+ "Hash": 902904954,
+ "Length": 10674
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_B",
- "Hash": -371345304,
- "Length": 4510
+ "Hash": 1518459879,
+ "Length": 4484
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_C",
- "Hash": -2119481291,
- "Length": 11911
+ "Hash": 2103078392,
+ "Length": 11885
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_D",
- "Hash": 1457601080,
- "Length": 13061
+ "Hash": 1628899177,
+ "Length": 13035
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_E",
- "Hash": -229955156,
- "Length": 14240
+ "Hash": 452906747,
+ "Length": 14214
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Obliteration_F",
- "Hash": 1715808846,
- "Length": 4512
+ "Hash": 162582037,
+ "Length": 4486
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_A",
- "Hash": 1333788579,
- "Length": 6745
+ "Hash": 1849831312,
+ "Length": 6719
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_B",
- "Hash": -2016105590,
- "Length": 14261
+ "Hash": -420739535,
+ "Length": 14235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_C",
- "Hash": 1696807156,
- "Length": 4638
+ "Hash": 969433651,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_D",
- "Hash": 2028767571,
- "Length": 6730
+ "Hash": -942851362,
+ "Length": 6704
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_E",
- "Hash": 718391610,
- "Length": 8037
+ "Hash": -1305250881,
+ "Length": 8011
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pacing_of_the_Turtle_F",
- "Hash": -2138551760,
- "Length": 3444
+ "Hash": -161424917,
+ "Length": 3418
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_A",
- "Hash": 1390872920,
- "Length": 8172
+ "Hash": -2092975491,
+ "Length": 8146
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_B",
- "Hash": -2017799628,
- "Length": 4952
+ "Hash": -544722905,
+ "Length": 4926
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_C",
- "Hash": 1655858845,
- "Length": 8165
+ "Hash": 682054214,
+ "Length": 8139
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_D",
- "Hash": -443425737,
- "Length": 9355
+ "Hash": -1415788066,
+ "Length": 9329
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_E",
- "Hash": 1892830781,
- "Length": 6970
+ "Hash": 686844294,
+ "Length": 6944
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Panacea_F",
- "Hash": -86385733,
- "Length": 6520
+ "Hash": -1772255814,
+ "Length": 6494
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Paralytic_A",
- "Hash": 1376405488,
- "Length": 4497
+ "Hash": -768994717,
+ "Length": 4471
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Paralytic_B",
- "Hash": -577154119,
- "Length": 4522
+ "Hash": 949239754,
+ "Length": 4496
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Paralytic_C",
- "Hash": 585309011,
- "Length": 4484
+ "Hash": -1452380904,
+ "Length": 4458
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Paralytic_D",
- "Hash": 62159002,
- "Length": 4445
+ "Hash": 95920691,
+ "Length": 4419
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Paralytic_E",
- "Hash": -1683995387,
- "Length": 5697
+ "Hash": -604246320,
+ "Length": 5671
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_A",
- "Hash": 902220340,
- "Length": 3366
+ "Hash": -788959583,
+ "Length": 3340
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_B",
- "Hash": -1861211562,
- "Length": 4597
+ "Hash": -590812817,
+ "Length": 4571
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_C",
- "Hash": 233441260,
- "Length": 5743
+ "Hash": -937912955,
+ "Length": 5717
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_D",
- "Hash": -35212261,
- "Length": 4568
+ "Hash": -1438026834,
+ "Length": 4542
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_E",
- "Hash": 492492162,
- "Length": 4532
+ "Hash": 1815460241,
+ "Length": 4506
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perfect_Zinger_F",
- "Hash": -1185781532,
- "Length": 4589
+ "Hash": -252858145,
+ "Length": 4563
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_A",
- "Hash": 658677584,
- "Length": 4530
+ "Hash": -1169375981,
+ "Length": 4504
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_B",
- "Hash": 293378871,
- "Length": 5751
+ "Hash": 692559640,
+ "Length": 5725
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_C",
- "Hash": -2064824621,
- "Length": 6948
+ "Hash": 538659678,
+ "Length": 6922
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_D",
- "Hash": 1099189657,
- "Length": 4644
+ "Hash": 1073076254,
+ "Length": 4618
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_E",
- "Hash": -58281383,
- "Length": 5723
+ "Hash": 1532342022,
+ "Length": 5697
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Performance_Shifter_F",
- "Hash": 1239572095,
- "Length": 3493
+ "Hash": 389965210,
+ "Length": 3467
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_A",
- "Hash": 10368607,
- "Length": 4471
+ "Hash": 1277333346,
+ "Length": 4445
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_B",
- "Hash": -87431376,
- "Length": 4525
+ "Hash": -942280723,
+ "Length": 4499
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_C",
- "Hash": 842554539,
- "Length": 4458
+ "Hash": 710292250,
+ "Length": 4432
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_D",
- "Hash": 862629673,
- "Length": 4440
+ "Hash": 965295062,
+ "Length": 4414
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_E",
- "Hash": -1778595276,
- "Length": 5632
+ "Hash": -508962855,
+ "Length": 5606
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Perplex_F",
- "Hash": 1276904972,
- "Length": 4513
+ "Hash": -281003125,
+ "Length": 4487
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_A",
- "Hash": -864298994,
- "Length": 11987
+ "Hash": -1168872887,
+ "Length": 11961
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_B",
- "Hash": 205560437,
- "Length": 12030
+ "Hash": 1336626504,
+ "Length": 12004
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_C",
- "Hash": -1986768359,
- "Length": 12011
+ "Hash": -1857502526,
+ "Length": 11985
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_D",
- "Hash": 1888834256,
- "Length": 11966
+ "Hash": -1364822767,
+ "Length": 11940
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_E",
- "Hash": -1459252230,
- "Length": 13201
+ "Hash": -1232801369,
+ "Length": 13175
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Positrons_Blast_F",
- "Hash": -361364031,
- "Length": 4541
+ "Hash": 1989198672,
+ "Length": 4515
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pounding_Slugfest_A",
- "Hash": -1383045335,
- "Length": 12041
+ "Hash": 349871380,
+ "Length": 12015
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pounding_Slugfest_B",
- "Hash": -1923019035,
- "Length": 12085
+ "Hash": 1890712264,
+ "Length": 12059
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pounding_Slugfest_C",
- "Hash": -1652552899,
- "Length": 12068
+ "Hash": -1596065784,
+ "Length": 12042
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pounding_Slugfest_D",
- "Hash": 98477672,
- "Length": 4634
+ "Hash": -187051657,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_A",
- "Hash": -728581854,
- "Length": 6708
+ "Hash": 1405022775,
+ "Length": 6682
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_B",
- "Hash": -244698335,
- "Length": 7980
+ "Hash": -2014236322,
+ "Length": 7954
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_C",
- "Hash": -1620967777,
- "Length": 4650
+ "Hash": 622278696,
+ "Length": 4624
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_D",
- "Hash": 2107641354,
- "Length": 7954
+ "Hash": 2059041621,
+ "Length": 7928
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_E",
- "Hash": 1584764282,
- "Length": 9166
+ "Hash": -1906364497,
+ "Length": 9140
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Preventive_Medicine_F",
- "Hash": -1776176496,
- "Length": 3993
+ "Hash": -1708679647,
+ "Length": 3967
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pulverizing_Fisticuffs_A",
- "Hash": 1986906957,
- "Length": 12181
+ "Hash": 1232247802,
+ "Length": 12155
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pulverizing_Fisticuffs_B",
- "Hash": 1532570346,
- "Length": 13389
+ "Hash": 822766737,
+ "Length": 13363
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Pulverizing_Fisticuffs_C",
- "Hash": -575451920,
- "Length": 14603
+ "Hash": -1841332023,
+ "Length": 14577
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Quickfoot_A",
- "Hash": -1705371081,
- "Length": 3267
+ "Hash": 83240690,
+ "Length": 3241
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Quickfoot_B",
- "Hash": -773712372,
- "Length": 3303
+ "Hash": -350009903,
+ "Length": 3277
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Quickfoot_C",
- "Hash": -25831257,
- "Length": 4497
+ "Hash": 930309796,
+ "Length": 4471
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_A",
- "Hash": -553931303,
- "Length": 10760
+ "Hash": -1897096238,
+ "Length": 10734
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_B",
- "Hash": 1275444868,
- "Length": 11986
+ "Hash": 1003532773,
+ "Length": 11960
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_C",
- "Hash": -533177215,
- "Length": 13123
+ "Hash": -351701734,
+ "Length": 13097
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_D",
- "Hash": -150800360,
- "Length": 4608
+ "Hash": 1971313659,
+ "Length": 4582
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_E",
- "Hash": 695808902,
- "Length": 12004
+ "Hash": 868260949,
+ "Length": 11978
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ragnarok_F",
- "Hash": 1967391660,
- "Length": 3482
+ "Hash": 270907757,
+ "Length": 3456
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range",
- "Hash": 1150350519,
- "Length": 3183
+ "Hash": 1223945570,
+ "Length": 3157
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_10",
- "Hash": 1163650931,
- "Length": 3204
+ "Hash": 1039744402,
+ "Length": 3178
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_15",
- "Hash": 1667795631,
- "Length": 3206
+ "Hash": 1844172430,
+ "Length": 3180
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_20",
- "Hash": 1018092221,
- "Length": 3205
+ "Hash": 806211868,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_25",
- "Hash": 302003910,
- "Length": 3207
+ "Hash": 1475378631,
+ "Length": 3181
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_30",
- "Hash": 1673154771,
- "Length": 3205
+ "Hash": -2000095044,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_35",
- "Hash": 1834918532,
- "Length": 3205
+ "Hash": -2022127819,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_40",
- "Hash": 721287994,
- "Length": 3205
+ "Hash": 1353739199,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_45",
- "Hash": -1593981039,
- "Length": 3205
+ "Hash": 775169854,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Range_50",
- "Hash": 407837156,
- "Length": 3205
+ "Hash": -1326617183,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_A",
- "Hash": 835956558,
- "Length": 4556
+ "Hash": -674026809,
+ "Length": 4530
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_B",
- "Hash": 1809261399,
- "Length": 4582
+ "Hash": -1126208404,
+ "Length": 4556
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_C",
- "Hash": 1138439983,
- "Length": 4543
+ "Hash": -668074232,
+ "Length": 4517
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_D",
- "Hash": 986100444,
- "Length": 4505
+ "Hash": 10046341,
+ "Length": 4479
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_E",
- "Hash": -2106350774,
- "Length": 5709
+ "Hash": 2022970205,
+ "Length": 5683
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Razzle_Dazzle_F",
- "Hash": 419409728,
- "Length": 4612
+ "Hash": -2022601755,
+ "Length": 4586
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_A",
- "Hash": -952151599,
- "Length": 11930
+ "Hash": -1465453978,
+ "Length": 11904
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_B",
- "Hash": -872349415,
- "Length": 11916
+ "Hash": -449538010,
+ "Length": 11890
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_C",
- "Hash": 761575414,
- "Length": 4576
+ "Hash": 1739294125,
+ "Length": 4550
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_D",
- "Hash": -1343063813,
- "Length": 13208
+ "Hash": 171084488,
+ "Length": 13182
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_E",
- "Hash": -951732374,
- "Length": 10714
+ "Hash": 1255413485,
+ "Length": 10688
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Armor_F",
- "Hash": -1962689705,
- "Length": 3374
+ "Hash": 804167720,
+ "Length": 3348
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_A",
- "Hash": 621094712,
- "Length": 14275
+ "Hash": 1023946445,
+ "Length": 14249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_B",
- "Hash": 1139241989,
- "Length": 15593
+ "Hash": -1539780434,
+ "Length": 15567
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_C",
- "Hash": 2088632401,
- "Length": 4627
+ "Hash": 1411685036,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_D",
- "Hash": -1218471043,
- "Length": 15587
+ "Hash": -309880600,
+ "Length": 15561
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_E",
- "Hash": -526705151,
- "Length": 16737
+ "Hash": -502975892,
+ "Length": 16711
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Reactive_Defenses_F",
- "Hash": -1615109837,
- "Length": 12370
+ "Hash": 662246228,
+ "Length": 12344
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_10",
- "Hash": 1924659290,
- "Length": 3284
+ "Hash": 1045185805,
+ "Length": 3258
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge",
- "Hash": -36662916,
- "Length": 3270
+ "Hash": -345118815,
+ "Length": 3244
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_15",
- "Hash": -1612791400,
- "Length": 3291
+ "Hash": 199930987,
+ "Length": 3265
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_20",
- "Hash": 1887341784,
- "Length": 3284
+ "Hash": -386143983,
+ "Length": 3258
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_25",
- "Hash": 613280236,
- "Length": 3286
+ "Hash": -1945900321,
+ "Length": 3260
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_30",
- "Hash": 563885025,
- "Length": 3290
+ "Hash": 1983096668,
+ "Length": 3264
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_35",
- "Hash": 314164001,
- "Length": 3288
+ "Hash": 1864890534,
+ "Length": 3262
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_40",
- "Hash": -65157312,
- "Length": 3286
+ "Hash": -598327007,
+ "Length": 3260
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_45",
- "Hash": -1898785842,
- "Length": 3288
+ "Hash": 522222929,
+ "Length": 3262
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recharge_50",
- "Hash": -2042690568,
- "Length": 3284
+ "Hash": 2024899633,
+ "Length": 3258
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_10",
- "Hash": 933394232,
- "Length": 4389
+ "Hash": 1848741299,
+ "Length": 4363
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery",
- "Hash": -1618383361,
- "Length": 4382
+ "Hash": -323782152,
+ "Length": 4356
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_15",
- "Hash": 635532202,
- "Length": 4403
+ "Hash": -1348292937,
+ "Length": 4377
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_20",
- "Hash": 2134424521,
- "Length": 4389
+ "Hash": 1700295712,
+ "Length": 4363
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_25",
- "Hash": 177613796,
- "Length": 4393
+ "Hash": 1641672745,
+ "Length": 4367
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_30",
- "Hash": 782401055,
- "Length": 4401
+ "Hash": -1837020036,
+ "Length": 4375
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_35",
- "Hash": 761994942,
- "Length": 4397
+ "Hash": -180026573,
+ "Length": 4371
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_40",
- "Hash": 171018381,
- "Length": 4393
+ "Hash": 1801119270,
+ "Length": 4367
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_45",
- "Hash": 1067284858,
- "Length": 4397
+ "Hash": -194737875,
+ "Length": 4371
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Recovery_50",
- "Hash": 947482159,
- "Length": 4389
+ "Hash": 1793870158,
+ "Length": 4363
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rectified_Reticle_A",
- "Hash": 1103824328,
- "Length": 3413
+ "Hash": -950496935,
+ "Length": 3387
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rectified_Reticle_B",
- "Hash": -2138837401,
- "Length": 4634
+ "Hash": 200732954,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rectified_Reticle_C",
- "Hash": 1077649510,
- "Length": 3521
+ "Hash": -814942527,
+ "Length": 3495
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_A",
- "Hash": -1180980063,
- "Length": 15292
+ "Hash": -689175906,
+ "Length": 15266
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_B",
- "Hash": -326797681,
- "Length": 15278
+ "Hash": 1705944568,
+ "Length": 15252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_C",
- "Hash": -519669277,
- "Length": 4551
+ "Hash": -696425392,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_D",
- "Hash": 1258618825,
- "Length": 16526
+ "Hash": 1480212902,
+ "Length": 16500
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_E",
- "Hash": -729312918,
- "Length": 14056
+ "Hash": -2065130633,
+ "Length": 14030
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Red_Fortune_F",
- "Hash": 1010743650,
- "Length": 3294
+ "Hash": -1471696769,
+ "Length": 3268
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Regenerative_Tissue_A",
- "Hash": -2020134140,
- "Length": 7900
+ "Hash": 52364435,
+ "Length": 7874
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Regenerative_Tissue_B",
- "Hash": -1492926568,
- "Length": 4608
+ "Hash": -323640139,
+ "Length": 4582
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Regenerative_Tissue_C",
- "Hash": 170031683,
- "Length": 7893
+ "Hash": 1426606478,
+ "Length": 7867
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Regenerative_Tissue_D",
- "Hash": -855530038,
- "Length": 9107
+ "Hash": -833841419,
+ "Length": 9081
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Regenerative_Tissue_E",
- "Hash": -315582584,
- "Length": 3553
+ "Hash": -1904414231,
+ "Length": 3527
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_10",
- "Hash": 1695845764,
- "Length": 10615
+ "Hash": 1483347555,
+ "Length": 10589
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage",
- "Hash": -2081585565,
- "Length": 10594
+ "Hash": 981981786,
+ "Length": 10568
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_15",
- "Hash": -591566893,
- "Length": 10631
+ "Hash": -862923444,
+ "Length": 10605
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_20",
- "Hash": -443372288,
- "Length": 10623
+ "Hash": -810753823,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_25",
- "Hash": 1014939221,
- "Length": 10639
+ "Hash": 129598100,
+ "Length": 10613
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_30",
- "Hash": 1162596542,
- "Length": 10623
+ "Hash": 284987491,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_35",
- "Hash": -1907593605,
- "Length": 10623
+ "Hash": -842410958,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_40",
- "Hash": 1652583012,
- "Length": 10623
+ "Hash": -2058185395,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_45",
- "Hash": 967233223,
- "Length": 10623
+ "Hash": -1640783292,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Res_Damage_50",
- "Hash": -1849940892,
- "Length": 10623
+ "Hash": -1795682483,
+ "Length": 10597
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rooting_Grasp_A",
- "Hash": 1905636690,
- "Length": 4560
+ "Hash": 1115147457,
+ "Length": 4534
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rooting_Grasp_B",
- "Hash": 2091170416,
- "Length": 4627
+ "Hash": -1782876553,
+ "Length": 4601
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rooting_Grasp_C",
- "Hash": 1691788433,
- "Length": 4547
+ "Hash": 1951330106,
+ "Length": 4521
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rooting_Grasp_D",
- "Hash": -460851927,
- "Length": 4550
+ "Hash": 579615298,
+ "Length": 4524
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rooting_Grasp_E",
- "Hash": -1016514528,
- "Length": 5744
+ "Hash": 1583779121,
+ "Length": 5718
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_A",
- "Hash": 1400933319,
- "Length": 4528
+ "Hash": -375626624,
+ "Length": 4502
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_B",
- "Hash": 848535502,
- "Length": 4554
+ "Hash": 682501397,
+ "Length": 4528
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_C",
- "Hash": 9015318,
- "Length": 4515
+ "Hash": -964139217,
+ "Length": 4489
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_D",
- "Hash": 727190630,
- "Length": 4477
+ "Hash": -1536188065,
+ "Length": 4451
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_E",
- "Hash": 382093957,
- "Length": 5677
+ "Hash": -267863650,
+ "Length": 5651
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Rope_A_Dope_F",
- "Hash": -761670342,
- "Length": 4492
+ "Hash": -1532468647,
+ "Length": 4466
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ruin_A",
- "Hash": -1842794609,
- "Length": 11677
+ "Hash": 266426444,
+ "Length": 11651
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ruin_B",
- "Hash": 1866613297,
- "Length": 11721
+ "Hash": -311959816,
+ "Length": 11695
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ruin_C",
- "Hash": -1638376841,
- "Length": 11702
+ "Hash": -889897902,
+ "Length": 11676
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ruin_D",
- "Hash": -903610106,
- "Length": 5603
+ "Hash": 940760199,
+ "Length": 5577
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Ruin_E",
- "Hash": -496440768,
- "Length": 12867
+ "Hash": -2002770295,
+ "Length": 12841
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_10",
- "Hash": -490322437,
- "Length": 3219
+ "Hash": 1836570592,
+ "Length": 3193
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run",
- "Hash": -1133735549,
- "Length": 3205
+ "Hash": -1553109470,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_15",
- "Hash": 272090569,
- "Length": 3226
+ "Hash": 1220602482,
+ "Length": 3200
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_20",
- "Hash": -1022258381,
- "Length": 3219
+ "Hash": 1923439128,
+ "Length": 3193
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_25",
- "Hash": 250900037,
- "Length": 3221
+ "Hash": 1972710440,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_30",
- "Hash": -1133785278,
- "Length": 3225
+ "Hash": 23110963,
+ "Length": 3199
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_35",
- "Hash": 1344937966,
- "Length": 3223
+ "Hash": 143071603,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_40",
- "Hash": -572253985,
- "Length": 3221
+ "Hash": -661304434,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_45",
- "Hash": -990354033,
- "Length": 3223
+ "Hash": 1583378300,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Run_50",
- "Hash": -227201577,
- "Length": 3219
+ "Hash": 482148094,
+ "Length": 3193
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Salvo_A",
- "Hash": -1686683749,
- "Length": 11705
+ "Hash": 1799931538,
+ "Length": 11679
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Salvo_B",
- "Hash": 1435856940,
- "Length": 12931
+ "Hash": 1675778929,
+ "Length": 12905
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Salvo_C",
- "Hash": -1528372227,
- "Length": 14013
+ "Hash": -1607736286,
+ "Length": 13987
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_A",
- "Hash": 1630373348,
- "Length": 12043
+ "Hash": 1938717151,
+ "Length": 12017
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_B",
- "Hash": 1013819852,
- "Length": 12087
+ "Hash": 41067797,
+ "Length": 12061
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_C",
- "Hash": -200221300,
- "Length": 12068
+ "Hash": 911188943,
+ "Length": 12042
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_D",
- "Hash": -1783763135,
- "Length": 4602
+ "Hash": -1943818838,
+ "Length": 4576
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_E",
- "Hash": 680935693,
- "Length": 13262
+ "Hash": -884407822,
+ "Length": 13236
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sciroccos_Dervish_F",
- "Hash": 1116896470,
- "Length": 4570
+ "Hash": 1445409681,
+ "Length": 4544
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_A",
- "Hash": -1933258368,
- "Length": 15292
+ "Hash": -775281971,
+ "Length": 15266
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_B",
- "Hash": -1250037470,
- "Length": 15278
+ "Hash": 822595059,
+ "Length": 15252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_C",
- "Hash": 1081191034,
- "Length": 4551
+ "Hash": 1334474791,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_D",
- "Hash": -951972685,
- "Length": 16526
+ "Hash": -1624249580,
+ "Length": 16500
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_E",
- "Hash": -619468300,
- "Length": 14056
+ "Hash": -2090810843,
+ "Length": 14030
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Serendipity_F",
- "Hash": 563332786,
- "Length": 3327
+ "Hash": -2138014595,
+ "Length": 3301
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_A",
- "Hash": -1063452667,
- "Length": 3609
+ "Hash": -1539113924,
+ "Length": 3583
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_B",
- "Hash": -1650220404,
- "Length": 4804
+ "Hash": 68834517,
+ "Length": 4778
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_C",
- "Hash": -354898383,
- "Length": 4754
+ "Hash": -1421187248,
+ "Length": 4728
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_D",
- "Hash": 213021076,
- "Length": 6036
+ "Hash": -2116166187,
+ "Length": 6010
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_E",
- "Hash": -1100385676,
- "Length": 5972
+ "Hash": -1899447263,
+ "Length": 5946
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Breaker_F",
- "Hash": -1844997892,
- "Length": 4540
+ "Hash": -2079898335,
+ "Length": 4514
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_A",
- "Hash": -2091724422,
- "Length": 15549
+ "Hash": 443182105,
+ "Length": 15523
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_B",
- "Hash": 1891806795,
- "Length": 15535
+ "Hash": 323124992,
+ "Length": 15509
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_C",
- "Hash": -524217435,
- "Length": 5065
+ "Hash": -1179884536,
+ "Length": 5039
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_D",
- "Hash": 1454731411,
- "Length": 17040
+ "Hash": -197279902,
+ "Length": 17014
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_E",
- "Hash": 1098520122,
- "Length": 14312
+ "Hash": -193734103,
+ "Length": 14286
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Shield_Wall_F",
- "Hash": -1642021576,
- "Length": 5130
+ "Hash": -856637199,
+ "Length": 5104
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_A",
- "Hash": -994129813,
- "Length": 3591
+ "Hash": 2058991342,
+ "Length": 3565
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_B",
- "Hash": 688095407,
- "Length": 4792
+ "Hash": 426157948,
+ "Length": 4766
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_C",
- "Hash": -1772813712,
- "Length": 4751
+ "Hash": -500739633,
+ "Length": 4725
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_D",
- "Hash": -1919523043,
- "Length": 6020
+ "Hash": 1135368234,
+ "Length": 5994
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_E",
- "Hash": 191023043,
- "Length": 5969
+ "Hash": -187902658,
+ "Length": 5943
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Siphon_Insight_F",
- "Hash": 190354490,
- "Length": 3704
+ "Hash": -1818641445,
+ "Length": 3678
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_10",
- "Hash": 1453344009,
- "Length": 3255
+ "Hash": -1811538972,
+ "Length": 3229
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep",
- "Hash": 140775367,
- "Length": 3241
+ "Hash": 407884568,
+ "Length": 3215
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_15",
- "Hash": -167753384,
- "Length": 3262
+ "Hash": 1080153487,
+ "Length": 3236
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_20",
- "Hash": 1137291064,
- "Length": 3255
+ "Hash": -1279426893,
+ "Length": 3229
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_25",
- "Hash": -832031594,
- "Length": 3257
+ "Hash": 598693659,
+ "Length": 3231
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_30",
- "Hash": 311876579,
- "Length": 3261
+ "Hash": -2011240438,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_35",
- "Hash": 1839598293,
- "Length": 3259
+ "Hash": -647906388,
+ "Length": 3233
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_40",
- "Hash": -784292166,
- "Length": 3257
+ "Hash": 1350938687,
+ "Length": 3231
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_45",
- "Hash": 1472869946,
- "Length": 3259
+ "Hash": -962744951,
+ "Length": 3233
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sleep_50",
- "Hash": -850464221,
- "Length": 3255
+ "Hash": 1739346246,
+ "Length": 3229
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Smashing_Haymaker_A",
- "Hash": 1614809272,
- "Length": 12041
+ "Hash": -303798221,
+ "Length": 12015
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Smashing_Haymaker_B",
- "Hash": 73721914,
- "Length": 12085
+ "Hash": 1262166637,
+ "Length": 12059
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Smashing_Haymaker_C",
- "Hash": -809661416,
- "Length": 12068
+ "Hash": 453145779,
+ "Length": 12042
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Smashing_Haymaker_D",
- "Hash": 1987460213,
- "Length": 13267
+ "Hash": -462124866,
+ "Length": 13241
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare",
- "Hash": 325743112,
- "Length": 5275
+ "Hash": -1847159639,
+ "Length": 5249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_10",
- "Hash": -584640188,
- "Length": 5275
+ "Hash": 1006952427,
+ "Length": 5249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_15",
- "Hash": 29706037,
- "Length": 5296
+ "Hash": -434132490,
+ "Length": 5270
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_20",
- "Hash": -1633332607,
- "Length": 5275
+ "Hash": 1404730566,
+ "Length": 5249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_25",
- "Hash": 1272729649,
- "Length": 5281
+ "Hash": -1389934936,
+ "Length": 5255
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_30",
- "Hash": 866934147,
- "Length": 5293
+ "Hash": -1837366406,
+ "Length": 5267
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_35",
- "Hash": 468836877,
- "Length": 5287
+ "Hash": -1090726388,
+ "Length": 5261
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_40",
- "Hash": -578240206,
- "Length": 5281
+ "Hash": -1497139133,
+ "Length": 5255
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_45",
- "Hash": 1221893190,
- "Length": 5287
+ "Hash": 1043893541,
+ "Length": 5261
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Snare_50",
- "Hash": -650729986,
- "Length": 5275
+ "Hash": -1173103985,
+ "Length": 5249
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soaring_A",
- "Hash": -570665244,
- "Length": 3248
+ "Hash": 2054522153,
+ "Length": 3222
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soaring_B",
- "Hash": 1541387854,
- "Length": 3278
+ "Hash": -668589933,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soaring_C",
- "Hash": -1688004884,
- "Length": 4474
+ "Hash": 970847413,
+ "Length": 4448
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_A",
- "Hash": 1999015234,
- "Length": 11072
+ "Hash": -1212383657,
+ "Length": 11046
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_B",
- "Hash": 1594885087,
- "Length": 12322
+ "Hash": 1090094872,
+ "Length": 12296
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_C",
- "Hash": -193504937,
- "Length": 13485
+ "Hash": 852033362,
+ "Length": 13459
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_D",
- "Hash": 1650454102,
- "Length": 4776
+ "Hash": -1080472823,
+ "Length": 4750
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_E",
- "Hash": -537108740,
- "Length": 12340
+ "Hash": -829071081,
+ "Length": 12314
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Soulbound_Allegiance_F",
- "Hash": 2058041292,
- "Length": 3792
+ "Hash": 1591286423,
+ "Length": 3766
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_A",
- "Hash": 632606039,
- "Length": 11985
+ "Hash": -35443784,
+ "Length": 11959
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_B",
- "Hash": -831876901,
- "Length": 12029
+ "Hash": 2061417412,
+ "Length": 12003
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_C",
- "Hash": -669092479,
- "Length": 4588
+ "Hash": 1356112132,
+ "Length": 4562
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_D",
- "Hash": 1080470325,
- "Length": 13200
+ "Hash": 982075906,
+ "Length": 13174
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_E",
- "Hash": 390013680,
- "Length": 3362
+ "Hash": -1408653271,
+ "Length": 3336
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sovereign_Right_F",
- "Hash": 620730114,
- "Length": 3490
+ "Hash": -1685356825,
+ "Length": 3464
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Springfoot_A",
- "Hash": 366267239,
- "Length": 4342
+ "Hash": -922886582,
+ "Length": 4316
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Springfoot_B",
- "Hash": 1595122206,
- "Length": 3307
+ "Hash": -2030342427,
+ "Length": 3281
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Springfoot_C",
- "Hash": 1895963474,
- "Length": 5576
+ "Hash": -1396959227,
+ "Length": 5550
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stagger_A",
- "Hash": 233583881,
- "Length": 4472
+ "Hash": 811204452,
+ "Length": 4446
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stagger_B",
- "Hash": 95787278,
- "Length": 4498
+ "Hash": -949987685,
+ "Length": 4472
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stagger_C",
- "Hash": -70039378,
- "Length": 4459
+ "Hash": 1487574529,
+ "Length": 4433
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stagger_D",
- "Hash": 1658594937,
- "Length": 4421
+ "Hash": -623303968,
+ "Length": 4395
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stagger_E",
- "Hash": 39924234,
- "Length": 5613
+ "Hash": 1579472915,
+ "Length": 5587
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Steadfast_Protection_A",
- "Hash": -1060381195,
- "Length": 12098
+ "Hash": 2110397076,
+ "Length": 12072
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Steadfast_Protection_B",
- "Hash": -1724563359,
- "Length": 12302
+ "Hash": -1818634092,
+ "Length": 12276
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Steadfast_Protection_C",
- "Hash": 1772770987,
- "Length": 3322
+ "Hash": 1675281866,
+ "Length": 3296
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_A",
- "Hash": -1859929940,
- "Length": 12181
+ "Hash": 737007019,
+ "Length": 12155
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_B",
- "Hash": 63825528,
- "Length": 12225
+ "Hash": 1817504957,
+ "Length": 12199
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_C",
- "Hash": 1351334777,
- "Length": 5870
+ "Hash": -1423080910,
+ "Length": 5844
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_D",
- "Hash": 1164797721,
- "Length": 13426
+ "Hash": 2095990232,
+ "Length": 13400
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_E",
- "Hash": -1573785510,
- "Length": 13397
+ "Hash": -1050736957,
+ "Length": 13371
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Sting_of_the_Manticore_F",
- "Hash": -2124316182,
- "Length": 4634
+ "Hash": -759906051,
+ "Length": 4608
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_10",
- "Hash": -1752770793,
- "Length": 3261
+ "Hash": 161951968,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun",
- "Hash": 899330197,
- "Length": 3247
+ "Hash": -1347914206,
+ "Length": 3221
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_15",
- "Hash": -1944139224,
- "Length": 3268
+ "Hash": -1445239683,
+ "Length": 3242
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_20",
- "Hash": 517297463,
- "Length": 3261
+ "Hash": 1686685548,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_25",
- "Hash": -1315150129,
- "Length": 3263
+ "Hash": -988995562,
+ "Length": 3237
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_30",
- "Hash": -1586217478,
- "Length": 3267
+ "Hash": -1212695793,
+ "Length": 3241
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_35",
- "Hash": 30847920,
- "Length": 3265
+ "Hash": -413420215,
+ "Length": 3239
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_40",
- "Hash": 685773335,
- "Length": 3263
+ "Hash": 900271884,
+ "Length": 3237
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_45",
- "Hash": -774627551,
- "Length": 3265
+ "Hash": -1792280554,
+ "Length": 3239
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stun_50",
- "Hash": -823440997,
- "Length": 3261
+ "Hash": 1455359122,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_A",
- "Hash": 965865503,
- "Length": 4472
+ "Hash": -878916078,
+ "Length": 4446
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_B",
- "Hash": 1726852450,
- "Length": 4498
+ "Hash": 1321296957,
+ "Length": 4472
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_C",
- "Hash": -2069681908,
- "Length": 4459
+ "Hash": -788142025,
+ "Length": 4433
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_D",
- "Hash": 344996284,
- "Length": 4421
+ "Hash": 88680391,
+ "Length": 4395
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_E",
- "Hash": 758190445,
- "Length": 5613
+ "Hash": -1050810102,
+ "Length": 5587
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Stupefy_F",
- "Hash": -993196920,
- "Length": 3293
+ "Hash": -1287964549,
+ "Length": 3267
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt",
- "Hash": -1122736720,
- "Length": 3247
+ "Hash": -1034662675,
+ "Length": 3221
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_10",
- "Hash": -1180232036,
- "Length": 3261
+ "Hash": 868288783,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_15",
- "Hash": 798685289,
- "Length": 3268
+ "Hash": -129802280,
+ "Length": 3242
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_20",
- "Hash": 1238110789,
- "Length": 3261
+ "Hash": -1462526626,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_25",
- "Hash": 402297089,
- "Length": 3263
+ "Hash": -565313064,
+ "Length": 3237
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_30",
- "Hash": 1476379484,
- "Length": 3267
+ "Hash": -1908115175,
+ "Length": 3241
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_35",
- "Hash": 1829124078,
- "Length": 3265
+ "Hash": 1377739635,
+ "Length": 3239
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_40",
- "Hash": 1054124206,
- "Length": 3263
+ "Hash": 138478127,
+ "Length": 3237
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_45",
- "Hash": -1443133984,
- "Length": 3265
+ "Hash": 1794103193,
+ "Length": 3239
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Taunt_50",
- "Hash": -745647780,
- "Length": 3261
+ "Hash": 644666707,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_A",
- "Hash": -682196992,
- "Length": 6709
+ "Hash": 440126133,
+ "Length": 6683
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_B",
- "Hash": 1911888434,
- "Length": 14197
+ "Hash": -1289867295,
+ "Length": 14171
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_C",
- "Hash": -1094645684,
- "Length": 4610
+ "Hash": 868278019,
+ "Length": 4584
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_D",
- "Hash": 402961595,
- "Length": 6694
+ "Hash": 2135020750,
+ "Length": 6668
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_E",
- "Hash": 1869940080,
- "Length": 7997
+ "Hash": -397510917,
+ "Length": 7971
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempered_Readiness_F",
- "Hash": 611423349,
- "Length": 15356
+ "Hash": -1010587692,
+ "Length": 15330
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempest_A",
- "Hash": 1163059126,
- "Length": 11761
+ "Hash": 1135367373,
+ "Length": 11735
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempest_B",
- "Hash": -1957320525,
- "Length": 11805
+ "Hash": 653883440,
+ "Length": 11779
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempest_C",
- "Hash": 893357813,
- "Length": 11786
+ "Hash": 1892854356,
+ "Length": 11760
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Tempest_D",
- "Hash": 1933148005,
- "Length": 4428
+ "Hash": 423516130,
+ "Length": 4402
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_A",
- "Hash": -1592618674,
- "Length": 6808
+ "Hash": -469873967,
+ "Length": 6782
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_B",
- "Hash": 591382771,
- "Length": 8019
+ "Hash": -515258206,
+ "Length": 7993
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_C",
- "Hash": -814229751,
- "Length": 8015
+ "Hash": 953776794,
+ "Length": 7989
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_D",
- "Hash": 643006339,
- "Length": 9237
+ "Hash": 247285592,
+ "Length": 9211
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_E",
- "Hash": 1472455487,
- "Length": 5961
+ "Hash": 314237658,
+ "Length": 5935
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Theft_of_Essence_F",
- "Hash": -6980349,
- "Length": 3678
+ "Hash": -1800109504,
+ "Length": 3652
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_A",
- "Hash": 201273687,
- "Length": 11929
+ "Hash": -559107044,
+ "Length": 11903
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_B",
- "Hash": 1857999188,
- "Length": 11973
+ "Hash": 1832419455,
+ "Length": 11947
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_C",
- "Hash": 658477426,
- "Length": 11954
+ "Hash": -1860550095,
+ "Length": 11928
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_D",
- "Hash": 50507912,
- "Length": 13129
+ "Hash": -1304482603,
+ "Length": 13103
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_E",
- "Hash": -314633353,
- "Length": 13140
+ "Hash": -230110974,
+ "Length": 13114
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Thunderstrike_F",
- "Hash": -1293681995,
- "Length": 13149
+ "Hash": -645755690,
+ "Length": 13123
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_TimeSpace_Manipulation_A",
- "Hash": -864239578,
- "Length": 3435
+ "Hash": -537471891,
+ "Length": 3409
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_TimeSpace_Manipulation_B",
- "Hash": 243363098,
- "Length": 3413
+ "Hash": -1101382241,
+ "Length": 3387
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_TimeSpace_Manipulation_C",
- "Hash": 409899675,
- "Length": 6885
+ "Hash": -358744872,
+ "Length": 6859
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_A",
- "Hash": 1590323235,
- "Length": 11986
+ "Hash": -356930168,
+ "Length": 11960
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_B",
- "Hash": -76789053,
- "Length": 11972
+ "Hash": 915767208,
+ "Length": 11946
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_C",
- "Hash": -1939791769,
- "Length": 4604
+ "Hash": 298802582,
+ "Length": 4578
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_D",
- "Hash": -1826749300,
- "Length": 13266
+ "Hash": -350895407,
+ "Length": 13240
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_E",
- "Hash": 2051376563,
- "Length": 10766
+ "Hash": -1384375874,
+ "Length": 10740
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Titanium_Coating_F",
- "Hash": -588132958,
- "Length": 3398
+ "Hash": 545127981,
+ "Length": 3372
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_10",
- "Hash": 1844743525,
- "Length": 3277
+ "Hash": -711592012,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff",
- "Hash": 1061077093,
- "Length": 3256
+ "Hash": 628490660,
+ "Length": 3230
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_15",
- "Hash": 55710713,
- "Length": 3279
+ "Hash": -1014408652,
+ "Length": 3253
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_20",
- "Hash": -127259265,
- "Length": 3278
+ "Hash": -1148188042,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_25",
- "Hash": -1167121317,
- "Length": 3280
+ "Hash": 1114481066,
+ "Length": 3254
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_30",
- "Hash": -109955698,
- "Length": 3278
+ "Hash": -1571183925,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_35",
- "Hash": 383867910,
- "Length": 3278
+ "Hash": -1985062637,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_40",
- "Hash": -802211866,
- "Length": 3278
+ "Hash": 741258621,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_45",
- "Hash": -617466653,
- "Length": 3278
+ "Hash": -1005381228,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_Buff_50",
- "Hash": 1337024002,
- "Length": 3278
+ "Hash": -1066859881,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff",
- "Hash": 1000346540,
- "Length": 3286
+ "Hash": -2115592801,
+ "Length": 3260
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_10",
- "Hash": 2116852286,
- "Length": 3307
+ "Hash": 1826229519,
+ "Length": 3281
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_15",
- "Hash": 66887680,
- "Length": 3309
+ "Hash": 810120427,
+ "Length": 3283
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_20",
- "Hash": -1800600262,
- "Length": 3308
+ "Hash": 728702249,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_25",
- "Hash": -1412618274,
- "Length": 3310
+ "Hash": 1046518901,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_30",
- "Hash": 1350324681,
- "Length": 3308
+ "Hash": 995666430,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_35",
- "Hash": 225992267,
- "Length": 3308
+ "Hash": -1746644996,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_40",
- "Hash": -541903103,
- "Length": 3308
+ "Hash": 433502274,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_45",
- "Hash": 54761640,
- "Length": 3308
+ "Hash": 867010607,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_ToHit_DeBuff_50",
- "Hash": -1603937549,
- "Length": 3308
+ "Hash": -1117485818,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_A",
- "Hash": -374334762,
- "Length": 11957
+ "Hash": 393432813,
+ "Length": 11931
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_B",
- "Hash": -1968045664,
- "Length": 12001
+ "Hash": -10909247,
+ "Length": 11975
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_C",
- "Hash": -1420120886,
- "Length": 11982
+ "Hash": 1906721877,
+ "Length": 11956
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_D",
- "Hash": 482304440,
- "Length": 13170
+ "Hash": -278649321,
+ "Length": 13144
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_E",
- "Hash": -1244430080,
- "Length": 13177
+ "Hash": 91990321,
+ "Length": 13151
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Death_F",
- "Hash": -1344873229,
- "Length": 4551
+ "Hash": -540988500,
+ "Length": 4525
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_A",
- "Hash": -266596883,
- "Length": 3457
+ "Hash": -1706315154,
+ "Length": 3431
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_B",
- "Hash": 507603363,
- "Length": 4674
+ "Hash": -2001227162,
+ "Length": 4648
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_C",
- "Hash": 1167812353,
- "Length": 5897
+ "Hash": -1401940776,
+ "Length": 5871
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_D",
- "Hash": -855871004,
- "Length": 4619
+ "Hash": -2822235,
+ "Length": 4593
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_E",
- "Hash": 38213727,
- "Length": 4689
+ "Hash": -1734150662,
+ "Length": 4663
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_Lady_Grey_F",
- "Hash": 1028351622,
- "Length": 3541
+ "Hash": 1019733275,
+ "Length": 3515
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_A",
- "Hash": 225793306,
- "Length": 6862
+ "Hash": -1652912881,
+ "Length": 6836
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_B",
- "Hash": -370421273,
- "Length": 8079
+ "Hash": -877701580,
+ "Length": 8053
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_C",
- "Hash": 1510402767,
- "Length": 8075
+ "Hash": -326539558,
+ "Length": 8049
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_D",
- "Hash": -919220705,
- "Length": 9303
+ "Hash": 1247493716,
+ "Length": 9277
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_E",
- "Hash": -293290234,
- "Length": 6007
+ "Hash": -904595351,
+ "Length": 5981
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Touch_of_the_Nictus_F",
- "Hash": 20985638,
- "Length": 3570
+ "Hash": 402225015,
+ "Length": 3544
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_A",
- "Hash": -2100474716,
- "Length": 4630
+ "Hash": -1488602009,
+ "Length": 4604
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_B",
- "Hash": 568015315,
- "Length": 4702
+ "Hash": -853892958,
+ "Length": 4676
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_C",
- "Hash": -1212449245,
- "Length": 4617
+ "Hash": -974144644,
+ "Length": 4591
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_D",
- "Hash": 271991703,
- "Length": 4635
+ "Hash": 1238456436,
+ "Length": 4609
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_E",
- "Hash": -1364437890,
- "Length": 5824
+ "Hash": 1939217635,
+ "Length": 5798
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Trap_of_the_Hunter_F",
- "Hash": -1164290687,
- "Length": 4586
+ "Hash": 1286841902,
+ "Length": 4560
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triage_A",
- "Hash": 1282684727,
- "Length": 7640
+ "Hash": 401142022,
+ "Length": 7614
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triage_B",
- "Hash": -972870441,
- "Length": 4426
+ "Hash": -1677185440,
+ "Length": 4400
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triage_C",
- "Hash": 1508828373,
- "Length": 7631
+ "Hash": -1097032256,
+ "Length": 7605
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triage_D",
- "Hash": 936727965,
- "Length": 8819
+ "Hash": 1238919086,
+ "Length": 8793
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triumphant_Insult_A",
- "Hash": 275814832,
- "Length": 3402
+ "Hash": 1593169835,
+ "Length": 3376
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triumphant_Insult_B",
- "Hash": -1621647808,
- "Length": 4639
+ "Hash": -2130084451,
+ "Length": 4613
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Triumphant_Insult_C",
- "Hash": -1490225112,
- "Length": 4642
+ "Hash": 366397821,
+ "Length": 4616
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbounded_Leap_A",
- "Hash": 1568098334,
- "Length": 3355
+ "Hash": -945890615,
+ "Length": 3329
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbounded_Leap_B",
- "Hash": 1502725565,
- "Length": 4398
+ "Hash": -385461120,
+ "Length": 4372
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbounded_Leap_C",
- "Hash": 708674851,
- "Length": 6795
+ "Hash": 1848147448,
+ "Length": 6769
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_A",
- "Hash": 67913879,
- "Length": 3626
+ "Hash": -142359394,
+ "Length": 3600
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_B",
- "Hash": -1884652327,
- "Length": 4879
+ "Hash": 1734524940,
+ "Length": 4853
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_C",
- "Hash": -1316804322,
- "Length": 6040
+ "Hash": 945756475,
+ "Length": 6014
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_D",
- "Hash": 1757927598,
- "Length": 4849
+ "Hash": -2044245669,
+ "Length": 4823
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_E",
- "Hash": -448725124,
- "Length": 4871
+ "Hash": 2050953401,
+ "Length": 4845
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Constraint_F",
- "Hash": 1350702282,
- "Length": 4795
+ "Hash": 1376028705,
+ "Length": 4769
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_A",
- "Hash": 1541298657,
- "Length": 10835
+ "Hash": -1302842834,
+ "Length": 10809
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_B",
- "Hash": 612761470,
- "Length": 12127
+ "Hash": 1630171531,
+ "Length": 12101
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_C",
- "Hash": -1869815738,
- "Length": 4610
+ "Hash": 164101519,
+ "Length": 4584
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_D",
- "Hash": 1153148746,
- "Length": 12113
+ "Hash": 1275771887,
+ "Length": 12087
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_E",
- "Hash": 64217474,
- "Length": 13298
+ "Hash": -1701875483,
+ "Length": 13272
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unbreakable_Guard_F",
- "Hash": -1508908456,
- "Length": 3480
+ "Hash": 1788760389,
+ "Length": 3454
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_A",
- "Hash": 878675534,
- "Length": 3469
+ "Hash": -738146143,
+ "Length": 3443
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_B",
- "Hash": 1720370530,
- "Length": 4688
+ "Hash": -627658517,
+ "Length": 4662
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_C",
- "Hash": 947324344,
- "Length": 5913
+ "Hash": 850204409,
+ "Length": 5887
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_D",
- "Hash": -1927898183,
- "Length": 4633
+ "Hash": -768724522,
+ "Length": 4607
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_E",
- "Hash": 1064058518,
- "Length": 4703
+ "Hash": -192240737,
+ "Length": 4677
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Undermined_Defenses_F",
- "Hash": 1318630389,
- "Length": 3416
+ "Hash": 1654627732,
+ "Length": 3390
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unquestioning_Loyalty_A",
- "Hash": -995640503,
- "Length": 12153
+ "Hash": -1914623820,
+ "Length": 12127
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unquestioning_Loyalty_B",
- "Hash": 1197747333,
- "Length": 12197
+ "Hash": 301257960,
+ "Length": 12171
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unquestioning_Loyalty_C",
- "Hash": -1465435241,
- "Length": 4672
+ "Hash": -1155166286,
+ "Length": 4646
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unquestioning_Loyalty_D",
- "Hash": -1987643793,
- "Length": 13380
+ "Hash": -671650300,
+ "Length": 13354
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_A",
- "Hash": -123003021,
- "Length": 4622
+ "Hash": -1501449468,
+ "Length": 4596
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_B",
- "Hash": 992356241,
- "Length": 4671
+ "Hash": 1665485036,
+ "Length": 4645
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_C",
- "Hash": -1743339486,
- "Length": 4609
+ "Hash": 146765455,
+ "Length": 4583
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_D",
- "Hash": 1261142559,
- "Length": 4571
+ "Hash": 1341644106,
+ "Length": 4545
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_E",
- "Hash": -1090881660,
- "Length": 5785
+ "Hash": 510975119,
+ "Length": 5759
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Unspeakable_Terror_F",
- "Hash": -242868840,
- "Length": 4638
+ "Hash": 582816139,
+ "Length": 4612
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_Fire_A",
- "Hash": -141658884,
- "Length": 11873
+ "Hash": 1890543983,
+ "Length": 11847
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_Fire_B",
- "Hash": 1038406400,
- "Length": 11917
+ "Hash": 957049211,
+ "Length": 11891
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_Fire_C",
- "Hash": -942590612,
- "Length": 11898
+ "Hash": 782297695,
+ "Length": 11872
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_of_Velocity_A",
- "Hash": 516344581,
- "Length": 13211
+ "Hash": -978180922,
+ "Length": 13185
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_of_Velocity_B",
- "Hash": 2031295666,
- "Length": 4632
+ "Hash": -529149207,
+ "Length": 4606
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Volley_of_Velocity_C",
- "Hash": -953701974,
- "Length": 4682
+ "Hash": 575063471,
+ "Length": 4656
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Winters_Gift_B",
- "Hash": -2110950151,
- "Length": 9742
+ "Hash": 1787090300,
+ "Length": 9716
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Winters_Gift_A",
- "Hash": 1819442500,
- "Length": 8498
+ "Hash": -630518307,
+ "Length": 8472
},
{
"Archetype": "",
"Fullname": "Boosts.Crafted_Winters_Gift_C",
- "Hash": 1586731189,
- "Length": 3629
+ "Hash": 212584874,
+ "Length": 3603
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Accuracy",
- "Hash": -1647631863,
- "Length": 3240
+ "Hash": 590797428,
+ "Length": 3214
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Clockwork_Efficiency",
- "Hash": 364240245,
- "Length": 14798
+ "Hash": 833331536,
+ "Length": 14772
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Confuse",
- "Hash": 913642279,
- "Length": 3315
+ "Hash": -1944197280,
+ "Length": 3289
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Damage",
- "Hash": -666210691,
- "Length": 10426
+ "Hash": -687381578,
+ "Length": 10400
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Defense_Buff",
- "Hash": -1361730380,
- "Length": 13936
+ "Hash": -62520783,
+ "Length": 13910
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Defense_DeBuff",
- "Hash": -355295071,
- "Length": 14063
+ "Hash": -774356762,
+ "Length": 14037
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Drain_Endurance",
- "Hash": -1060501487,
- "Length": 4417
+ "Hash": -610510484,
+ "Length": 4391
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Recovery",
- "Hash": -1245457942,
- "Length": 4340
+ "Hash": 1848791483,
+ "Length": 4314
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Endurance_Discount",
- "Hash": 1771180861,
- "Length": 3362
+ "Hash": 1840139526,
+ "Length": 3336
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Fear",
- "Hash": -803906075,
- "Length": 4271
+ "Hash": -890810886,
+ "Length": 4245
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Fly",
- "Hash": 372255003,
- "Length": 3232
+ "Hash": 2018855332,
+ "Length": 3206
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Heal",
- "Hash": 1758401118,
- "Length": 6332
+ "Hash": -1907992911,
+ "Length": 6306
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Hold",
- "Hash": -1832233352,
- "Length": 3220
+ "Hash": -73371217,
+ "Length": 3194
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Immobilize",
- "Hash": 442963492,
- "Length": 3348
+ "Hash": -765653069,
+ "Length": 3322
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Intangible",
- "Hash": 1966008936,
- "Length": 5464
+ "Hash": 218189885,
+ "Length": 5438
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Interrupt",
- "Hash": 6439939,
- "Length": 3312
+ "Hash": -1087149320,
+ "Length": 3286
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Jump",
- "Hash": 73434872,
- "Length": 4191
+ "Hash": -1189653393,
+ "Length": 4165
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Knockback",
- "Hash": 1287800520,
- "Length": 4374
+ "Hash": 1597589407,
+ "Length": 4348
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Might_of_the_Empire",
- "Hash": -818438454,
- "Length": 13630
+ "Hash": -1311528245,
+ "Length": 13604
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Range",
- "Hash": -1621850071,
- "Length": 3152
+ "Hash": 1165164698,
+ "Length": 3126
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Cone",
- "Hash": -223116245,
- "Length": 3160
+ "Hash": 1331086174,
+ "Length": 3134
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Recharge",
- "Hash": 1694745351,
- "Length": 3289
+ "Hash": 1977229184,
+ "Length": 3263
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Res_Damage",
- "Hash": -1041716951,
- "Length": 10496
+ "Hash": -1715780838,
+ "Length": 10470
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Resistance_Tactics",
- "Hash": -209722800,
- "Length": 14744
+ "Hash": 990811223,
+ "Length": 14718
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Run",
- "Hash": -546920596,
- "Length": 3162
+ "Hash": 127089129,
+ "Length": 3136
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Sleep",
- "Hash": 54742425,
- "Length": 3205
+ "Hash": 1193494164,
+ "Length": 3179
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Snare",
- "Hash": 1930864866,
- "Length": 5265
+ "Hash": -200494007,
+ "Length": 5239
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Stun",
- "Hash": 599798270,
- "Length": 3227
+ "Hash": 1523234127,
+ "Length": 3201
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Syndicate_Techniques",
- "Hash": 986094590,
- "Length": 14800
+ "Hash": 487627213,
+ "Length": 14774
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Taunt",
- "Hash": 2118009228,
- "Length": 3277
+ "Hash": 1999633213,
+ "Length": 3251
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_ToHit_Buff",
- "Hash": 709168832,
- "Length": 3265
+ "Hash": 1181702153,
+ "Length": 3239
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_ToHit_DeBuff",
- "Hash": 1091155920,
- "Length": 3299
+ "Hash": -1236800223,
+ "Length": 3273
},
{
"Archetype": "",
"Fullname": "Boosts.Generic_Will_of_the_Seers",
- "Hash": -2095335456,
- "Length": 14704
+ "Hash": 125226431,
+ "Length": 14678
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Accuracy_Mez",
- "Hash": -354112922,
- "Length": 11309
+ "Hash": -117314171,
+ "Length": 11283
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Buff_Endurance_Discount",
- "Hash": -1193729995,
- "Length": 16819
+ "Hash": -803666606,
+ "Length": 16793
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Buff_Recharge",
- "Hash": -2005684322,
- "Length": 16449
+ "Hash": -2121155099,
+ "Length": 16423
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Damage_Accuracy",
- "Hash": 2073490693,
- "Length": 11998
+ "Hash": -1241202444,
+ "Length": 11972
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Damage_Mez",
- "Hash": -1027506418,
- "Length": 18552
+ "Hash": 798088965,
+ "Length": 18526
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Damage_Range",
- "Hash": 1465976007,
- "Length": 11836
+ "Hash": -1169531518,
+ "Length": 11810
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_DeBuff_Accuracy",
- "Hash": -1879645252,
- "Length": 16640
+ "Hash": -855165095,
+ "Length": 16614
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_DeBuff_Endurance_Discount",
- "Hash": 2097829271,
- "Length": 17025
+ "Hash": -1281484284,
+ "Length": 16999
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Heal_Endurance_Discount",
- "Hash": 55211019,
- "Length": 7996
+ "Hash": -2137268490,
+ "Length": 7970
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Res_Damage_Endurance_Discount",
- "Hash": 1460302711,
- "Length": 12313
+ "Hash": 1741393496,
+ "Length": 12287
},
{
"Archetype": "",
"Fullname": "Boosts.Hamidon_Travel_Endurance_Discount",
- "Hash": -1850052705,
- "Length": 8079
+ "Hash": -1990180476,
+ "Length": 8053
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Accuracy_Mez",
- "Hash": -2046629058,
- "Length": 11055
+ "Hash": -806930765,
+ "Length": 11029
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Buff_Endurance_Discount",
- "Hash": -455407173,
- "Length": 16625
+ "Hash": 537998382,
+ "Length": 16599
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Buff_Recharge",
- "Hash": 1971788845,
- "Length": 16292
+ "Hash": 2018806676,
+ "Length": 16266
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Damage_Accuracy",
- "Hash": -827310693,
- "Length": 11700
+ "Hash": 927522588,
+ "Length": 11674
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Damage_Mez",
- "Hash": 1193736914,
- "Length": 18207
+ "Hash": -2016289353,
+ "Length": 18181
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Damage_Range",
- "Hash": -595281323,
- "Length": 11617
+ "Hash": -1996500312,
+ "Length": 11591
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_DeBuff_Accuracy",
- "Hash": -204114738,
- "Length": 16306
+ "Hash": -913791359,
+ "Length": 16280
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_DeBuff_Endurance_Discount",
- "Hash": -1546386363,
- "Length": 16672
+ "Hash": -1287454282,
+ "Length": 16646
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Heal_Endurance_Discount",
- "Hash": 1194540561,
- "Length": 7759
+ "Hash": -313239234,
+ "Length": 7733
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Res_Damage_Endurance_Discount",
- "Hash": -628701741,
- "Length": 12184
+ "Hash": 727972640,
+ "Length": 12158
},
{
"Archetype": "",
"Fullname": "Boosts.Hydra_Travel_Endurance_Discount",
- "Hash": 1320001769,
- "Length": 7855
+ "Hash": -1919092796,
+ "Length": 7829
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Accuracy",
- "Hash": 1683805297,
- "Length": 3221
+ "Hash": -748995962,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Confuse",
- "Hash": 1347522142,
- "Length": 3280
+ "Hash": 1003862987,
+ "Length": 3254
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Damage",
- "Hash": 911506874,
- "Length": 10331
+ "Hash": 1379038163,
+ "Length": 10305
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Defense_Buff",
- "Hash": -1472902202,
- "Length": 13889
+ "Hash": -1694137065,
+ "Length": 13863
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Defense_DeBuff",
- "Hash": 441956925,
- "Length": 14082
+ "Hash": 1965265020,
+ "Length": 14056
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Drain_Endurance",
- "Hash": 316791841,
- "Length": 4363
+ "Hash": -1498993380,
+ "Length": 4337
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Recovery",
- "Hash": 1093328542,
- "Length": 4286
+ "Hash": -1879530191,
+ "Length": 4260
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Endurance_Discount",
- "Hash": -945643289,
- "Length": 3325
+ "Hash": -1708538572,
+ "Length": 3299
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Fear",
- "Hash": -684636030,
- "Length": 4273
+ "Hash": -1631594303,
+ "Length": 4247
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Fly",
- "Hash": -98937688,
- "Length": 3120
+ "Hash": -2126399047,
+ "Length": 3094
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Heal",
- "Hash": -734006571,
- "Length": 6320
+ "Hash": 733952612,
+ "Length": 6294
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Hold",
- "Hash": -564507871,
- "Length": 3151
+ "Hash": 683382448,
+ "Length": 3125
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Immobilize",
- "Hash": 326792447,
- "Length": 3389
+ "Hash": -2143201436,
+ "Length": 3363
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Intangible",
- "Hash": -506398645,
- "Length": 5447
+ "Hash": 714666358,
+ "Length": 5421
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Interrupt",
- "Hash": -148398186,
- "Length": 3241
+ "Hash": 968799677,
+ "Length": 3215
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Jump",
- "Hash": 1565698092,
- "Length": 4150
+ "Hash": 1770141491,
+ "Length": 4124
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Knockback",
- "Hash": 202031954,
- "Length": 4329
+ "Hash": 1909083363,
+ "Length": 4303
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Range",
- "Hash": -1830855016,
- "Length": 3131
+ "Hash": 767071911,
+ "Length": 3105
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Cone",
- "Hash": 1525307196,
- "Length": 3122
+ "Hash": -956174931,
+ "Length": 3096
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Recharge",
- "Hash": 1137711296,
- "Length": 3227
+ "Hash": -705292741,
+ "Length": 3201
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Res_Damage",
- "Hash": -394948038,
- "Length": 10427
+ "Hash": 34094985,
+ "Length": 10401
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Run",
- "Hash": -114343421,
- "Length": 3096
+ "Hash": -1687233732,
+ "Length": 3070
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Sleep",
- "Hash": 224649616,
- "Length": 3221
+ "Hash": 1975015319,
+ "Length": 3195
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Snare",
- "Hash": -1193247287,
- "Length": 5207
+ "Hash": 1078645742,
+ "Length": 5181
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Stun",
- "Hash": 1603053074,
- "Length": 3233
+ "Hash": -79817303,
+ "Length": 3207
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_Taunt",
- "Hash": -270321296,
- "Length": 3247
+ "Hash": -1034229327,
+ "Length": 3221
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_ToHit_Buff",
- "Hash": -1796471441,
- "Length": 3279
+ "Hash": 867628006,
+ "Length": 3253
},
{
"Archetype": "",
"Fullname": "Boosts.Magic_ToHit_DeBuff",
- "Hash": 747702412,
- "Length": 3238
+ "Hash": -691350079,
+ "Length": 3212
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Accuracy",
- "Hash": -847591587,
- "Length": 3240
+ "Hash": 63529242,
+ "Length": 3214
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Confuse",
- "Hash": -1819209497,
- "Length": 3279
+ "Hash": 1045174604,
+ "Length": 3253
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Damage",
- "Hash": 1242031943,
- "Length": 10476
+ "Hash": 2032537830,
+ "Length": 10450
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Defense_Buff",
- "Hash": -904900194,
- "Length": 13935
+ "Hash": 323303983,
+ "Length": 13909
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Defense_DeBuff",
- "Hash": -1221283563,
- "Length": 14122
+ "Hash": -1270508626,
+ "Length": 14096
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Drain_Endurance",
- "Hash": -625395885,
- "Length": 4483
+ "Hash": -284851242,
+ "Length": 4457
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Recovery",
- "Hash": -1467997393,
- "Length": 4406
+ "Hash": 1010534042,
+ "Length": 4380
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Endurance_Discount",
- "Hash": -280196216,
- "Length": 3432
+ "Hash": -1967189499,
+ "Length": 3406
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Fear",
- "Hash": 423403,
- "Length": 4393
+ "Hash": -1342205182,
+ "Length": 4367
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Fly",
- "Hash": -625850352,
- "Length": 3191
+ "Hash": -873872873,
+ "Length": 3165
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Heal",
- "Hash": -979915162,
- "Length": 6395
+ "Hash": 1379114905,
+ "Length": 6369
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Hold",
- "Hash": 1584486120,
- "Length": 3255
+ "Hash": 1660685803,
+ "Length": 3229
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Immobilize",
- "Hash": 824895451,
- "Length": 3412
+ "Hash": -2094305948,
+ "Length": 3386
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Intangible",
- "Hash": 856780538,
- "Length": 5529
+ "Hash": -398985589,
+ "Length": 5503
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Interrupt",
- "Hash": -219315898,
- "Length": 3360
+ "Hash": -773676015,
+ "Length": 3334
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Jump",
- "Hash": -1920068289,
- "Length": 4255
+ "Hash": -1287771632,
+ "Length": 4229
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Knockback",
- "Hash": -1522511636,
- "Length": 4348
+ "Hash": -1164084061,
+ "Length": 4322
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Accuracy",
- "Hash": -329930683,
- "Length": 3359
+ "Hash": -892513452,
+ "Length": 3333
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Confuse",
- "Hash": 1339620756,
- "Length": 3374
+ "Hash": -1682614767,
+ "Length": 3348
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Damage",
- "Hash": 764480262,
- "Length": 10506
+ "Hash": -1790688299,
+ "Length": 10480
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Defense_Buff",
- "Hash": 990731354,
- "Length": 14154
+ "Hash": -1069773959,
+ "Length": 14128
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Defense_DeBuff",
- "Hash": 2061188386,
- "Length": 14318
+ "Hash": 1675192829,
+ "Length": 14292
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Drain_Endurance",
- "Hash": -399768657,
- "Length": 4466
+ "Hash": -1414311216,
+ "Length": 4440
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Recovery",
- "Hash": 1199230058,
- "Length": 4389
+ "Hash": -1120229871,
+ "Length": 4363
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Endurance_Discount",
- "Hash": -1942800867,
- "Length": 3464
+ "Hash": 429441746,
+ "Length": 3438
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Fear",
- "Hash": 1211596245,
- "Length": 4321
+ "Hash": -661787068,
+ "Length": 4295
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Fly",
- "Hash": -1086605530,
- "Length": 3312
+ "Hash": -1898742025,
+ "Length": 3286
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Heal",
- "Hash": -32376891,
- "Length": 6413
+ "Hash": 907226710,
+ "Length": 6387
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Hold",
- "Hash": -1631826753,
- "Length": 3274
+ "Hash": 1428703226,
+ "Length": 3248
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Immobilize",
- "Hash": -490390500,
- "Length": 3402
+ "Hash": -1840197903,
+ "Length": 3376
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Intangible",
- "Hash": 75492378,
- "Length": 5514
+ "Hash": -680913333,
+ "Length": 5488
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Interrupt",
- "Hash": 327153403,
- "Length": 3354
+ "Hash": -1412095858,
+ "Length": 3328
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Jump",
- "Hash": 1939639575,
- "Length": 4279
+ "Hash": 1829522524,
+ "Length": 4253
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Knockback",
- "Hash": -689510293,
- "Length": 4447
+ "Hash": -1840625416,
+ "Length": 4421
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Range",
- "Hash": -419818908,
- "Length": 3220
+ "Hash": 336699433,
+ "Length": 3194
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Cone",
- "Hash": -308847054,
- "Length": 3211
+ "Hash": 1092207349,
+ "Length": 3185
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Recharge",
- "Hash": -553072202,
- "Length": 3337
+ "Hash": 1409444937,
+ "Length": 3311
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Res_Damage",
- "Hash": -1680754864,
- "Length": 9590
+ "Hash": -157419129,
+ "Length": 9564
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Run",
- "Hash": -1964931423,
- "Length": 3208
+ "Hash": -838367472,
+ "Length": 3182
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Sleep",
- "Hash": -1008826636,
- "Length": 3276
+ "Hash": -1489286687,
+ "Length": 3250
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Snare",
- "Hash": 1652391391,
- "Length": 5308
+ "Hash": -1847693730,
+ "Length": 5282
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Stun",
- "Hash": -299114395,
- "Length": 3310
+ "Hash": -1872810472,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_Taunt",
- "Hash": 292581308,
- "Length": 3372
+ "Hash": -1347361265,
+ "Length": 3346
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_ToHit_Buff",
- "Hash": 668125043,
- "Length": 3359
+ "Hash": 1074698072,
+ "Length": 3333
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Magic_ToHit_DeBuff",
- "Hash": 387335573,
- "Length": 3366
+ "Hash": -1992237208,
+ "Length": 3340
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Cone",
- "Hash": -411794535,
- "Length": 3198
+ "Hash": 815159910,
+ "Length": 3172
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Range",
- "Hash": 527102153,
- "Length": 3207
+ "Hash": 484225572,
+ "Length": 3181
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Recharge",
- "Hash": 1444935244,
- "Length": 3229
+ "Hash": 1016458607,
+ "Length": 3203
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Res_Damage",
- "Hash": 1754596970,
- "Length": 10487
+ "Hash": -1894833771,
+ "Length": 10461
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Run",
- "Hash": 1569793313,
- "Length": 3191
+ "Hash": 52768962,
+ "Length": 3165
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Accuracy",
- "Hash": -1946586575,
- "Length": 3349
+ "Hash": -1213812922,
+ "Length": 3323
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Confuse",
- "Hash": 1087384366,
- "Length": 3357
+ "Hash": 1352152407,
+ "Length": 3331
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Damage",
- "Hash": -1959988870,
- "Length": 10607
+ "Hash": 358876233,
+ "Length": 10581
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Defense_Buff",
- "Hash": -713277790,
- "Length": 14219
+ "Hash": 1856973847,
+ "Length": 14193
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Defense_DeBuff",
- "Hash": 827526620,
- "Length": 14338
+ "Hash": 671997313,
+ "Length": 14312
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Drain_Endurance",
- "Hash": 474296273,
- "Length": 4626
+ "Hash": 494826982,
+ "Length": 4600
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Recovery",
- "Hash": 494634432,
- "Length": 4549
+ "Hash": 272447123,
+ "Length": 4523
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Endurance_Discount",
- "Hash": -1995089548,
- "Length": 3513
+ "Hash": -777882373,
+ "Length": 3487
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Fear",
- "Hash": 173492454,
- "Length": 4360
+ "Hash": 571620407,
+ "Length": 4334
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Fly",
- "Hash": 136611056,
- "Length": 3275
+ "Hash": 328952645,
+ "Length": 3249
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Heal",
- "Hash": -630005240,
- "Length": 6513
+ "Hash": -1031014297,
+ "Length": 6487
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Hold",
- "Hash": 2066499835,
- "Length": 3401
+ "Hash": -979875884,
+ "Length": 3375
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Immobilize",
- "Hash": -1627012240,
- "Length": 3437
+ "Hash": 38883215,
+ "Length": 3411
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Intangible",
- "Hash": -164624949,
- "Length": 5594
+ "Hash": 817409338,
+ "Length": 5568
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Interrupt",
- "Hash": 540161358,
- "Length": 3427
+ "Hash": -334229459,
+ "Length": 3401
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Jump",
- "Hash": 632808081,
- "Length": 4327
+ "Hash": -1049364920,
+ "Length": 4301
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Knockback",
- "Hash": -901199925,
- "Length": 4474
+ "Hash": -1222321818,
+ "Length": 4448
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Cone",
- "Hash": -290595322,
- "Length": 3337
+ "Hash": -1835118751,
+ "Length": 3311
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Range",
- "Hash": -1967022728,
- "Length": 3346
+ "Hash": -2021042217,
+ "Length": 3320
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Recharge",
- "Hash": 1217772169,
- "Length": 3383
+ "Hash": 851470068,
+ "Length": 3357
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Res_Damage",
- "Hash": -953173565,
- "Length": 10702
+ "Hash": -35090886,
+ "Length": 10676
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Run",
- "Hash": -709040754,
- "Length": 3325
+ "Hash": 931239463,
+ "Length": 3299
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Sleep",
- "Hash": 1072540668,
- "Length": 3335
+ "Hash": -425305105,
+ "Length": 3309
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Snare",
- "Hash": -267817981,
- "Length": 5394
+ "Hash": -1022719180,
+ "Length": 5368
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Stun",
- "Hash": 69318029,
- "Length": 3376
+ "Hash": -845402144,
+ "Length": 3350
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_Taunt",
- "Hash": 1145032425,
- "Length": 3435
+ "Hash": 1981382582,
+ "Length": 3409
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_ToHit_Buff",
- "Hash": 1361016016,
- "Length": 3364
+ "Hash": 1304614843,
+ "Length": 3338
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Science_ToHit_DeBuff",
- "Hash": 1780577141,
- "Length": 3399
+ "Hash": 260082488,
+ "Length": 3373
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Sleep",
- "Hash": -232679068,
- "Length": 3230
+ "Hash": 1142199107,
+ "Length": 3204
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Snare",
- "Hash": 1379391087,
- "Length": 5260
+ "Hash": 1053817226,
+ "Length": 5234
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Stun",
- "Hash": -578219785,
- "Length": 3315
+ "Hash": -884690662,
+ "Length": 3289
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_Taunt",
- "Hash": 1079455415,
- "Length": 3343
+ "Hash": -1648724258,
+ "Length": 3317
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_ToHit_Buff",
- "Hash": 324718839,
- "Length": 3285
+ "Hash": 1003797038,
+ "Length": 3259
},
{
"Archetype": "",
"Fullname": "Boosts.Mutation_ToHit_DeBuff",
- "Hash": 421547622,
- "Length": 3281
+ "Hash": -1021258451,
+ "Length": 3255
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Accuracy",
- "Hash": 1567274115,
- "Length": 3189
+ "Hash": -519568292,
+ "Length": 3163
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Confuse",
- "Hash": 548072768,
- "Length": 3234
+ "Hash": 345133097,
+ "Length": 3208
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Damage",
- "Hash": -1840787357,
- "Length": 10410
+ "Hash": 20691998,
+ "Length": 10384
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Defense_Buff",
- "Hash": -1334081060,
- "Length": 13878
+ "Hash": -675774081,
+ "Length": 13852
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Defense_DeBuff",
- "Hash": 1691820304,
- "Length": 14107
+ "Hash": -1883866543,
+ "Length": 14081
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Drain_Endurance",
- "Hash": -1408577408,
- "Length": 4383
+ "Hash": 1046942029,
+ "Length": 4357
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Recovery",
- "Hash": 872209274,
- "Length": 4306
+ "Hash": 1548827929,
+ "Length": 4280
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Endurance_Discount",
- "Hash": 1604478865,
- "Length": 3398
+ "Hash": -23998944,
+ "Length": 3372
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Fear",
- "Hash": 1076668467,
- "Length": 4344
+ "Hash": 1734654358,
+ "Length": 4318
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Fly",
- "Hash": -717963138,
- "Length": 3159
+ "Hash": -1842101951,
+ "Length": 3133
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Heal",
- "Hash": -335564188,
- "Length": 6387
+ "Hash": -423247199,
+ "Length": 6361
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Hold",
- "Hash": 781744512,
- "Length": 3234
+ "Hash": -420140843,
+ "Length": 3208
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Immobilize",
- "Hash": 773809490,
- "Length": 3371
+ "Hash": 924252107,
+ "Length": 3345
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Intangible",
- "Hash": 807966434,
- "Length": 5449
+ "Hash": 1662866387,
+ "Length": 5423
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Interrupt",
- "Hash": -947332064,
- "Length": 3301
+ "Hash": 1387383149,
+ "Length": 3275
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Jump",
- "Hash": -96308905,
- "Length": 4191
+ "Hash": 873089530,
+ "Length": 4165
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Knockback",
- "Hash": 337869659,
- "Length": 4398
+ "Hash": 1138846368,
+ "Length": 4372
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Accuracy",
- "Hash": -1491409823,
- "Length": 3352
+ "Hash": 1979175950,
+ "Length": 3326
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Confuse",
- "Hash": -967441021,
- "Length": 3313
+ "Hash": -344751500,
+ "Length": 3287
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Damage",
- "Hash": 1587777633,
- "Length": 10548
+ "Hash": 603918666,
+ "Length": 10522
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Defense_Buff",
- "Hash": 1433142537,
- "Length": 14136
+ "Hash": 841938110,
+ "Length": 14110
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Defense_DeBuff",
- "Hash": -2131702885,
- "Length": 14298
+ "Hash": -1156624752,
+ "Length": 14272
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Recovery",
- "Hash": -1764967404,
- "Length": 4432
+ "Hash": -2115281279,
+ "Length": 4406
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Drain_Endurance",
- "Hash": 870348906,
- "Length": 4509
+ "Hash": 530304537,
+ "Length": 4483
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Endurance_Discount",
- "Hash": 1250734833,
- "Length": 3456
+ "Hash": -165927286,
+ "Length": 3430
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Fear",
- "Hash": -427488409,
- "Length": 4395
+ "Hash": 347324506,
+ "Length": 4369
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Fly",
- "Hash": 647435397,
- "Length": 3223
+ "Hash": 1553227398,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Heal",
- "Hash": -634080973,
- "Length": 6490
+ "Hash": 1303635526,
+ "Length": 6464
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Hold",
- "Hash": -351343289,
- "Length": 3294
+ "Hash": -221617032,
+ "Length": 3268
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Immobilize",
- "Hash": -448394765,
- "Length": 3466
+ "Hash": -351007992,
+ "Length": 3440
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Intangible",
- "Hash": -1274013265,
- "Length": 5605
+ "Hash": 236382964,
+ "Length": 5579
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Interrupt",
- "Hash": 363210361,
- "Length": 3456
+ "Hash": 492094648,
+ "Length": 3430
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Jump",
- "Hash": -429935741,
- "Length": 4477
+ "Hash": 1695926186,
+ "Length": 4451
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Knockback",
- "Hash": -1044437337,
- "Length": 4458
+ "Hash": -142586410,
+ "Length": 4432
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Cone",
- "Hash": -187556962,
- "Length": 3240
+ "Hash": -167433421,
+ "Length": 3214
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Range",
- "Hash": 747629266,
- "Length": 3249
+ "Hash": -782444183,
+ "Length": 3223
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Recharge",
- "Hash": -935638338,
- "Length": 3392
+ "Hash": 253397541,
+ "Length": 3366
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Res_Damage",
- "Hash": -181343690,
- "Length": 10689
+ "Hash": 293322501,
+ "Length": 10663
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Run",
- "Hash": 33512296,
- "Length": 3356
+ "Hash": 352169789,
+ "Length": 3330
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Sleep",
- "Hash": 511755959,
- "Length": 3326
+ "Hash": 1659113084,
+ "Length": 3300
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Snare",
- "Hash": -760533992,
- "Length": 5368
+ "Hash": -1300565189,
+ "Length": 5342
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Stun",
- "Hash": -520279311,
- "Length": 3330
+ "Hash": 1796085306,
+ "Length": 3304
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_Taunt",
- "Hash": 541947876,
- "Length": 3444
+ "Hash": 1367232709,
+ "Length": 3418
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_ToHit_Buff",
- "Hash": 1769534275,
- "Length": 3365
+ "Hash": 884049292,
+ "Length": 3339
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Magic_ToHit_DeBuff",
- "Hash": 524704858,
- "Length": 3411
+ "Hash": -1332344993,
+ "Length": 3385
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Range",
- "Hash": -563617187,
- "Length": 3194
+ "Hash": 3165658,
+ "Length": 3168
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Cone",
- "Hash": 2147286790,
- "Length": 3185
+ "Hash": 628408657,
+ "Length": 3159
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Recharge",
- "Hash": -1181377936,
- "Length": 3267
+ "Hash": -1639778131,
+ "Length": 3241
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Res_Damage",
- "Hash": -778895497,
- "Length": 10454
+ "Hash": 736795010,
+ "Length": 10428
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Run",
- "Hash": -931242753,
- "Length": 3173
+ "Hash": -1309204418,
+ "Length": 3147
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Sleep",
- "Hash": -978932703,
- "Length": 3278
+ "Hash": -300771360,
+ "Length": 3252
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Snare",
- "Hash": -725278666,
- "Length": 5312
+ "Hash": 2121693919,
+ "Length": 5286
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Stun",
- "Hash": 1785167851,
- "Length": 3293
+ "Hash": 782914414,
+ "Length": 3267
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_Taunt",
- "Hash": -461702820,
- "Length": 3310
+ "Hash": -1246226291,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_ToHit_Buff",
- "Hash": -370815279,
- "Length": 3251
+ "Hash": 307860764,
+ "Length": 3225
},
{
"Archetype": "",
"Fullname": "Boosts.Natural_ToHit_DeBuff",
- "Hash": 1463263859,
- "Length": 3261
+ "Hash": 1184077750,
+ "Length": 3235
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Accuracy",
- "Hash": -1395603010,
- "Length": 3190
+ "Hash": -961748387,
+ "Length": 3164
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Confuse",
- "Hash": -502693900,
- "Length": 3222
+ "Hash": 1594915439,
+ "Length": 3196
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Damage",
- "Hash": -220573195,
- "Length": 10381
+ "Hash": 1081667420,
+ "Length": 10355
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Defense_Buff",
- "Hash": -345188755,
- "Length": 13872
+ "Hash": 1921785616,
+ "Length": 13846
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Defense_DeBuff",
- "Hash": 420103640,
- "Length": 14101
+ "Hash": 78043067,
+ "Length": 14075
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Recovery",
- "Hash": -933391495,
- "Length": 4285
+ "Hash": -367291890,
+ "Length": 4259
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Drain_Endurance",
- "Hash": 2142761060,
- "Length": 4358
+ "Hash": -356012437,
+ "Length": 4332
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Endurance_Discount",
- "Hash": -707687473,
- "Length": 3310
+ "Hash": 1824360678,
+ "Length": 3284
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Fear",
- "Hash": -1110456668,
- "Length": 4312
+ "Hash": 1550877501,
+ "Length": 4286
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Fly",
- "Hash": 1425808905,
- "Length": 3126
+ "Hash": -218665232,
+ "Length": 3100
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Heal",
- "Hash": -653623173,
- "Length": 6307
+ "Hash": -346819858,
+ "Length": 6281
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Hold",
- "Hash": 1404878721,
- "Length": 3193
+ "Hash": -1237413676,
+ "Length": 3167
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Immobilize",
- "Hash": -2101279344,
- "Length": 3329
+ "Hash": -1546915065,
+ "Length": 3303
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Intangible",
- "Hash": 38857374,
- "Length": 5419
+ "Hash": -1087930995,
+ "Length": 5393
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Interrupt",
- "Hash": 835462707,
- "Length": 3236
+ "Hash": 1500595402,
+ "Length": 3210
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Jump",
- "Hash": 90583695,
- "Length": 4228
+ "Hash": -291291088,
+ "Length": 4202
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Knockback",
- "Hash": -1278875010,
- "Length": 4336
+ "Hash": 1875246761,
+ "Length": 4310
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Cone",
- "Hash": 880188734,
- "Length": 3106
+ "Hash": 469448913,
+ "Length": 3080
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Range",
- "Hash": -1494687731,
- "Length": 3115
+ "Hash": 1394020960,
+ "Length": 3089
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Recharge",
- "Hash": 989486097,
- "Length": 3233
+ "Hash": -1212746098,
+ "Length": 3207
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Res_Damage",
- "Hash": 535183161,
- "Length": 10453
+ "Hash": 2125201708,
+ "Length": 10427
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Run",
- "Hash": 1224914656,
- "Length": 3139
+ "Hash": -1393077591,
+ "Length": 3113
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Sleep",
- "Hash": -1947953393,
- "Length": 3206
+ "Hash": 786715824,
+ "Length": 3180
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Snare",
- "Hash": 1540193340,
- "Length": 5245
+ "Hash": -328941117,
+ "Length": 5219
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Stun",
- "Hash": 1977615346,
- "Length": 3212
+ "Hash": 172980449,
+ "Length": 3186
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Taunt",
- "Hash": 1290099236,
- "Length": 3201
+ "Hash": 1391509369,
+ "Length": 3175
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Accuracy",
- "Hash": -1758205677,
- "Length": 3436
+ "Hash": 2059035558,
+ "Length": 3410
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Confuse",
- "Hash": 1954256318,
- "Length": 3383
+ "Hash": -1655543207,
+ "Length": 3357
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Damage",
- "Hash": -1719403089,
- "Length": 10717
+ "Hash": 344231940,
+ "Length": 10691
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Defense_Buff",
- "Hash": 1602661331,
- "Length": 14274
+ "Hash": -189703714,
+ "Length": 14248
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Defense_DeBuff",
- "Hash": -1748580540,
- "Length": 14488
+ "Hash": 665416865,
+ "Length": 14462
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Recovery",
- "Hash": -1926526555,
- "Length": 4479
+ "Hash": 1726580834,
+ "Length": 4453
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Drain_Endurance",
- "Hash": 1302255532,
- "Length": 4556
+ "Hash": -372762309,
+ "Length": 4530
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Endurance_Discount",
- "Hash": 808075578,
- "Length": 3498
+ "Hash": 880003811,
+ "Length": 3472
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Fear",
- "Hash": 579738384,
- "Length": 4467
+ "Hash": 759249869,
+ "Length": 4441
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Fly",
- "Hash": -270896895,
- "Length": 3336
+ "Hash": -547110598,
+ "Length": 3310
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Heal",
- "Hash": 363538801,
- "Length": 6588
+ "Hash": -1299674290,
+ "Length": 6562
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Hold",
- "Hash": 956605898,
- "Length": 3457
+ "Hash": 847948887,
+ "Length": 3431
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Immobilize",
- "Hash": 1759725466,
- "Length": 3495
+ "Hash": 254648583,
+ "Length": 3469
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Intangible",
- "Hash": -1182445495,
- "Length": 5832
+ "Hash": 570125160,
+ "Length": 5806
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Interrupt",
- "Hash": -2045886656,
- "Length": 3475
+ "Hash": 1796729043,
+ "Length": 3449
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Jump",
- "Hash": -142179565,
- "Length": 4385
+ "Hash": -1221473184,
+ "Length": 4359
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Knockback",
- "Hash": 548684152,
- "Length": 4524
+ "Hash": 276783515,
+ "Length": 4498
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Cone",
- "Hash": 2088876801,
- "Length": 3299
+ "Hash": 591979318,
+ "Length": 3273
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Range",
- "Hash": 1060141775,
- "Length": 3308
+ "Hash": -934337102,
+ "Length": 3282
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Recharge",
- "Hash": -444156805,
- "Length": 3435
+ "Hash": -918939490,
+ "Length": 3409
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Res_Damage",
- "Hash": 911778394,
- "Length": 10816
+ "Hash": -1600599933,
+ "Length": 10790
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Run",
- "Hash": -1967899641,
- "Length": 3337
+ "Hash": -1975277126,
+ "Length": 3311
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Sleep",
- "Hash": 232391766,
- "Length": 3446
+ "Hash": 1848443587,
+ "Length": 3420
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Snare",
- "Hash": 879331300,
- "Length": 5546
+ "Hash": 1713819757,
+ "Length": 5520
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Stun",
- "Hash": 1324116876,
- "Length": 3489
+ "Hash": 1909208031,
+ "Length": 3463
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_Taunt",
- "Hash": -1542958236,
- "Length": 3425
+ "Hash": -1202402741,
+ "Length": 3399
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_ToHit_Buff",
- "Hash": -237505246,
- "Length": 3490
+ "Hash": -1785297983,
+ "Length": 3464
},
{
"Archetype": "",
"Fullname": "Boosts.Science_Technology_ToHit_DeBuff",
- "Hash": -1498644235,
- "Length": 3501
+ "Hash": 1413105090,
+ "Length": 3475
},
{
"Archetype": "",
"Fullname": "Boosts.Science_ToHit_Buff",
- "Hash": 858355949,
- "Length": 3223
+ "Hash": 1983188176,
+ "Length": 3197
},
{
"Archetype": "",
"Fullname": "Boosts.Science_ToHit_DeBuff",
- "Hash": -1292010697,
- "Length": 3243
+ "Hash": 720730276,
+ "Length": 3217
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_A",
- "Hash": 87962167,
- "Length": 3677
+ "Hash": 1790720562,
+ "Length": 3651
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_B",
- "Hash": 464598653,
- "Length": 4940
+ "Hash": -299140800,
+ "Length": 4914
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_C",
- "Hash": 506270806,
- "Length": 6111
+ "Hash": 1615118569,
+ "Length": 6085
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_D",
- "Hash": 1629620186,
- "Length": 4909
+ "Hash": -445391363,
+ "Length": 4883
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_E",
- "Hash": 285748054,
- "Length": 4932
+ "Hash": 53258515,
+ "Length": 4906
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Absolute_Amazement_F",
- "Hash": -1694696584,
- "Length": 3679
+ "Hash": -901586169,
+ "Length": 3653
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_A",
- "Hash": 1084657419,
- "Length": 11033
+ "Hash": -1742241304,
+ "Length": 11007
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_B",
- "Hash": -2121992244,
- "Length": 12281
+ "Hash": -1173201377,
+ "Length": 12255
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_C",
- "Hash": 1788867179,
- "Length": 13440
+ "Hash": -1033508350,
+ "Length": 13414
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_D",
- "Hash": 1030570300,
- "Length": 4749
+ "Hash": -430847747,
+ "Length": 4723
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_E",
- "Hash": 2055021986,
- "Length": 12299
+ "Hash": -1068749013,
+ "Length": 12273
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Apocalypse_F",
- "Hash": -1063980253,
- "Length": 3691
+ "Hash": 1821274792,
+ "Length": 3665
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_A",
- "Hash": -2112690196,
- "Length": 11033
+ "Hash": 1699141173,
+ "Length": 11007
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_B",
- "Hash": -2100783591,
- "Length": 12281
+ "Hash": -429662390,
+ "Length": 12255
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_C",
- "Hash": 1775438660,
- "Length": 13440
+ "Hash": -63045471,
+ "Length": 13414
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_D",
- "Hash": 507804247,
- "Length": 4749
+ "Hash": 1314759426,
+ "Length": 4723
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_E",
- "Hash": 214845725,
- "Length": 12299
+ "Hash": 2141105586,
+ "Length": 12273
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Armageddon_F",
- "Hash": 917730452,
- "Length": 3702
+ "Hash": 742909713,
+ "Length": 3676
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_A",
- "Hash": 1760010729,
- "Length": 12365
+ "Hash": 838820958,
+ "Length": 12339
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_B",
- "Hash": -983554925,
- "Length": 12395
+ "Hash": 1549840026,
+ "Length": 12369
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_C",
- "Hash": 1797984402,
- "Length": 13612
+ "Hash": 1935868425,
+ "Length": 13586
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_D",
- "Hash": -237287950,
- "Length": 13613
+ "Hash": -2054489361,
+ "Length": 13587
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_E",
- "Hash": -79596213,
- "Length": 14862
+ "Hash": -90038538,
+ "Length": 14836
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Avalanche_F",
- "Hash": -2035750815,
- "Length": 5213
+ "Hash": -1323508664,
+ "Length": 5187
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_A",
- "Hash": -482811766,
- "Length": 12433
+ "Hash": -1934741117,
+ "Length": 12407
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_B",
- "Hash": 1473664404,
- "Length": 12477
+ "Hash": 1509540251,
+ "Length": 12451
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_C",
- "Hash": -1517340621,
- "Length": 13671
+ "Hash": -362923082,
+ "Length": 13645
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_D",
- "Hash": -746689019,
- "Length": 13692
+ "Hash": -1145382014,
+ "Length": 13666
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_E",
- "Hash": 1174414609,
- "Length": 14942
+ "Hash": -4565716,
+ "Length": 14916
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Blistering_Cold_F",
- "Hash": 627634369,
- "Length": 6270
+ "Hash": -752189332,
+ "Length": 6244
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_A",
- "Hash": -2049798884,
- "Length": 3708
+ "Hash": 843295053,
+ "Length": 3682
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_B",
- "Hash": -315134616,
- "Length": 4973
+ "Hash": -261058409,
+ "Length": 4947
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_C",
- "Hash": -1697274216,
- "Length": 6146
+ "Hash": -290412723,
+ "Length": 6120
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_D",
- "Hash": 1325011837,
- "Length": 4922
+ "Hash": -379552710,
+ "Length": 4896
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_E",
- "Hash": 275250565,
- "Length": 4965
+ "Hash": 673651742,
+ "Length": 4939
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Coercive_Persuasion_F",
- "Hash": 765740127,
- "Length": 3847
+ "Hash": -1292583596,
+ "Length": 3821
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_A",
- "Hash": -1919296242,
- "Length": 4774
+ "Hash": -2146297387,
+ "Length": 4748
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_B",
- "Hash": 870651409,
- "Length": 4801
+ "Hash": 169469374,
+ "Length": 4775
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_C",
- "Hash": -72099963,
- "Length": 4795
+ "Hash": 1128068894,
+ "Length": 4769
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_D",
- "Hash": 376958783,
- "Length": 6039
+ "Hash": -354839314,
+ "Length": 6013
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_E",
- "Hash": 225115823,
- "Length": 7269
+ "Hash": 1099468808,
+ "Length": 7243
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Entomb_F",
- "Hash": -1007741886,
- "Length": 4923
+ "Hash": -1101727751,
+ "Length": 4897
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_A",
- "Hash": 679057321,
- "Length": 3681
+ "Hash": 1337990804,
+ "Length": 3655
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_B",
- "Hash": -1588320829,
- "Length": 4944
+ "Hash": -842631112,
+ "Length": 4918
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_C",
- "Hash": -1965015147,
- "Length": 6115
+ "Hash": 1790664680,
+ "Length": 6089
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_D",
- "Hash": 357402,
- "Length": 4907
+ "Hash": -17875483,
+ "Length": 4881
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_E",
- "Hash": 1877514391,
- "Length": 4936
+ "Hash": -1919760742,
+ "Length": 4910
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Fortunata_Hypnosis_F",
- "Hash": 1503398101,
- "Length": 4907
+ "Hash": 2138854662,
+ "Length": 4881
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_A",
- "Hash": -1655914025,
- "Length": 12449
+ "Hash": 953182512,
+ "Length": 12423
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_B",
- "Hash": -162353155,
- "Length": 12479
+ "Hash": 1072985766,
+ "Length": 12453
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_C",
- "Hash": 1856196389,
- "Length": 13702
+ "Hash": 1190402660,
+ "Length": 13676
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_D",
- "Hash": -1904091485,
- "Length": 13703
+ "Hash": -1799337830,
+ "Length": 13677
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_E",
- "Hash": 2039383076,
- "Length": 14958
+ "Hash": -1579876929,
+ "Length": 14932
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Frozen_Blast_F",
- "Hash": 305478576,
- "Length": 6468
+ "Hash": 1763828661,
+ "Length": 6442
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_A",
- "Hash": 718181810,
- "Length": 3746
+ "Hash": -1694312485,
+ "Length": 3720
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_B",
- "Hash": -254224054,
- "Length": 5013
+ "Hash": -1515351795,
+ "Length": 4987
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_C",
- "Hash": -417311857,
- "Length": 6188
+ "Hash": 1446823970,
+ "Length": 6162
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_D",
- "Hash": 191830640,
- "Length": 4941
+ "Hash": 1358122781,
+ "Length": 4915
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_E",
- "Hash": -288499007,
- "Length": 5005
+ "Hash": 181038400,
+ "Length": 4979
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Gravitational_Anchor_F",
- "Hash": 733469981,
- "Length": 4969
+ "Hash": -1747481298,
+ "Length": 4943
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_A",
- "Hash": -1361893322,
- "Length": 10981
+ "Hash": -342915517,
+ "Length": 10955
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_B",
- "Hash": 1309227083,
- "Length": 12229
+ "Hash": 2067856260,
+ "Length": 12203
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_C",
- "Hash": -1446789802,
- "Length": 13380
+ "Hash": -93730809,
+ "Length": 13354
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_D",
- "Hash": 831171737,
- "Length": 4737
+ "Hash": -588558856,
+ "Length": 4711
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_E",
- "Hash": 1780624427,
- "Length": 12243
+ "Hash": -412664564,
+ "Length": 12217
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Hecatomb_F",
- "Hash": 765509775,
- "Length": 3691
+ "Hash": 1715939246,
+ "Length": 3665
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_A",
- "Hash": 932541279,
- "Length": 10981
+ "Hash": -1476058362,
+ "Length": 10955
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_B",
- "Hash": -1943698638,
- "Length": 12225
+ "Hash": -1847283045,
+ "Length": 12199
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_C",
- "Hash": -359092977,
- "Length": 13380
+ "Hash": -746167900,
+ "Length": 13354
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_D",
- "Hash": 2100962254,
- "Length": 4721
+ "Hash": 1702955913,
+ "Length": 4695
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_E",
- "Hash": -384712380,
- "Length": 12243
+ "Hash": 1501128119,
+ "Length": 12217
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Ragnarok_F",
- "Hash": -2012364075,
- "Length": 3596
+ "Hash": -1287236696,
+ "Length": 3570
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_A",
- "Hash": -1564392216,
- "Length": 11293
+ "Hash": 2077955469,
+ "Length": 11267
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_B",
- "Hash": -1344369383,
- "Length": 12561
+ "Hash": -1732286154,
+ "Length": 12535
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_C",
- "Hash": -1220518532,
- "Length": 13742
+ "Hash": 335135137,
+ "Length": 13716
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_D",
- "Hash": 1808090543,
- "Length": 4889
+ "Hash": -293202378,
+ "Length": 4863
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_E",
- "Hash": 2106957802,
- "Length": 12579
+ "Hash": -1564220411,
+ "Length": 12553
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Soulbound_Allegiance_F",
- "Hash": -880091505,
- "Length": 3906
+ "Hash": 1742880990,
+ "Length": 3880
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_A",
- "Hash": 857260925,
- "Length": 11901
+ "Hash": 1874038124,
+ "Length": 11875
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_B",
- "Hash": 295251388,
- "Length": 11886
+ "Hash": 758409313,
+ "Length": 11860
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_C",
- "Hash": -89007675,
- "Length": 5556
+ "Hash": -515734298,
+ "Length": 5530
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_D",
- "Hash": -310029569,
- "Length": 13204
+ "Hash": -149366274,
+ "Length": 13178
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_E",
- "Hash": -1195014236,
- "Length": 14505
+ "Hash": 1064940363,
+ "Length": 14479
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Ascendency_of_the_Dominator_F",
- "Hash": 291336469,
- "Length": 5805
+ "Hash": 1560458526,
+ "Length": 5779
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_A",
- "Hash": 1096593351,
- "Length": 12867
+ "Hash": 1148370550,
+ "Length": 12841
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_B",
- "Hash": 54842658,
- "Length": 12894
+ "Hash": 1933208377,
+ "Length": 12868
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_C",
- "Hash": -1446194838,
- "Length": 14144
+ "Hash": 608421219,
+ "Length": 14118
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_D",
- "Hash": -424735962,
- "Length": 14167
+ "Hash": 2127886681,
+ "Length": 14141
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_E",
- "Hash": -1836399303,
- "Length": 15420
+ "Hash": 768824460,
+ "Length": 15394
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Assassins_Mark_F",
- "Hash": 123064920,
- "Length": 5271
+ "Hash": -713221441,
+ "Length": 5245
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_A",
- "Hash": -156084176,
- "Length": 12915
+ "Hash": -1253407477,
+ "Length": 12889
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_B",
- "Hash": -426320445,
- "Length": 12942
+ "Hash": 83822194,
+ "Length": 12916
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_C",
- "Hash": 1735113393,
- "Length": 14172
+ "Hash": -348738414,
+ "Length": 14146
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_D",
- "Hash": -2022728265,
- "Length": 14481
+ "Hash": -1654629814,
+ "Length": 14455
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_E",
- "Hash": -729074048,
- "Length": 15468
+ "Hash": -1432206317,
+ "Length": 15442
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Blasters_Wrath_F",
- "Hash": -4855612,
- "Length": 6599
+ "Hash": 1679181337,
+ "Length": 6573
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_A",
- "Hash": 1282259522,
- "Length": 12749
+ "Hash": -1939743525,
+ "Length": 12723
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_B",
- "Hash": 1351884731,
- "Length": 12776
+ "Hash": -702163852,
+ "Length": 12750
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_C",
- "Hash": -1493536749,
- "Length": 14020
+ "Hash": -1251892902,
+ "Length": 13994
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_D",
- "Hash": 460956599,
- "Length": 14043
+ "Hash": 1856416006,
+ "Length": 14017
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_E",
- "Hash": -529985822,
- "Length": 15291
+ "Hash": 1296274787,
+ "Length": 15265
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Brutes_Fury_F",
- "Hash": 175456982,
- "Length": 5099
+ "Hash": -11850599,
+ "Length": 5073
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_A",
- "Hash": -816618095,
- "Length": 13077
+ "Hash": -2091387894,
+ "Length": 13051
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_B",
- "Hash": 1546906385,
- "Length": 13110
+ "Hash": 1093244892,
+ "Length": 13084
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_C",
- "Hash": 1075915844,
- "Length": 14356
+ "Hash": 2075641245,
+ "Length": 14330
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_D",
- "Hash": 773832108,
- "Length": 14379
+ "Hash": 880174217,
+ "Length": 14353
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_E",
- "Hash": 616692303,
- "Length": 15674
+ "Hash": 787549994,
+ "Length": 15648
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Command_of_the_Mastermind_F",
- "Hash": 2094311105,
- "Length": 4198
+ "Hash": 989367466,
+ "Length": 4172
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_A",
- "Hash": 1160179911,
- "Length": 12910
+ "Hash": 1069662968,
+ "Length": 12884
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_B",
- "Hash": 1112744168,
- "Length": 12937
+ "Hash": 1720628773,
+ "Length": 12911
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_C",
- "Hash": -989217446,
- "Length": 14191
+ "Hash": -879548449,
+ "Length": 14165
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_D",
- "Hash": -1250085764,
- "Length": 14214
+ "Hash": -64308387,
+ "Length": 14188
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_E",
- "Hash": -745108667,
- "Length": 15471
+ "Hash": -1583214122,
+ "Length": 15445
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Critical_Strikes_F",
- "Hash": -1005754208,
- "Length": 5617
+ "Hash": -1134066149,
+ "Length": 5591
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_A",
- "Hash": 587126199,
- "Length": 12929
+ "Hash": 492537714,
+ "Length": 12903
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_B",
- "Hash": 435737780,
- "Length": 12956
+ "Hash": -203471273,
+ "Length": 12930
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_C",
- "Hash": 2137484857,
- "Length": 14210
+ "Hash": -731814794,
+ "Length": 14184
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_D",
- "Hash": 1698151568,
- "Length": 14191
+ "Hash": -934575023,
+ "Length": 14165
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_E",
- "Hash": -427131538,
- "Length": 15494
+ "Hash": 1789169759,
+ "Length": 15468
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defenders_Bastion_F",
- "Hash": 1128646538,
- "Length": 5479
+ "Hash": 276526319,
+ "Length": 5453
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_A",
- "Hash": 152269808,
- "Length": 12951
+ "Hash": 1532383793,
+ "Length": 12925
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_B",
- "Hash": -1476478233,
- "Length": 12978
+ "Hash": -337772382,
+ "Length": 12952
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_C",
- "Hash": -2114636227,
- "Length": 14210
+ "Hash": 324317566,
+ "Length": 14184
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_D",
- "Hash": -1196175475,
- "Length": 14519
+ "Hash": 735007126,
+ "Length": 14493
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_E",
- "Hash": 495128574,
- "Length": 15508
+ "Hash": 1781195559,
+ "Length": 15482
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Defiant_Barrage_F",
- "Hash": -823026816,
- "Length": 5731
+ "Hash": 1891226017,
+ "Length": 5705
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_A",
- "Hash": -1032187290,
- "Length": 11649
+ "Hash": -467955047,
+ "Length": 11623
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_B",
- "Hash": 595974795,
- "Length": 11634
+ "Hash": -452979918,
+ "Length": 11608
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_C",
- "Hash": 810263984,
- "Length": 5414
+ "Hash": -813617615,
+ "Length": 5388
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_D",
- "Hash": -1952632632,
- "Length": 12930
+ "Hash": 306675477,
+ "Length": 12904
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_E",
- "Hash": -937935549,
- "Length": 14209
+ "Hash": 1519005828,
+ "Length": 14183
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominating_Grasp_F",
- "Hash": 1767672967,
- "Length": 5622
+ "Hash": 552068524,
+ "Length": 5596
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_A",
- "Hash": -1578460089,
- "Length": 13085
+ "Hash": 1481580390,
+ "Length": 13059
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_B",
- "Hash": -1216988680,
- "Length": 13114
+ "Hash": 1098947623,
+ "Length": 13088
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_C",
- "Hash": 455255722,
- "Length": 14374
+ "Hash": 542419619,
+ "Length": 14348
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_D",
- "Hash": -1064534234,
- "Length": 14399
+ "Hash": 99257887,
+ "Length": 14373
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_E",
- "Hash": 2125945785,
- "Length": 15662
+ "Hash": -2140367860,
+ "Length": 15636
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Dominion_of_Arachnos_F",
- "Hash": -532663054,
- "Length": 15127
+ "Hash": -1408175161,
+ "Length": 15101
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_A",
- "Hash": 1948399182,
- "Length": 12948
+ "Hash": 694777485,
+ "Length": 12922
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_B",
- "Hash": -590406417,
- "Length": 12975
+ "Hash": -380421008,
+ "Length": 12949
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_C",
- "Hash": -1263722451,
- "Length": 14229
+ "Hash": 1177901814,
+ "Length": 14203
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_D",
- "Hash": -2017937374,
- "Length": 14252
+ "Hash": -1072123067,
+ "Length": 14226
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_E",
- "Hash": -1011286563,
- "Length": 15509
+ "Hash": -1792303894,
+ "Length": 15483
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Essence_Transfer_F",
- "Hash": -414131662,
- "Length": 5403
+ "Hash": 1322165625,
+ "Length": 5377
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_A",
- "Hash": -60287540,
- "Length": 12872
+ "Hash": -198321215,
+ "Length": 12846
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_B",
- "Hash": 670615427,
- "Length": 12899
+ "Hash": -1294111298,
+ "Length": 12873
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_C",
- "Hash": -702618399,
- "Length": 14151
+ "Hash": 558777628,
+ "Length": 14125
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_D",
- "Hash": 2122116543,
- "Length": 14174
+ "Hash": 78141692,
+ "Length": 14148
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_E",
- "Hash": -1345952719,
- "Length": 15433
+ "Hash": -1626316916,
+ "Length": 15407
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Gauntleted_Fist_F",
- "Hash": 1042090636,
- "Length": 5573
+ "Hash": -1569715445,
+ "Length": 5547
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_A",
- "Hash": 1229322756,
- "Length": 12911
+ "Hash": 620338845,
+ "Length": 12885
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_B",
- "Hash": 1551087833,
- "Length": 12938
+ "Hash": -1629817770,
+ "Length": 12912
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_C",
- "Hash": -38726004,
- "Length": 14190
+ "Hash": -1628114927,
+ "Length": 14164
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_D",
- "Hash": 1996382590,
- "Length": 14213
+ "Hash": 1062046169,
+ "Length": 14187
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_E",
- "Hash": 684197523,
- "Length": 15468
+ "Hash": 1519421738,
+ "Length": 15442
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Kheldians_Grace_F",
- "Hash": 949283317,
- "Length": 4587
+ "Hash": -1673754892,
+ "Length": 4561
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_A",
- "Hash": 1664010923,
- "Length": 13103
+ "Hash": -1357534856,
+ "Length": 13077
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_B",
- "Hash": 317165242,
- "Length": 13130
+ "Hash": 35253971,
+ "Length": 13104
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_C",
- "Hash": 234018546,
- "Length": 14398
+ "Hash": 1037977399,
+ "Length": 14372
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_D",
- "Hash": -855652180,
- "Length": 14421
+ "Hash": -424129537,
+ "Length": 14395
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_E",
- "Hash": 2006513833,
- "Length": 15692
+ "Hash": -1575164978,
+ "Length": 15666
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Malice_of_the_Corruptor_F",
- "Hash": 763108479,
- "Length": 6639
+ "Hash": 1741978040,
+ "Length": 6613
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_A",
- "Hash": 919644635,
- "Length": 11605
+ "Hash": 1725012114,
+ "Length": 11579
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_B",
- "Hash": 282015483,
- "Length": 12899
+ "Hash": 1888767080,
+ "Length": 12873
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_C",
- "Hash": -923734065,
- "Length": 12868
+ "Hash": 562888678,
+ "Length": 12842
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_D",
- "Hash": 1299931612,
- "Length": 5172
+ "Hash": -1474733697,
+ "Length": 5146
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_E",
- "Hash": -1354167342,
- "Length": 14102
+ "Hash": 703705231,
+ "Length": 14076
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Mark_of_Supremacy_F",
- "Hash": -920456174,
- "Length": 4211
+ "Hash": 1655045593,
+ "Length": 4185
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_A",
- "Hash": 104739822,
- "Length": 12975
+ "Hash": 1495233795,
+ "Length": 12949
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_B",
- "Hash": 1867948487,
- "Length": 13002
+ "Hash": -721619406,
+ "Length": 12976
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_C",
- "Hash": 1991144679,
- "Length": 14262
+ "Hash": -639035680,
+ "Length": 14236
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_D",
- "Hash": 45047063,
- "Length": 14285
+ "Hash": 182484822,
+ "Length": 14259
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_E",
- "Hash": 588364482,
- "Length": 15548
+ "Hash": 1854480789,
+ "Length": 15522
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Might_of_the_Tanker_F",
- "Hash": -1124374617,
- "Length": 5668
+ "Hash": -1991944232,
+ "Length": 5642
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_A",
- "Hash": 1417193654,
- "Length": 11855
+ "Hash": -449169725,
+ "Length": 11829
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_B",
- "Hash": 527943841,
- "Length": 11840
+ "Hash": 512207584,
+ "Length": 11814
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_C",
- "Hash": -503077138,
- "Length": 5570
+ "Hash": 709801059,
+ "Length": 5544
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_D",
- "Hash": 33886986,
- "Length": 13146
+ "Hash": 115230339,
+ "Length": 13120
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_E",
- "Hash": -1364751508,
- "Length": 14478
+ "Hash": -641523471,
+ "Length": 14452
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Overpowering_Presence_F",
- "Hash": -2065086582,
- "Length": 5712
+ "Hash": 1793077023,
+ "Length": 5686
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_A",
- "Hash": 1600826685,
- "Length": 12891
+ "Hash": 1910199178,
+ "Length": 12865
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_B",
- "Hash": 1302667860,
- "Length": 12918
+ "Hash": -1722110277,
+ "Length": 12892
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_C",
- "Hash": -376517852,
- "Length": 14170
+ "Hash": -1690402199,
+ "Length": 14144
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_D",
- "Hash": -562785578,
- "Length": 14193
+ "Hash": 14358899,
+ "Length": 14167
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_E",
- "Hash": -1489507769,
- "Length": 15448
+ "Hash": 718806330,
+ "Length": 15422
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scourging_Blast_F",
- "Hash": -1115256900,
- "Length": 5459
+ "Hash": 1725333373,
+ "Length": 5433
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_A",
- "Hash": -1882094228,
- "Length": 12901
+ "Hash": 234364037,
+ "Length": 12875
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_B",
- "Hash": -1506511403,
- "Length": 12928
+ "Hash": 1227592500,
+ "Length": 12902
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_C",
- "Hash": 1971197533,
- "Length": 14182
+ "Hash": -1351540188,
+ "Length": 14156
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_D",
- "Hash": 424712073,
- "Length": 14205
+ "Hash": -883777538,
+ "Length": 14179
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_E",
- "Hash": -1228792021,
- "Length": 15462
+ "Hash": 1063864528,
+ "Length": 15436
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Scrappers_Strike_F",
- "Hash": -1739624116,
- "Length": 4356
+ "Hash": 1181767889,
+ "Length": 4330
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_A",
- "Hash": -2132802177,
- "Length": 12885
+ "Hash": -1900629438,
+ "Length": 12859
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_B",
- "Hash": -899601712,
- "Length": 12914
+ "Hash": 1526851413,
+ "Length": 12888
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_C",
- "Hash": 994755332,
- "Length": 14158
+ "Hash": -562996905,
+ "Length": 14132
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_D",
- "Hash": 199273693,
- "Length": 14183
+ "Hash": 1160440810,
+ "Length": 14157
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_E",
- "Hash": -1794845486,
- "Length": 15430
+ "Hash": -778572551,
+ "Length": 15404
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Spiders_Bite_F",
- "Hash": 613276263,
- "Length": 4260
+ "Hash": 240366420,
+ "Length": 4234
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_A",
- "Hash": -1536964301,
- "Length": 12857
+ "Hash": 1847853736,
+ "Length": 12831
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_B",
- "Hash": -352038346,
- "Length": 12884
+ "Hash": 1981478371,
+ "Length": 12858
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_C",
- "Hash": -1755936254,
- "Length": 14134
+ "Hash": 1812131419,
+ "Length": 14108
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_D",
- "Hash": 1333546200,
- "Length": 14157
+ "Hash": -2039163525,
+ "Length": 14131
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_E",
- "Hash": -853467303,
- "Length": 15410
+ "Hash": -1856225706,
+ "Length": 15384
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Stalkers_Guile_F",
- "Hash": -698230415,
- "Length": 5416
+ "Hash": 1978728724,
+ "Length": 5390
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_A",
- "Hash": 1318141024,
- "Length": 12895
+ "Hash": 1242250921,
+ "Length": 12869
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_B",
- "Hash": -1502323493,
- "Length": 12922
+ "Hash": 1907862038,
+ "Length": 12896
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_C",
- "Hash": -913735195,
- "Length": 14176
+ "Hash": 875586016,
+ "Length": 14150
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_D",
- "Hash": 1030236599,
- "Length": 14199
+ "Hash": -1770641264,
+ "Length": 14173
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_E",
- "Hash": -2129496574,
- "Length": 15457
+ "Hash": 803123749,
+ "Length": 15431
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Unrelenting_Fury_F",
- "Hash": 703639454,
- "Length": 5661
+ "Hash": -1868339645,
+ "Length": 5635
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_A",
- "Hash": 1731781411,
- "Length": 12910
+ "Hash": 1641500618,
+ "Length": 12884
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_B",
- "Hash": -1514641485,
- "Length": 12937
+ "Hash": -329112478,
+ "Length": 12911
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_C",
- "Hash": 327213812,
- "Length": 14189
+ "Hash": -544783109,
+ "Length": 14163
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_D",
- "Hash": -688401335,
- "Length": 14170
+ "Hash": 612915128,
+ "Length": 14144
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_E",
- "Hash": -1928012952,
- "Length": 15471
+ "Hash": -297192997,
+ "Length": 15445
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Vigilant_Assault_F",
- "Hash": 152212280,
- "Length": 5545
+ "Hash": -1142860601,
+ "Length": 5519
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_A",
- "Hash": -113385137,
- "Length": 11866
+ "Hash": 1483129888,
+ "Length": 11840
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_B",
- "Hash": 1394947678,
- "Length": 11851
+ "Hash": 2100564527,
+ "Length": 11825
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_C",
- "Hash": 560844198,
- "Length": 5571
+ "Hash": 1186189149,
+ "Length": 5545
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_D",
- "Hash": -287116716,
- "Length": 13159
+ "Hash": 1985315199,
+ "Length": 13133
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_E",
- "Hash": 493894546,
- "Length": 14493
+ "Hash": 1636301323,
+ "Length": 14467
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Superior_Will_of_the_Controller_F",
- "Hash": -2084619333,
- "Length": 6900
+ "Hash": 1056221814,
+ "Length": 6874
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_A",
- "Hash": 1006030629,
- "Length": 3721
+ "Hash": 1816766522,
+ "Length": 3695
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_B",
- "Hash": 278618687,
- "Length": 4992
+ "Hash": -1873938892,
+ "Length": 4966
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_C",
- "Hash": -1914465859,
- "Length": 6171
+ "Hash": -1463178670,
+ "Length": 6145
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_D",
- "Hash": 1154814365,
- "Length": 4962
+ "Hash": -1316597106,
+ "Length": 4936
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_E",
- "Hash": 930003099,
- "Length": 4984
+ "Hash": 40719710,
+ "Length": 4958
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Unbreakable_Constraint_F",
- "Hash": -834166728,
- "Length": 4921
+ "Hash": 223613177,
+ "Length": 4895
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_A",
- "Hash": -46300212,
- "Length": 12451
+ "Hash": 1346179915,
+ "Length": 12425
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_B",
- "Hash": 2113130423,
- "Length": 12478
+ "Hash": 1792602384,
+ "Length": 12452
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_C",
- "Hash": 2103064667,
- "Length": 13704
+ "Hash": -671522972,
+ "Length": 13678
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_D",
- "Hash": -2141446795,
- "Length": 13705
+ "Hash": 2146836660,
+ "Length": 13679
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_E",
- "Hash": -213678476,
- "Length": 14960
+ "Hash": -1385243171,
+ "Length": 14934
},
{
"Archetype": "",
"Fullname": "Boosts.Superior_Attuned_Winters_Bite_F",
- "Hash": -1865446394,
- "Length": 9268
+ "Hash": -1314048811,
+ "Length": 9242
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Accuracy_Mez",
- "Hash": 316012473,
- "Length": 14926
+ "Hash": 988393848,
+ "Length": 14900
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Buff_Endurance_Discount",
- "Hash": -635881463,
- "Length": 17224
+ "Hash": 1654577086,
+ "Length": 17198
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Buff_Recharge",
- "Hash": 931176511,
- "Length": 16851
+ "Hash": -688872614,
+ "Length": 16825
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Damage_Accuracy",
- "Hash": 1364218010,
- "Length": 12271
+ "Hash": 746587853,
+ "Length": 12245
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Damage_Mez",
- "Hash": 224443807,
- "Length": 22308
+ "Hash": -736928116,
+ "Length": 22282
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Damage_Range",
- "Hash": -1489720764,
- "Length": 12134
+ "Hash": 1219004709,
+ "Length": 12108
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_DeBuff_Accuracy",
- "Hash": -959979917,
- "Length": 17042
+ "Hash": -1518031228,
+ "Length": 17016
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_DeBuff_Endurance_Discount",
- "Hash": 1004778379,
- "Length": 17428
+ "Hash": 2145874866,
+ "Length": 17402
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Heal_Endurance_Discount",
- "Hash": 877213669,
- "Length": 8235
+ "Hash": 1930610884,
+ "Length": 8209
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Res_Damage_Endurance_Discount",
- "Hash": 142436539,
- "Length": 12633
+ "Hash": 191790086,
+ "Length": 12607
},
{
"Archetype": "",
"Fullname": "Boosts.Synthetic_Hamidon_Travel_Endurance_Discount",
- "Hash": 2082639172,
- "Length": 8319
+ "Hash": -464576851,
+ "Length": 8293
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Accuracy",
- "Hash": -1290473725,
- "Length": 3306
+ "Hash": 1360292600,
+ "Length": 3280
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Confuse",
- "Hash": -420935258,
- "Length": 3355
+ "Hash": 417456961,
+ "Length": 3329
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Damage",
- "Hash": 1160987235,
- "Length": 10522
+ "Hash": -750434600,
+ "Length": 10496
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Defense_Buff",
- "Hash": 1677687351,
- "Length": 14003
+ "Hash": 1245685392,
+ "Length": 13977
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Defense_DeBuff",
- "Hash": -309534770,
- "Length": 14216
+ "Hash": -45961203,
+ "Length": 14190
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Drain_Endurance",
- "Hash": 1292784690,
- "Length": 4394
+ "Hash": -1272702037,
+ "Length": 4368
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Recovery",
- "Hash": 326741353,
- "Length": 4321
+ "Hash": 1518849752,
+ "Length": 4295
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Endurance_Discount",
- "Hash": 345128276,
- "Length": 3403
+ "Hash": 749229915,
+ "Length": 3377
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Fear",
- "Hash": 497137934,
- "Length": 4302
+ "Hash": -1060439105,
+ "Length": 4276
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Fly",
- "Hash": 256218093,
- "Length": 3207
+ "Hash": 156279534,
+ "Length": 3181
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Heal",
- "Hash": -605584826,
- "Length": 6386
+ "Hash": 225229711,
+ "Length": 6360
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Hold",
- "Hash": 620711060,
- "Length": 3297
+ "Hash": 221430299,
+ "Length": 3271
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Immobilize",
- "Hash": 247931849,
- "Length": 3368
+ "Hash": 1218237432,
+ "Length": 3342
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Intangible",
- "Hash": 474611261,
- "Length": 5500
+ "Hash": -211089332,
+ "Length": 5474
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Interrupt",
- "Hash": -818258136,
- "Length": 3293
+ "Hash": -609853639,
+ "Length": 3267
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Jump",
- "Hash": 1159814527,
- "Length": 4242
+ "Hash": -895165822,
+ "Length": 4216
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Knockback",
- "Hash": -35524413,
- "Length": 4350
+ "Hash": 654664556,
+ "Length": 4324
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Accuracy",
- "Hash": 903365775,
- "Length": 3369
+ "Hash": 1917710160,
+ "Length": 3343
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Confuse",
- "Hash": 1101650379,
- "Length": 3359
+ "Hash": 1473732762,
+ "Length": 3333
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Damage",
- "Hash": 1243610119,
- "Length": 10629
+ "Hash": 1857079572,
+ "Length": 10603
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Defense_Buff",
- "Hash": 2127059183,
- "Length": 14292
+ "Hash": 814098318,
+ "Length": 14266
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Defense_DeBuff",
- "Hash": -785342102,
- "Length": 14454
+ "Hash": 1489850791,
+ "Length": 14428
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Drain_Endurance",
- "Hash": -1468460230,
- "Length": 4571
+ "Hash": -439290733,
+ "Length": 4545
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Recovery",
- "Hash": 601201243,
- "Length": 4494
+ "Hash": 1188047700,
+ "Length": 4468
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Endurance_Discount",
- "Hash": -693278189,
- "Length": 3485
+ "Hash": 828829590,
+ "Length": 3459
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Fear",
- "Hash": -342906567,
- "Length": 4445
+ "Hash": 411529574,
+ "Length": 4419
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Fly",
- "Hash": 278319590,
- "Length": 3273
+ "Hash": -1730997479,
+ "Length": 3247
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Heal",
- "Hash": -91898131,
- "Length": 6562
+ "Hash": -1900237362,
+ "Length": 6536
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Hold",
- "Hash": -1030391016,
- "Length": 3340
+ "Hash": -2057841841,
+ "Length": 3314
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Immobilize",
- "Hash": -177674672,
- "Length": 3495
+ "Hash": -1758353697,
+ "Length": 3469
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Intangible",
- "Hash": -2086183680,
- "Length": 5619
+ "Hash": -1269265897,
+ "Length": 5593
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Interrupt",
- "Hash": -60974340,
- "Length": 3439
+ "Hash": -194070515,
+ "Length": 3413
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Jump",
- "Hash": -228067734,
- "Length": 4355
+ "Hash": -251128295,
+ "Length": 4329
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Knockback",
- "Hash": 509353361,
- "Length": 4509
+ "Hash": -1137394290,
+ "Length": 4483
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Range",
- "Hash": -1405406610,
- "Length": 3312
+ "Hash": -1854403853,
+ "Length": 3286
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Cone",
- "Hash": 1520495527,
- "Length": 3303
+ "Hash": 274975298,
+ "Length": 3277
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Recharge",
- "Hash": -1265773779,
- "Length": 3378
+ "Hash": 209951688,
+ "Length": 3352
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Res_Damage",
- "Hash": -1857447652,
- "Length": 10765
+ "Hash": 21743415,
+ "Length": 10739
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Run",
- "Hash": -1766657124,
- "Length": 3264
+ "Hash": 1585969859,
+ "Length": 3238
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Sleep",
- "Hash": 538594593,
- "Length": 3398
+ "Hash": -655600560,
+ "Length": 3372
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Snare",
- "Hash": 1913806307,
- "Length": 5482
+ "Hash": -78896028,
+ "Length": 5456
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Stun",
- "Hash": 1624215415,
- "Length": 3391
+ "Hash": -973015724,
+ "Length": 3365
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_Taunt",
- "Hash": 1124358446,
- "Length": 3428
+ "Hash": 1574090869,
+ "Length": 3402
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_ToHit_Buff",
- "Hash": 135916263,
- "Length": 3442
+ "Hash": 1281633376,
+ "Length": 3416
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Natural_ToHit_DeBuff",
- "Hash": -1453973849,
- "Length": 3402
+ "Hash": -1432623034,
+ "Length": 3376
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Range",
- "Hash": 1706470007,
- "Length": 3162
+ "Hash": -496477952,
+ "Length": 3136
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Cone",
- "Hash": -1700198732,
- "Length": 3153
+ "Hash": 1247247045,
+ "Length": 3127
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Recharge",
- "Hash": 1357312391,
- "Length": 3279
+ "Hash": 986356316,
+ "Length": 3253
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Res_Damage",
- "Hash": 984583136,
- "Length": 10542
+ "Hash": 385469761,
+ "Length": 10516
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Run",
- "Hash": 566320483,
- "Length": 3164
+ "Hash": 1883871066,
+ "Length": 3138
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Sleep",
- "Hash": -102672911,
- "Length": 3257
+ "Hash": -531494084,
+ "Length": 3231
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Snare",
- "Hash": -858072889,
- "Length": 5342
+ "Hash": -1056631576,
+ "Length": 5316
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Stun",
- "Hash": 950998479,
- "Length": 3306
+ "Hash": 449802332,
+ "Length": 3280
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_Taunt",
- "Hash": 651934115,
- "Length": 3294
+ "Hash": 1235500126,
+ "Length": 3268
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_ToHit_Buff",
- "Hash": -165433451,
- "Length": 3240
+ "Hash": 1332754006,
+ "Length": 3214
},
{
"Archetype": "",
"Fullname": "Boosts.Technology_ToHit_DeBuff",
- "Hash": -1677556623,
- "Length": 3347
+ "Hash": -941250116,
+ "Length": 3321
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Accuracy_Mez",
- "Hash": 221951386,
- "Length": 11059
+ "Hash": 349777145,
+ "Length": 11033
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Buff_Endurance_Discount",
- "Hash": 1745807705,
- "Length": 16647
+ "Hash": -963857910,
+ "Length": 16621
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Buff_Recharge",
- "Hash": -1530686828,
- "Length": 16293
+ "Hash": 138346431,
+ "Length": 16267
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Damage_Accuracy",
- "Hash": 136309520,
- "Length": 11705
+ "Hash": 924085939,
+ "Length": 11679
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Damage_Mez",
- "Hash": -1832764385,
- "Length": 18220
+ "Hash": -394384342,
+ "Length": 18194
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Damage_Range",
- "Hash": -417849456,
- "Length": 11622
+ "Hash": -953491567,
+ "Length": 11596
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_DeBuff_Accuracy",
- "Hash": 1981953493,
- "Length": 16306
+ "Hash": 909738536,
+ "Length": 16280
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_DeBuff_Endurance_Discount",
- "Hash": -1491841307,
- "Length": 16680
+ "Hash": 486957722,
+ "Length": 16654
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Heal_Endurance_Discount",
- "Hash": -346184048,
- "Length": 7773
+ "Hash": -1918804483,
+ "Length": 7747
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Res_Damage_Endurance_Discount",
- "Hash": 1823835099,
- "Length": 12191
+ "Hash": 1618234102,
+ "Length": 12165
},
{
"Archetype": "",
"Fullname": "Boosts.Titan_Travel_Endurance_Discount",
- "Hash": -78765011,
- "Length": 7868
+ "Hash": -492226226,
+ "Length": 7842
},
{
"Archetype": "",
"Fullname": "Boosts.Yins_Magic_Accuracy",
- "Hash": 589796405,
- "Length": 3142
+ "Hash": -1119074936,
+ "Length": 3116
},
{
"Archetype": "",
"Fullname": "Boosts.Yins_Mutation_Damage",
- "Hash": 1108927991,
- "Length": 10454
+ "Hash": 165196602,
+ "Length": 10428
},
{
"Archetype": "",
"Fullname": "Boosts.Yins_Natural_Damage",
- "Hash": 1095743749,
- "Length": 10434
+ "Hash": 1063610674,
+ "Length": 10408
},
{
"Archetype": "",
"Fullname": "Boosts.Yins_Science_Recharge",
- "Hash": 1872207616,
- "Length": 3185
+ "Hash": 240632737,
+ "Length": 3159
},
{
"Archetype": "",
"Fullname": "Boosts.Yins_Technology_Endurance_Discount",
- "Hash": -1700420395,
- "Length": 3345
+ "Hash": -1990053282,
+ "Length": 3319
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Bio_Organic_Armor",
- "Hash": 1871342776,
- "Length": 268103
+ "Hash": -475490411,
+ "Length": 268035
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Dark_Armor",
- "Hash": -1718812052,
- "Length": 105798
+ "Hash": -183217282,
+ "Length": 105754
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Electric_Armor",
- "Hash": 661691917,
- "Length": 118963
+ "Hash": 1673218594,
+ "Length": 118912
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Energy_Aura",
- "Hash": -1894462843,
- "Length": 166057
+ "Hash": 1834233663,
+ "Length": 166028
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Fiery_Aura",
- "Hash": 290090974,
- "Length": 92080
+ "Hash": -840442799,
+ "Length": 92043
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Ice_Armor",
- "Hash": -558273964,
- "Length": 158060
+ "Hash": -1735680275,
+ "Length": 158026
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Invulnerability",
- "Hash": 1133165201,
- "Length": 153771
+ "Hash": -107367171,
+ "Length": 153680
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Radiation_Armor",
- "Hash": 829593617,
- "Length": 125708
+ "Hash": 1054455676,
+ "Length": 125595
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Regeneration",
- "Hash": -68743813,
- "Length": 108867
+ "Hash": -1911737011,
+ "Length": 108778
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Shield_Defense",
- "Hash": -281570185,
- "Length": 155189
+ "Hash": 837435543,
+ "Length": 155134
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Stone_Armor",
- "Hash": 1439080643,
- "Length": 160502
+ "Hash": -522954453,
+ "Length": 160463
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Super_Reflexes",
- "Hash": -1522970570,
- "Length": 104979
+ "Hash": -8078146,
+ "Length": 104868
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Defense.Willpower",
- "Hash": -789697450,
- "Length": 155067
+ "Hash": 231648258,
+ "Length": 154982
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Battle_Axe",
- "Hash": 1231427079,
- "Length": 91963
+ "Hash": 1411781780,
+ "Length": 91948
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Broad_Sword",
- "Hash": -1570150765,
- "Length": 92378
+ "Hash": 616961431,
+ "Length": 92363
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Claws",
- "Hash": -2074445208,
- "Length": 92197
+ "Hash": 1895725327,
+ "Length": 92171
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Dark_Melee",
- "Hash": -13440741,
- "Length": 108646
+ "Hash": -2143025018,
+ "Length": 108635
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Dual_Blades",
- "Hash": -907812629,
- "Length": 187052
+ "Hash": -1718361951,
+ "Length": 187035
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Electrical_Melee",
- "Hash": 1183920731,
- "Length": 121457
+ "Hash": 983431314,
+ "Length": 121440
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Energy_Melee",
- "Hash": 662107908,
- "Length": 106715
+ "Hash": -1426645332,
+ "Length": 106693
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Fiery_Melee",
- "Hash": 1029278538,
- "Length": 99088
+ "Hash": 1642708808,
+ "Length": 99072
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Ice_Melee",
- "Hash": -127138781,
- "Length": 108140
+ "Hash": 395545385,
+ "Length": 108124
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Katana",
- "Hash": -540223611,
- "Length": 91483
+ "Hash": -347053536,
+ "Length": 91461
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Kinetic_Attack",
- "Hash": -1634501445,
- "Length": 142491
+ "Hash": -413765411,
+ "Length": 142474
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Martial_Arts",
- "Hash": -372996559,
- "Length": 115312
+ "Hash": -286760659,
+ "Length": 115296
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Psionic_Melee",
- "Hash": -340976961,
- "Length": 122036
+ "Hash": 823298300,
+ "Length": 122009
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Radiation_Melee",
- "Hash": -1503915218,
- "Length": 125489
+ "Hash": -1294000710,
+ "Length": 125474
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Savage_Melee",
- "Hash": 1699288634,
- "Length": 109498
+ "Hash": 194446184,
+ "Length": 109476
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Spines",
- "Hash": -645388082,
- "Length": 139602
+ "Hash": 1251527928,
+ "Length": 139587
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Staff_Fighting",
- "Hash": -423816803,
- "Length": 299229
+ "Hash": -1221834210,
+ "Length": 299187
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Stone_Melee",
- "Hash": -1098701752,
- "Length": 93922
+ "Hash": 1082445657,
+ "Length": 93899
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Brawling",
- "Hash": -341481357,
- "Length": 218176
+ "Hash": 1525238713,
+ "Length": 218156
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Super_Strength",
- "Hash": -1090454279,
- "Length": 110647
+ "Hash": -1898655736,
+ "Length": 110619
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.Titan_Weapons",
- "Hash": 1590079543,
- "Length": 128553
+ "Hash": -1358033927,
+ "Length": 128528
},
{
"Archetype": "Class_Brute",
"Fullname": "Brute_Melee.War_Mace",
- "Hash": 1495716822,
- "Length": 92420
+ "Hash": 1823930692,
+ "Length": 92405
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Cold_Domination",
- "Hash": -166974997,
- "Length": 151923
+ "Hash": -1031130400,
+ "Length": 151898
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Darkness_Affinity",
- "Hash": -231990421,
- "Length": 109068
+ "Hash": 60096674,
+ "Length": 109059
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Empathy",
- "Hash": 1505214776,
- "Length": 73302
+ "Hash": -1796779079,
+ "Length": 73291
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Force_Field",
- "Hash": 581978831,
- "Length": 107527
+ "Hash": 116988571,
+ "Length": 107504
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Kinetics",
- "Hash": -1134969700,
- "Length": 81969
+ "Hash": -1170763586,
+ "Length": 81949
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Nature_Affinity",
- "Hash": 470652786,
- "Length": 107601
+ "Hash": -224069339,
+ "Length": 107589
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Pain_Domination",
- "Hash": 1215274771,
- "Length": 124291
+ "Hash": 1133868391,
+ "Length": 124280
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Poison",
- "Hash": 1501741072,
- "Length": 199256
+ "Hash": -331418400,
+ "Length": 199246
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Radiation_Emission",
- "Hash": -1607797004,
- "Length": 109525
+ "Hash": -1707310800,
+ "Length": 109513
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Sonic_Debuff",
- "Hash": 821876448,
- "Length": 88470
+ "Hash": 1054482812,
+ "Length": 88459
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Storm_Summoning",
- "Hash": 659098935,
- "Length": 78828
+ "Hash": -201752112,
+ "Length": 78814
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Thermal_Radiation",
- "Hash": 691964206,
- "Length": 87106
+ "Hash": -572067052,
+ "Length": 87085
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Time_Manipulation",
- "Hash": -529716426,
- "Length": 144504
+ "Hash": 97778276,
+ "Length": 144494
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Traps",
- "Hash": 197001680,
- "Length": 42694
+ "Hash": -940230092,
+ "Length": 42679
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Buff.Trick_Arrow",
- "Hash": 481807695,
- "Length": 74437
+ "Hash": -1569738646,
+ "Length": 74408
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Darkness_Control",
- "Hash": 296161254,
- "Length": 80641
+ "Hash": 1963708608,
+ "Length": 80631
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Earth_Control",
- "Hash": 896143175,
- "Length": 84900
+ "Hash": -383777119,
+ "Length": 84875
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Electric_Control",
- "Hash": -1710418788,
- "Length": 99564
+ "Hash": 1194022905,
+ "Length": 99550
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Fire_Control",
- "Hash": 504737612,
- "Length": 82043
+ "Hash": -156590339,
+ "Length": 82016
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Gravity_Control",
- "Hash": -995399527,
- "Length": 114844
+ "Hash": 543671536,
+ "Length": 114831
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Ice_Control",
- "Hash": -164159934,
- "Length": 115301
+ "Hash": 1918759870,
+ "Length": 115288
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Illusion_Control",
- "Hash": -260001477,
- "Length": 101628
+ "Hash": -1206618774,
+ "Length": 101514
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Mind_Control",
- "Hash": 2094880173,
- "Length": 68519
+ "Hash": 1308090811,
+ "Length": 68498
},
{
"Archetype": "Class_Controller",
"Fullname": "Controller_Control.Plant_Control",
- "Hash": 1474626464,
- "Length": 75835
+ "Hash": -1258478834,
+ "Length": 75810
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Cold_Domination",
- "Hash": -17600997,
- "Length": 114755
+ "Hash": 330712215,
+ "Length": 114730
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Dark_Miasma",
- "Hash": -274422489,
- "Length": 96468
+ "Hash": 290584078,
+ "Length": 96460
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Empathy",
- "Hash": -1411769057,
- "Length": 73252
+ "Hash": 1579449310,
+ "Length": 73241
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Force_Field",
- "Hash": -1938778909,
- "Length": 107448
+ "Hash": -489084913,
+ "Length": 107425
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Kinetics",
- "Hash": -1066900263,
- "Length": 81811
+ "Hash": -267667407,
+ "Length": 81791
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Nature_Affinity",
- "Hash": 466182122,
- "Length": 107479
+ "Hash": 1174025543,
+ "Length": 107467
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Pain_Domination",
- "Hash": 2064490245,
- "Length": 124224
+ "Hash": -401326247,
+ "Length": 124213
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Poison",
- "Hash": 743010166,
- "Length": 199024
+ "Hash": -435041482,
+ "Length": 199014
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Radiation_Emission",
- "Hash": -394226264,
- "Length": 108145
+ "Hash": 1770311260,
+ "Length": 108133
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Sonic_Resonance",
- "Hash": 1853914676,
- "Length": 86567
+ "Hash": -1735620476,
+ "Length": 86556
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Storm_Summoning",
- "Hash": -1016528860,
- "Length": 82122
+ "Hash": -2136948955,
+ "Length": 82108
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Thermal_Radiation",
- "Hash": 1812970220,
- "Length": 86927
+ "Hash": 653046392,
+ "Length": 86906
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Time_Manipulation",
- "Hash": -1389337165,
- "Length": 144329
+ "Hash": 1088700335,
+ "Length": 144319
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Traps",
- "Hash": 1601000860,
- "Length": 42662
+ "Hash": 1823695648,
+ "Length": 42647
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Buff.Trick_Arrow",
- "Hash": -817226782,
- "Length": 73049
+ "Hash": -187067387,
+ "Length": 73020
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Archery",
- "Hash": 244693621,
- "Length": 69492
+ "Hash": -1464333826,
+ "Length": 69469
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Assault_Rifle",
- "Hash": -1608597835,
- "Length": 72873
+ "Hash": 141930900,
+ "Length": 72859
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Beam_Rifle",
- "Hash": -1928762727,
- "Length": 116942
+ "Hash": -1652162057,
+ "Length": 116923
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Dark_Blast",
- "Hash": -856652592,
- "Length": 79821
+ "Hash": 1573119516,
+ "Length": 79798
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Dual_Pistols",
- "Hash": 1246112923,
- "Length": 322728
+ "Hash": 667928377,
+ "Length": 322659
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Electrical_Blast",
- "Hash": -2076377943,
- "Length": 101626
+ "Hash": 1938774977,
+ "Length": 101606
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Energy_Blast",
- "Hash": 2073395066,
- "Length": 97744
+ "Hash": 2038801368,
+ "Length": 97716
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Fire_Blast",
- "Hash": 309448645,
- "Length": 72282
+ "Hash": 320494786,
+ "Length": 72263
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Ice_Blast",
- "Hash": -2021030427,
- "Length": 104177
+ "Hash": -1509703958,
+ "Length": 104150
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Psychic_Blast",
- "Hash": 1162773265,
- "Length": 81077
+ "Hash": -1789731684,
+ "Length": 81059
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Radiation_Blast",
- "Hash": -1405039652,
- "Length": 83946
+ "Hash": -1329346880,
+ "Length": 83926
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Sonic_Attack",
- "Hash": 1077401074,
- "Length": 135627
+ "Hash": -1435286177,
+ "Length": 135610
},
{
"Archetype": "Class_Corruptor",
"Fullname": "Corruptor_Ranged.Water_Blast",
- "Hash": -101700203,
- "Length": 157739
+ "Hash": 436860287,
+ "Length": 157725
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Cold_Domination",
- "Hash": -1253612429,
- "Length": 151613
+ "Hash": 110125163,
+ "Length": 151588
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Dark_Miasma",
- "Hash": -153081590,
- "Length": 114410
+ "Hash": -159607997,
+ "Length": 114402
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Empathy",
- "Hash": -1131281557,
- "Length": 73111
+ "Hash": -607205510,
+ "Length": 73100
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Force_Field",
- "Hash": 915990235,
- "Length": 105978
+ "Hash": -1020138037,
+ "Length": 105955
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Kinetics",
- "Hash": 160258060,
- "Length": 91729
+ "Hash": -2086504092,
+ "Length": 91709
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Nature_Affinity",
- "Hash": -880647632,
- "Length": 107360
+ "Hash": 175143211,
+ "Length": 107348
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Pain_Domination",
- "Hash": 1748246752,
- "Length": 124094
+ "Hash": -1530152356,
+ "Length": 124083
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Poison",
- "Hash": 127541569,
- "Length": 198862
+ "Hash": 115055349,
+ "Length": 198852
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Radiation_Emission",
- "Hash": -362565776,
- "Length": 127187
+ "Hash": 762004868,
+ "Length": 127175
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Sonic_Debuff",
- "Hash": 834081291,
- "Length": 105108
+ "Hash": -85345491,
+ "Length": 105097
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Storm_Summoning",
- "Hash": -2051586782,
- "Length": 79821
+ "Hash": 1527972505,
+ "Length": 79807
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Thermal_Radiation",
- "Hash": 1870501141,
- "Length": 86872
+ "Hash": 1244031615,
+ "Length": 86851
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Time_Manipulation",
- "Hash": 803869020,
- "Length": 144186
+ "Hash": 151477956,
+ "Length": 144176
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Traps",
- "Hash": 1234866605,
- "Length": 42701
+ "Hash": 469161845,
+ "Length": 42686
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Buff.Trick_Arrow",
- "Hash": 544476200,
- "Length": 82818
+ "Hash": -1346768059,
+ "Length": 82789
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Archery",
- "Hash": -1222163040,
- "Length": 53810
+ "Hash": -533346007,
+ "Length": 53787
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Assault_Rifle",
- "Hash": -135671894,
- "Length": 54417
+ "Hash": 1503971369,
+ "Length": 54403
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Beam_Rifle",
- "Hash": -176591323,
- "Length": 100915
+ "Hash": -156330697,
+ "Length": 100896
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Dark_Blast",
- "Hash": 1562200066,
- "Length": 60167
+ "Hash": -916779762,
+ "Length": 60144
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Dual_Pistols",
- "Hash": 1418880342,
- "Length": 303822
+ "Hash": 560276006,
+ "Length": 303753
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Electrical_Blast",
- "Hash": -491585789,
- "Length": 85489
+ "Hash": -1402831777,
+ "Length": 85469
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Energy_Blast",
- "Hash": -250936582,
- "Length": 81773
+ "Hash": -2051629864,
+ "Length": 81745
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Fire_Blast",
- "Hash": -957100130,
- "Length": 56362
+ "Hash": 1932117955,
+ "Length": 56343
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Ice_Blast",
- "Hash": 1172960594,
- "Length": 90442
+ "Hash": -1607876119,
+ "Length": 90415
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Psychic_Blast",
- "Hash": 1617641920,
- "Length": 60775
+ "Hash": -1974647317,
+ "Length": 60757
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Radiation_Blast",
- "Hash": -2072640451,
- "Length": 66666
+ "Hash": -225696091,
+ "Length": 66646
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Sonic_Attack",
- "Hash": 1066368364,
- "Length": 120650
+ "Hash": 11863031,
+ "Length": 120633
},
{
"Archetype": "Class_Defender",
"Fullname": "Defender_Ranged.Water_Blast",
- "Hash": 962025761,
- "Length": 141891
+ "Hash": -1820757141,
+ "Length": 141877
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Dark_Assault",
- "Hash": 676730177,
- "Length": 97982
+ "Hash": -53567709,
+ "Length": 97959
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Earth_Assault",
- "Hash": -785279253,
- "Length": 98233
+ "Hash": 206171415,
+ "Length": 98208
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Electricity_Manipulation",
- "Hash": 2141775943,
- "Length": 110383
+ "Hash": 1659178882,
+ "Length": 110367
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Energy_Assault",
- "Hash": -1945753713,
- "Length": 113587
+ "Hash": 1848103014,
+ "Length": 113557
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Fiery_Assault",
- "Hash": 1676924605,
- "Length": 64531
+ "Hash": -646034059,
+ "Length": 64518
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Icy_Assault",
- "Hash": -1154089127,
- "Length": 126555
+ "Hash": 1843212776,
+ "Length": 126535
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Martial_Assault",
- "Hash": -753424711,
- "Length": 63873
+ "Hash": 972174150,
+ "Length": 63841
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Psionic_Assault",
- "Hash": -1199088860,
- "Length": 75902
+ "Hash": 1321051866,
+ "Length": 75887
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Radioactive_Assault",
- "Hash": -895492328,
- "Length": 107893
+ "Hash": -1762778169,
+ "Length": 107878
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Savage_Assault",
- "Hash": -1386445447,
- "Length": 87488
+ "Hash": 1476991931,
+ "Length": 87462
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Assault.Thorny_Assault",
- "Hash": 1739973404,
- "Length": 83069
+ "Hash": -296154282,
+ "Length": 83048
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Darkness_Control",
- "Hash": -2056700694,
- "Length": 79700
+ "Hash": 221710356,
+ "Length": 79690
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Earth_Control",
- "Hash": 359732806,
- "Length": 81606
+ "Hash": -1191779712,
+ "Length": 81581
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Electric_Control",
- "Hash": -1694173550,
- "Length": 93761
+ "Hash": 1546821079,
+ "Length": 93747
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Fire_Control",
- "Hash": -290645124,
- "Length": 75989
+ "Hash": -1754023225,
+ "Length": 75962
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Gravity_Control",
- "Hash": -1949817995,
- "Length": 101258
+ "Hash": 279613810,
+ "Length": 101245
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Ice_Control",
- "Hash": -403263411,
- "Length": 111909
+ "Hash": 1588472349,
+ "Length": 111896
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Mind_Control",
- "Hash": 1947812340,
- "Length": 70309
+ "Hash": -2120332816,
+ "Length": 70288
},
{
"Archetype": "Class_Dominator",
"Fullname": "Dominator_Control.Plant_Control",
- "Hash": 1099950872,
- "Length": 73310
+ "Hash": -651213140,
+ "Length": 73285
},
{
"Archetype": "",
"Fullname": "Epic.Arctic_Mastery",
- "Hash": 962051091,
- "Length": 77013
+ "Hash": -1592429721,
+ "Length": 77003
},
{
"Archetype": "",
"Fullname": "Epic.Blaze_Mastery",
- "Hash": 77194099,
- "Length": 72840
+ "Hash": 577055791,
+ "Length": 72823
},
{
"Archetype": "",
"Fullname": "Epic.Body_Mastery_Stalker",
- "Hash": 447420848,
- "Length": 38758
+ "Hash": -1007661816,
+ "Length": 38693
},
{
"Archetype": "",
"Fullname": "Epic.Body_Mastery",
- "Hash": -1090042684,
- "Length": 43405
+ "Hash": -1631337579,
+ "Length": 43360
},
{
"Archetype": "",
"Fullname": "Epic.Charge_Mastery",
- "Hash": -49882387,
- "Length": 61525
+ "Hash": -1955104343,
+ "Length": 61519
},
{
"Archetype": "",
"Fullname": "Epic.Chill_Mastery",
- "Hash": -1573351763,
- "Length": 59348
+ "Hash": -1312391580,
+ "Length": 59343
},
{
"Archetype": "",
"Fullname": "Epic.Cold_Mastery",
- "Hash": 891808525,
- "Length": 57107
+ "Hash": 1053734786,
+ "Length": 56939
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Dark_Mastery",
- "Hash": 394238866,
- "Length": 58081
+ "Hash": 1124934467,
+ "Length": 58075
},
{
"Archetype": "",
"Fullname": "Epic.Dark_Mastery",
- "Hash": 1898242371,
- "Length": 61688
+ "Hash": -1138826508,
+ "Length": 61673
},
{
"Archetype": "",
"Fullname": "Epic.Darkness_Mastery",
- "Hash": -2075624173,
- "Length": 82115
+ "Hash": -813687898,
+ "Length": 82108
},
{
"Archetype": "",
"Fullname": "Epic.Earth_Mastery",
- "Hash": -59742716,
- "Length": 58887
+ "Hash": -2028900520,
+ "Length": 58877
},
{
"Archetype": "",
"Fullname": "Epic.Electrical_Mastery",
- "Hash": 1221495883,
- "Length": 59764
+ "Hash": 1793532809,
+ "Length": 59758
},
{
"Archetype": "",
"Fullname": "Epic.Electricity_Mastery",
- "Hash": 180483232,
- "Length": 67926
+ "Hash": -62224088,
+ "Length": 67921
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Elec_Mastery",
- "Hash": -1160413912,
- "Length": 35627
+ "Hash": 170416870,
+ "Length": 35615
},
{
"Archetype": "",
"Fullname": "Epic.Energy_Mastery",
- "Hash": -1619798068,
- "Length": 39014
+ "Hash": -1298355103,
+ "Length": 38969
},
{
"Archetype": "",
"Fullname": "Epic.Energy_Mastery_Brute",
- "Hash": 1713481092,
- "Length": 39046
+ "Hash": -639816256,
+ "Length": 38981
},
{
"Archetype": "",
"Fullname": "Epic.Field_Mastery",
- "Hash": 2018006231,
- "Length": 55512
+ "Hash": 1219693210,
+ "Length": 55503
},
{
"Archetype": "",
"Fullname": "Epic.Fire_Mastery_Dominator",
- "Hash": 1465273272,
- "Length": 50157
+ "Hash": 1464370497,
+ "Length": 50149
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Fire_Mastery",
- "Hash": -1429220628,
- "Length": 38159
+ "Hash": 1662438529,
+ "Length": 38148
},
{
"Archetype": "",
"Fullname": "Epic.Fire_Mastery",
- "Hash": 2110881080,
- "Length": 51051
+ "Hash": 1724078257,
+ "Length": 51046
},
{
"Archetype": "",
"Fullname": "Epic.Flame_Mastery",
- "Hash": 1521248244,
- "Length": 54583
+ "Hash": -182656632,
+ "Length": 54573
},
{
"Archetype": "",
"Fullname": "Epic.Def_Flame_Mastery",
- "Hash": -1628408130,
- "Length": 57921
+ "Hash": 1024299749,
+ "Length": 57912
},
{
"Archetype": "",
"Fullname": "Epic.Corr_Flame_Mastery",
- "Hash": -1743388121,
- "Length": 57943
+ "Hash": -548001974,
+ "Length": 57934
},
{
"Archetype": "",
"Fullname": "Epic.Force_Mastery",
- "Hash": 322737732,
- "Length": 81192
+ "Hash": 67605974,
+ "Length": 81190
},
{
"Archetype": "",
"Fullname": "Epic.Heat_Mastery_Stalker",
- "Hash": 182627916,
- "Length": 37596
+ "Hash": 1019117164,
+ "Length": 37586
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Ice_Mastery",
- "Hash": 1997667129,
- "Length": 62156
+ "Hash": 1726568041,
+ "Length": 62150
},
{
"Archetype": "",
"Fullname": "Epic.Ice_Mastery",
- "Hash": 718353091,
- "Length": 64045
+ "Hash": -1777786049,
+ "Length": 64040
},
{
"Archetype": "",
"Fullname": "Epic.Ice_Mastery_Dominator",
- "Hash": -408241843,
- "Length": 48096
+ "Hash": -1700988266,
+ "Length": 48091
},
{
"Archetype": "",
"Fullname": "Epic.Brute_Leviathan_Mastery",
- "Hash": -1428340978,
- "Length": 81113
+ "Hash": -742781849,
+ "Length": 81106
},
{
"Archetype": "",
"Fullname": "Epic.VEAT_Leviathan_Mastery",
- "Hash": -845572494,
- "Length": 53004
+ "Hash": 1179274659,
+ "Length": 52997
},
{
"Archetype": "",
"Fullname": "Epic.Dominator_Leviathan_Mastery",
- "Hash": 1749747747,
- "Length": 44818
+ "Hash": 557462639,
+ "Length": 44807
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Lev_Mastery",
- "Hash": 1534286326,
- "Length": 46509
+ "Hash": -1349044351,
+ "Length": 46503
},
{
"Archetype": "",
"Fullname": "Epic.Corruptor_Leviathan_Mastery",
- "Hash": 2101616879,
- "Length": 56357
+ "Hash": 1313940864,
+ "Length": 56351
},
{
"Archetype": "",
"Fullname": "Epic.Stalker_Leviathan_Mastery",
- "Hash": 832075837,
- "Length": 43847
+ "Hash": -1544269744,
+ "Length": 43835
},
{
"Archetype": "",
"Fullname": "Epic.Mastermind_Leviathan_Mastery",
- "Hash": 1749375475,
- "Length": 51181
+ "Hash": 590690421,
+ "Length": 51176
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Mace_Mastery",
- "Hash": 2124876141,
- "Length": 41408
+ "Hash": 980928398,
+ "Length": 41395
},
{
"Archetype": "",
"Fullname": "Epic.Blaster_Mace_Mastery",
- "Hash": 1023823805,
- "Length": 59457
+ "Hash": -1045598607,
+ "Length": 59448
},
{
"Archetype": "",
"Fullname": "Epic.Mastermind_Mace_Mastery",
- "Hash": 217765056,
- "Length": 81000
+ "Hash": -10258840,
+ "Length": 80986
},
{
"Archetype": "",
"Fullname": "Epic.Stalker_Mace_Mastery",
- "Hash": 474922625,
- "Length": 58405
+ "Hash": 630541846,
+ "Length": 58396
},
{
"Archetype": "",
"Fullname": "Epic.Dominator_Mace_Mastery",
- "Hash": -1574907764,
- "Length": 86753
+ "Hash": 1253116255,
+ "Length": 86745
},
{
"Archetype": "",
"Fullname": "Epic.Controller_Mace_Mastery",
- "Hash": -224929995,
- "Length": 66002
+ "Hash": 1949205813,
+ "Length": 65989
},
{
"Archetype": "",
"Fullname": "Epic.Brute_Mace_Mastery",
- "Hash": -1689412096,
- "Length": 55666
+ "Hash": 749463178,
+ "Length": 55653
},
{
"Archetype": "",
"Fullname": "Epic.Corruptor_Mace_Mastery",
- "Hash": -537861399,
- "Length": 56529
+ "Hash": 57863509,
+ "Length": 56516
},
{
"Archetype": "",
"Fullname": "Epic.VEAT_Mace_Mastery",
- "Hash": 1635416741,
- "Length": 45186
+ "Hash": 1383781838,
+ "Length": 45178
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Mu_Mastery",
- "Hash": -511402543,
- "Length": 52513
+ "Hash": -1535856126,
+ "Length": 52497
},
{
"Archetype": "",
"Fullname": "Epic.Mastermind_Mu_Mastery",
- "Hash": 1630703738,
- "Length": 63906
+ "Hash": 1744439525,
+ "Length": 63895
},
{
"Archetype": "",
"Fullname": "Epic.Blaster_Mu_Mastery",
- "Hash": 1993554698,
- "Length": 53191
+ "Hash": -489637345,
+ "Length": 53176
},
{
"Archetype": "",
"Fullname": "Epic.VEAT_Mu_Mastery",
- "Hash": -99541170,
- "Length": 46270
+ "Hash": 1147097330,
+ "Length": 46245
},
{
"Archetype": "",
"Fullname": "Epic.Brute_Mu_Mastery",
- "Hash": -474465127,
- "Length": 68119
+ "Hash": -368336355,
+ "Length": 68094
},
{
"Archetype": "",
"Fullname": "Epic.Stalker_Mu_Mastery",
- "Hash": -1131497963,
- "Length": 58065
+ "Hash": -1950550787,
+ "Length": 58045
},
{
"Archetype": "",
"Fullname": "Epic.Dominator_Mu_Mastery",
- "Hash": 975787054,
- "Length": 54660
+ "Hash": -966808962,
+ "Length": 54645
},
{
"Archetype": "",
"Fullname": "Epic.Corruptor_Mu_Mastery",
- "Hash": 489023154,
- "Length": 43489
+ "Hash": -1960947349,
+ "Length": 43476
},
{
"Archetype": "",
"Fullname": "Epic.Munitions_Mastery",
- "Hash": 48531185,
- "Length": 50868
+ "Hash": 1274386888,
+ "Length": 50837
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Ninja_Mastery",
- "Hash": 1241750325,
- "Length": 52590
+ "Hash": -1545835223,
+ "Length": 52576
},
{
"Archetype": "",
"Fullname": "Epic.Power_Mastery",
- "Hash": -2047831697,
- "Length": 78947
+ "Hash": -791736547,
+ "Length": 78932
},
{
"Archetype": "",
"Fullname": "Epic.Primal_Forces_Mastery_Dominator",
- "Hash": -29729173,
- "Length": 46716
+ "Hash": -1537521067,
+ "Length": 46701
},
{
"Archetype": "",
"Fullname": "Epic.Primal_Forces_Mastery",
- "Hash": -2052137013,
- "Length": 66968
+ "Hash": -1365180573,
+ "Length": 66948
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Psi_Mastery",
- "Hash": -238783762,
- "Length": 41133
+ "Hash": -1568139014,
+ "Length": 41117
},
{
"Archetype": "",
"Fullname": "Epic.Psionic_Mastery",
- "Hash": -199899958,
- "Length": 52098
+ "Hash": -1295383746,
+ "Length": 52093
},
{
"Archetype": "",
"Fullname": "Epic.Psionic_Mastery_Domingator",
- "Hash": -1391040937,
- "Length": 60164
+ "Hash": -341731819,
+ "Length": 60159
},
{
"Archetype": "",
"Fullname": "Epic.Psychic_Mastery",
- "Hash": -226478268,
- "Length": 40192
+ "Hash": 1245375053,
+ "Length": 40176
},
{
"Archetype": "",
"Fullname": "Epic.Pyre_Mastery",
- "Hash": -2094183895,
- "Length": 65926
+ "Hash": 1738643141,
+ "Length": 65909
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Epic.Sentinel_Soul_Mastery",
- "Hash": -175489649,
- "Length": 42402
+ "Hash": 1429420989,
+ "Length": 42396
},
{
"Archetype": "",
"Fullname": "Epic.Stalker_Soul_Mastery",
- "Hash": 1580054246,
- "Length": 47393
+ "Hash": -814694296,
+ "Length": 47385
},
{
"Archetype": "",
"Fullname": "Epic.Brute_Soul_Mastery",
- "Hash": 497684368,
- "Length": 61563
+ "Hash": 1445395197,
+ "Length": 61550
},
{
"Archetype": "",
"Fullname": "Epic.Mastermind_Soul_Mastery",
- "Hash": 855447855,
- "Length": 45157
+ "Hash": -556394988,
+ "Length": 45146
},
{
"Archetype": "",
"Fullname": "Epic.VEAT_Soul_Mastery",
- "Hash": 1995254863,
- "Length": 46200
+ "Hash": 1038733080,
+ "Length": 46187
},
{
"Archetype": "",
"Fullname": "Epic.Dominator_Soul_Mastery",
- "Hash": 1791659680,
- "Length": 59822
+ "Hash": -1305523231,
+ "Length": 59815
},
{
"Archetype": "",
"Fullname": "Epic.Corruptor_Soul_Mastery",
- "Hash": -1286453376,
- "Length": 81769
+ "Hash": -1479990402,
+ "Length": 81759
},
{
"Archetype": "",
"Fullname": "Epic.Stone_Mastery",
- "Hash": -723924523,
- "Length": 57673
+ "Hash": 356288384,
+ "Length": 57660
},
{
"Archetype": "",
"Fullname": "Epic.Weapon_Mastery",
- "Hash": 972161936,
- "Length": 51938
+ "Hash": -1758975006,
+ "Length": 51913
},
{
"Archetype": "",
"Fullname": "Epic.Weapon_Mastery_Stalker",
- "Hash": -1769037091,
- "Length": 44975
+ "Hash": -1591946519,
+ "Length": 44930
},
{
"Archetype": "",
"Fullname": "Incarnate.Alpha",
- "Hash": -1228948410,
- "Length": 695970
+ "Hash": 1989016180,
+ "Length": 694098
},
{
"Archetype": "",
"Fullname": "Incarnate.Alpha_Silent",
- "Hash": 1541861847,
- "Length": 806090
+ "Hash": -72106697,
+ "Length": 802814
},
{
"Archetype": "",
"Fullname": "Incarnate.AntiMatterRayBurn",
- "Hash": -982071179,
- "Length": 4294
+ "Hash": 1412434762,
+ "Length": 4268
},
{
"Archetype": "",
"Fullname": "Incarnate.Data",
- "Hash": 930766652,
- "Length": 35536
+ "Hash": -1053827567,
+ "Length": 35527
},
{
"Archetype": "",
"Fullname": "Incarnate.Defiler_Pets",
- "Hash": -1116870775,
- "Length": 13108
+ "Hash": 1415966026,
+ "Length": 13082
},
{
"Archetype": "",
"Fullname": "Incarnate.Destiny",
- "Hash": -429552379,
- "Length": 2037558
+ "Hash": -1779516881,
+ "Length": 2037450
},
{
"Archetype": "",
"Fullname": "Incarnate.Barrier_Rez",
- "Hash": 1963556258,
- "Length": 14646
+ "Hash": 269383019,
+ "Length": 14568
},
{
"Archetype": "",
"Fullname": "Incarnate.Destiny_Silent",
- "Hash": -1213625584,
- "Length": 14142
+ "Hash": -1898983909,
+ "Length": 14064
},
{
"Archetype": "",
"Fullname": "Incarnate.Fate",
- "Hash": 724635671,
- "Length": 444114
+ "Hash": 45370262,
+ "Length": 444103
},
{
"Archetype": "",
"Fullname": "Incarnate.Faux_Granter",
- "Hash": -341985384,
- "Length": 2021
+ "Hash": 1851032393,
+ "Length": 1995
},
{
"Archetype": "",
"Fullname": "Incarnate.Faux_Uberbuff",
- "Hash": -1303917800,
- "Length": 2031
+ "Hash": 674306811,
+ "Length": 2005
},
{
"Archetype": "",
"Fullname": "Incarnate.Genesis",
- "Hash": 40820450,
- "Length": 339587
+ "Hash": -583264708,
+ "Length": 338650
},
{
"Archetype": "",
"Fullname": "Incarnate.Genesis_Silent",
- "Hash": 732300950,
- "Length": 207321
+ "Hash": 896140580,
+ "Length": 206801
},
{
"Archetype": "",
"Fullname": "Incarnate.Hybrid_Silent",
- "Hash": -972699293,
- "Length": 299024
+ "Hash": -1027952937,
+ "Length": 297412
},
{
"Archetype": "",
"Fullname": "Incarnate.Hybrid",
- "Hash": -1929622987,
- "Length": 763749
+ "Hash": -189642331,
+ "Length": 762813
},
{
"Archetype": "",
"Fullname": "Incarnate.Interface",
- "Hash": -1935574264,
- "Length": 491308
+ "Hash": -1037723054,
+ "Length": 489436
},
{
"Archetype": "",
"Fullname": "Incarnate.Interface_Silent",
- "Hash": 70595658,
- "Length": 184126
+ "Hash": -1955472603,
+ "Length": 182436
},
{
"Archetype": "",
"Fullname": "Incarnate.Ion_Judgement",
- "Hash": -148751302,
- "Length": 266659
+ "Hash": 2121865728,
+ "Length": 265879
},
{
"Archetype": "",
"Fullname": "Incarnate.Judgement",
- "Hash": 1583211834,
- "Length": 327150
+ "Hash": -629816341,
+ "Length": 326961
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore",
- "Hash": -64263380,
- "Length": 960022
+ "Hash": -357008068,
+ "Length": 959842
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Arachnos_Boss",
- "Hash": -331637913,
- "Length": 21763
+ "Hash": -110342277,
+ "Length": 21759
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Arachnos_LT",
- "Hash": -1817216717,
- "Length": 18522
+ "Hash": -2075167540,
+ "Length": 18519
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Arachnos_Support",
- "Hash": 403592507,
- "Length": 10292
+ "Hash": 819370658,
+ "Length": 10290
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Arachnos_Support_Attack",
- "Hash": -304734116,
- "Length": 4344
+ "Hash": -211140617,
+ "Length": 4343
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Banished_Boss",
- "Hash": 1057003707,
- "Length": 39944
+ "Hash": 1221030970,
+ "Length": 39939
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Banished_LT",
- "Hash": -1820998733,
- "Length": 22340
+ "Hash": 563457650,
+ "Length": 22335
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Banished_Support",
- "Hash": -66712730,
- "Length": 9856
+ "Hash": 610876970,
+ "Length": 9854
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Banished_Support_Attack",
- "Hash": -517777075,
- "Length": 8053
+ "Hash": -1844397940,
+ "Length": 8052
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Carnival_Boss",
- "Hash": -70800744,
- "Length": 25412
+ "Hash": 1086350064,
+ "Length": 25407
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Carnival_LT",
- "Hash": -262306453,
- "Length": 16293
+ "Hash": 598450242,
+ "Length": 16282
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Carnival_Support",
- "Hash": -890890538,
- "Length": 14145
+ "Hash": 642204788,
+ "Length": 14143
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Carnival_Support_Attack",
- "Hash": -1657590058,
- "Length": 4437
+ "Hash": -524855011,
+ "Length": 4435
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Cimeroran_Boss",
- "Hash": -202849336,
- "Length": 19089
+ "Hash": -730459346,
+ "Length": 19077
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Cimeroran_LT",
- "Hash": -1670352432,
- "Length": 15043
+ "Hash": 161123665,
+ "Length": 15032
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Cimeroran_Support",
- "Hash": -2109811692,
- "Length": 6076
+ "Hash": 2073669499,
+ "Length": 6074
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Clockwork_Boss",
- "Hash": 77281970,
- "Length": 15602
+ "Hash": -921447532,
+ "Length": 15596
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Clockwork_LT",
- "Hash": 1792776664,
- "Length": 13771
+ "Hash": -1571897144,
+ "Length": 13767
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Clockwork_Support",
- "Hash": 967102254,
- "Length": 15824
+ "Hash": 233487441,
+ "Length": 15822
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Drones_Boss",
- "Hash": -453572636,
- "Length": 12376
+ "Hash": -1101674758,
+ "Length": 12372
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Drones_LT",
- "Hash": -1609697969,
- "Length": 8366
+ "Hash": -116917214,
+ "Length": 8363
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Elementals_Boss",
- "Hash": 984278020,
- "Length": 25263
+ "Hash": 1328177652,
+ "Length": 25252
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Elementals_LT",
- "Hash": -1062460596,
- "Length": 18785
+ "Hash": 478806951,
+ "Length": 18776
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Elementals_Support",
- "Hash": -1390024545,
- "Length": 19116
+ "Hash": 431652094,
+ "Length": 19114
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Generic",
- "Hash": -506560174,
- "Length": 48872
+ "Hash": 144293955,
+ "Length": 48690
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_IDF_Boss",
- "Hash": 262696839,
- "Length": 18470
+ "Hash": -1683976765,
+ "Length": 18461
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_IDF_LT",
- "Hash": -1576331315,
- "Length": 11545
+ "Hash": -557643743,
+ "Length": 11543
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_IDF_Support",
- "Hash": 629105487,
- "Length": 33170
+ "Hash": -1376595028,
+ "Length": 33168
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Knives_Boss",
- "Hash": 532162882,
- "Length": 66579
+ "Hash": 18129662,
+ "Length": 66574
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Knives_LT",
- "Hash": 813702090,
- "Length": 25632
+ "Hash": -158223735,
+ "Length": 25623
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Knives_Support",
- "Hash": -2137404734,
- "Length": 52397
+ "Hash": -1313564320,
+ "Length": 52390
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Knives_Support_Attack",
- "Hash": 1995927012,
- "Length": 17421
+ "Hash": -1799323471,
+ "Length": 17419
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Lights_Boss",
- "Hash": -1460905127,
- "Length": 21451
+ "Hash": 501163795,
+ "Length": 21438
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Lights_LT",
- "Hash": -1461330683,
- "Length": 8283
+ "Hash": -20703515,
+ "Length": 8279
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Lights_Support",
- "Hash": -594581495,
- "Length": 15810
+ "Hash": -1850247400,
+ "Length": 15808
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Longbow_Boss",
- "Hash": -189174236,
- "Length": 19466
+ "Hash": -957230930,
+ "Length": 19461
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Longbow_LT",
- "Hash": -1793874723,
- "Length": 15560
+ "Hash": 1558835793,
+ "Length": 15556
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Longbow_Support",
- "Hash": 1069291606,
- "Length": 6050
+ "Hash": 1582195425,
+ "Length": 6048
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Nemesis_Boss",
- "Hash": 1465547238,
- "Length": 22092
+ "Hash": 1202581129,
+ "Length": 22062
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Nemesis_LT",
- "Hash": -1896291468,
- "Length": 12396
+ "Hash": 973772217,
+ "Length": 12393
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Nemesis_Support",
- "Hash": -899000033,
- "Length": 21121
+ "Hash": -1272965389,
+ "Length": 21119
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Nemesis_Support_Attack",
- "Hash": -1040328282,
- "Length": 3348
+ "Hash": 1376527487,
+ "Length": 3347
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Phantoms_Boss",
- "Hash": -2090022161,
- "Length": 18974
+ "Hash": -432684881,
+ "Length": 18971
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Phantoms_LT",
- "Hash": -1967213318,
- "Length": 9453
+ "Hash": -711505098,
+ "Length": 9451
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Phantoms_Support",
- "Hash": 1032685834,
- "Length": 13254
+ "Hash": 1653950858,
+ "Length": 13252
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rikti_Boss",
- "Hash": 1167003004,
- "Length": 20164
+ "Hash": -1421618194,
+ "Length": 20154
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rikti_LT",
- "Hash": 234870129,
- "Length": 16937
+ "Hash": -1215423672,
+ "Length": 16922
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rikti_Support",
- "Hash": 715731031,
- "Length": 22064
+ "Hash": -1858458845,
+ "Length": 22062
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rularuu_Boss",
- "Hash": -1867923799,
- "Length": 21368
+ "Hash": 1940638238,
+ "Length": 21362
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rularuu_LT",
- "Hash": 224154154,
- "Length": 9701
+ "Hash": 2097895393,
+ "Length": 9688
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rularuu_Support",
- "Hash": 819012862,
- "Length": 13494
+ "Hash": 977040177,
+ "Length": 13493
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Rularuu_Support_Attack",
- "Hash": -69608810,
+ "Hash": -1260283842,
"Length": 5450
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Seers_Boss",
- "Hash": 1322391756,
- "Length": 16572
+ "Hash": -1378303315,
+ "Length": 16564
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Seers_LT",
- "Hash": 2081470836,
- "Length": 10601
+ "Hash": 1166166582,
+ "Length": 10593
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Seers_Support",
- "Hash": 1762742380,
- "Length": 24967
+ "Hash": -1213606288,
+ "Length": 24965
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Talons_Boss",
- "Hash": -483780348,
- "Length": 42352
+ "Hash": -1203072715,
+ "Length": 42346
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Talons_LT",
- "Hash": -1654175289,
- "Length": 38760
+ "Hash": 991374626,
+ "Length": 38755
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Talons_Support",
- "Hash": -477156643,
- "Length": 18885
+ "Hash": -2111988057,
+ "Length": 18882
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Talons_Support_Attack",
- "Hash": -2110371789,
- "Length": 5700
+ "Hash": 1667569976,
+ "Length": 5699
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Tsoo_Boss",
- "Hash": 665506377,
- "Length": 28083
+ "Hash": 1396786587,
+ "Length": 28074
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Tsoo_LT",
- "Hash": 531041940,
- "Length": 11600
+ "Hash": -552443878,
+ "Length": 11591
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Tsoo_Support",
- "Hash": 1922059784,
- "Length": 15954
+ "Hash": -544834107,
+ "Length": 15925
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Tsoo_Support_Attack",
- "Hash": 1141192495,
- "Length": 4378
+ "Hash": -1090413340,
+ "Length": 4377
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Vanguard_Boss",
- "Hash": 1201788685,
- "Length": 32304
+ "Hash": 1244455525,
+ "Length": 32276
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Vanguard_LT",
- "Hash": 197719910,
- "Length": 17374
+ "Hash": -1723595734,
+ "Length": 17365
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Vanguard_Support",
- "Hash": -741339902,
- "Length": 26836
+ "Hash": 93897964,
+ "Length": 26834
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Warworks_Boss",
- "Hash": -1479341559,
- "Length": 22300
+ "Hash": 1309649938,
+ "Length": 22290
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Pet_Warworks_LT",
- "Hash": 879442474,
- "Length": 8443
+ "Hash": 987744328,
+ "Length": 8442
},
{
"Archetype": "",
"Fullname": "Incarnate.Lore_Silent",
- "Hash": -496306512,
- "Length": 2842
+ "Hash": 534429487,
+ "Length": 2816
},
{
"Archetype": "",
"Fullname": "Incarnate.Mind",
- "Hash": -1121958044,
- "Length": 2964
+ "Hash": -2082560798,
+ "Length": 2963
},
{
"Archetype": "",
"Fullname": "Incarnate.Omega",
- "Hash": 1883629256,
- "Length": 2971
+ "Hash": -1627485102,
+ "Length": 2970
},
{
"Archetype": "",
"Fullname": "Incarnate.Faux_Proc",
- "Hash": 1552962812,
- "Length": 3804
+ "Hash": -1797728610,
+ "Length": 3752
},
{
"Archetype": "",
"Fullname": "Incarnate.Socket",
- "Hash": 1471106852,
- "Length": 39577
+ "Hash": 1745951670,
+ "Length": 39317
},
{
"Archetype": "",
"Fullname": "Incarnate.Stance",
- "Hash": -2103337087,
- "Length": 2978
+ "Hash": -1045012279,
+ "Length": 2977
},
{
"Archetype": "",
"Fullname": "Incarnate.Faux_Untouchable",
- "Hash": -1780768238,
- "Length": 2090
+ "Hash": -692969159,
+ "Length": 2064
},
{
"Archetype": "",
"Fullname": "Incarnate.Verdict",
- "Hash": 1852156000,
- "Length": 64171
+ "Hash": 905275868,
+ "Length": 64138
},
{
"Archetype": "",
"Fullname": "Incarnate.Vitae",
- "Hash": 820257385,
- "Length": 2971
+ "Hash": -1718508327,
+ "Length": 2970
},
{
"Archetype": "",
"Fullname": "Inherent.Savage_Melee",
- "Hash": 231246581,
- "Length": 6225
+ "Hash": 1116364174,
+ "Length": 6199
},
{
"Archetype": "",
"Fullname": "Inherent.Inherent",
- "Hash": 1119809034,
- "Length": 1134519
+ "Hash": 2123942081,
+ "Length": 1132413
},
{
"Archetype": "",
"Fullname": "Inherent.Fitness",
- "Hash": -1407636227,
- "Length": 16901
+ "Hash": -180932355,
+ "Length": 16797
},
{
"Archetype": "",
"Fullname": "Kheldian_Pets.Omega_Bomb",
- "Hash": -363153733,
- "Length": 12984
+ "Hash": 1949519682,
+ "Length": 12906
},
{
"Archetype": "",
"Fullname": "Kheldian_Pets.Energy_Drone1",
- "Hash": 1227594309,
- "Length": 12843
+ "Hash": -1499588122,
+ "Length": 12765
},
{
"Archetype": "",
"Fullname": "Kheldian_Pets.Energy_Drone2",
- "Hash": -1240760752,
- "Length": 12843
+ "Hash": -649301649,
+ "Length": 12765
},
{
"Archetype": "",
"Fullname": "Kheldian_Pets.Energy_Drone3",
- "Hash": 1570019815,
- "Length": 12843
+ "Hash": 114724138,
+ "Length": 12765
},
{
"Archetype": "",
"Fullname": "Kheldian_Pets.Warshade_Extraction",
- "Hash": -154578786,
- "Length": 35421
+ "Hash": 1378737983,
+ "Length": 35364
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Cold_Domination",
- "Hash": 488786456,
- "Length": 151646
+ "Hash": 34154040,
+ "Length": 151621
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Dark_Miasma",
- "Hash": 1804366692,
- "Length": 96529
+ "Hash": -2019334179,
+ "Length": 96521
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Empathy",
- "Hash": -1742539360,
- "Length": 73325
+ "Hash": -615710349,
+ "Length": 73314
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Force_Field",
- "Hash": 76823117,
- "Length": 105271
+ "Hash": -956206415,
+ "Length": 105248
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Kinetics",
- "Hash": -1147211411,
- "Length": 81966
+ "Hash": 594970429,
+ "Length": 81946
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Nature_Affinity",
- "Hash": -355159590,
- "Length": 107590
+ "Hash": -1120324961,
+ "Length": 107578
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Pain_Domination",
- "Hash": -32971441,
- "Length": 124174
+ "Hash": -250432121,
+ "Length": 124163
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Poison",
- "Hash": -1747890920,
- "Length": 181287
+ "Hash": 298631092,
+ "Length": 181277
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Radiation_Emission",
- "Hash": 265164094,
- "Length": 109578
+ "Hash": -829067304,
+ "Length": 109566
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Sonic_Resonance",
- "Hash": 196141400,
- "Length": 86585
+ "Hash": -981921776,
+ "Length": 86574
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Storm_Summoning",
- "Hash": 815725463,
- "Length": 77193
+ "Hash": -295402686,
+ "Length": 77179
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Thermal_Radiation",
- "Hash": -524378073,
- "Length": 87037
+ "Hash": 1179029677,
+ "Length": 87016
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Time_Manipulation",
- "Hash": -1470586079,
- "Length": 144348
+ "Hash": -930535931,
+ "Length": 144338
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Traps",
- "Hash": 918981844,
- "Length": 43644
+ "Hash": 1837604511,
+ "Length": 43629
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Buff.Trick_Arrow",
- "Hash": 1524920077,
- "Length": 73236
+ "Hash": 1950433960,
+ "Length": 73207
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Alpha_Wolf_3",
- "Hash": -1636178999,
- "Length": 17850
+ "Hash": -1995771577,
+ "Length": 17821
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Alpha_Wolf",
- "Hash": -157019862,
- "Length": 44715
+ "Hash": 198883093,
+ "Length": 44634
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Alpha_Wolf_2",
- "Hash": 1739399911,
- "Length": 29018
+ "Hash": 72462043,
+ "Length": 28932
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Arsonist_Burn",
- "Hash": 2066741041,
- "Length": 5512
+ "Hash": 1694100713,
+ "Length": 5460
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Arsonist",
- "Hash": 464268022,
- "Length": 15350
+ "Hash": 1289602567,
+ "Length": 15296
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Arsonist_3",
- "Hash": 539043448,
- "Length": 23428
+ "Hash": 1172918988,
+ "Length": 23245
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Arsonist_2",
- "Hash": -510524055,
- "Length": 23383
+ "Hash": -1570212739,
+ "Length": 23200
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Assault",
- "Hash": 219507768,
- "Length": 29887
+ "Hash": 1778482914,
+ "Length": 29832
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Assault_3",
- "Hash": -1541664196,
- "Length": 12187
+ "Hash": 1314504573,
+ "Length": 12159
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Assault_2",
- "Hash": 1033257652,
- "Length": 14451
+ "Hash": 1593647799,
+ "Length": 14422
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Cold_Demonling_2",
- "Hash": 1371334095,
- "Length": 12450
+ "Hash": -13048331,
+ "Length": 12422
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Cold_Demonling",
- "Hash": -1424047503,
- "Length": 31306
+ "Hash": 410561289,
+ "Length": 31251
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Cold_Demonling_3",
- "Hash": 434349971,
- "Length": 11627
+ "Hash": -1973991134,
+ "Length": 11600
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Commando_2",
- "Hash": 2010163591,
- "Length": 12301
+ "Hash": 1862692366,
+ "Length": 12272
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Commando_3",
- "Hash": -1188470411,
- "Length": 23974
+ "Hash": 136372915,
+ "Length": 23943
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Commando",
- "Hash": -204895058,
- "Length": 30961
+ "Hash": -895187808,
+ "Length": 30905
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Demon_Prince_3",
- "Hash": -998611697,
- "Length": 18825
+ "Hash": 1135353645,
+ "Length": 18797
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Demon_Prince_2",
- "Hash": -125195757,
- "Length": 35893
+ "Hash": 293418543,
+ "Length": 35840
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Demon_Prince",
- "Hash": 1733020278,
- "Length": 43010
+ "Hash": 1173199293,
+ "Length": 42955
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Dire_Wolf",
- "Hash": -1610087173,
- "Length": 59031
+ "Hash": 2084699025,
+ "Length": 58923
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Dire_Wolf_2",
- "Hash": 1196293183,
- "Length": 29415
+ "Hash": 880968678,
+ "Length": 29330
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Dire_Wolf_3",
- "Hash": 580824723,
- "Length": 28370
+ "Hash": -733185042,
+ "Length": 28315
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Droid",
- "Hash": -1993324175,
- "Length": 22396
+ "Hash": -1862239923,
+ "Length": 22341
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Droid_3",
- "Hash": 1428588164,
- "Length": 6003
+ "Hash": -389825241,
+ "Length": 5976
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Droid_2",
- "Hash": -1959183818,
- "Length": 9166
+ "Hash": 420621316,
+ "Length": 9139
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Ember_Demon_2",
- "Hash": 1052642430,
- "Length": 8874
+ "Hash": -977336579,
+ "Length": 8846
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Ember_Demon_3",
- "Hash": -615291427,
- "Length": 11994
+ "Hash": 2062587764,
+ "Length": 11965
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Ember_Demon",
- "Hash": -227336014,
- "Length": 39596
+ "Hash": 1777659685,
+ "Length": 39490
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Fiery_Demonling_3",
- "Hash": -1135662333,
- "Length": 6123
+ "Hash": 2139034540,
+ "Length": 6096
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Fiery_Demonling_2",
- "Hash": 1600942568,
- "Length": 7083
+ "Hash": -762092320,
+ "Length": 7055
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Fiery_Demonling",
- "Hash": 1039518537,
- "Length": 25718
+ "Hash": -735936359,
+ "Length": 25663
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Genin_2",
- "Hash": -1445177028,
- "Length": 10553
+ "Hash": -1903048279,
+ "Length": 10519
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Genin",
- "Hash": -1914985487,
- "Length": 25718
+ "Hash": -1406984375,
+ "Length": 25654
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Genin_3",
- "Hash": -477650067,
- "Length": 15358
+ "Hash": -722736098,
+ "Length": 15298
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Ghosts",
- "Hash": -1517279283,
- "Length": 49883
+ "Hash": 1441838,
+ "Length": 49748
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Demonling_2",
- "Hash": -711983429,
- "Length": 15633
+ "Hash": 1788037409,
+ "Length": 15606
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Demonling_3",
- "Hash": 610315142,
- "Length": 16008
+ "Hash": 2134609,
+ "Length": 15981
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Demonling",
- "Hash": -26497456,
- "Length": 34774
+ "Hash": -1288144582,
+ "Length": 34719
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Gargoyle_3",
- "Hash": 912986745,
- "Length": 15331
+ "Hash": -1508324686,
+ "Length": 15301
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Gargoyle",
- "Hash": 1275506120,
- "Length": 44906
+ "Hash": -859267325,
+ "Length": 44850
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Hellfire_Gargoyle_2",
- "Hash": -287025561,
- "Length": 18937
+ "Hash": 1748352851,
+ "Length": 18884
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Howler_Wolf",
- "Hash": 40774975,
- "Length": 44771
+ "Hash": -614524968,
+ "Length": 44690
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Howler_Wolf_3",
- "Hash": -1625655006,
- "Length": 23872
+ "Hash": 1317665652,
+ "Length": 23817
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Howler_Wolf_2",
- "Hash": 2139340246,
- "Length": 15006
+ "Hash": 1930108655,
+ "Length": 14948
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Jonin_2",
- "Hash": 1257260876,
- "Length": 30522
+ "Hash": -2081581149,
+ "Length": 30464
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Jonin",
- "Hash": 2142921904,
- "Length": 29765
+ "Hash": -1559128597,
+ "Length": 29705
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Jonin_3",
- "Hash": -1774842389,
- "Length": 37516
+ "Hash": -2053269283,
+ "Length": 37455
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lich_2",
- "Hash": -1889606536,
- "Length": 18012
+ "Hash": -1767862696,
+ "Length": 17958
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lich",
- "Hash": -979175502,
- "Length": 23839
+ "Hash": 835188403,
+ "Length": 23784
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lich_3",
- "Hash": -1396332323,
- "Length": 17193
+ "Hash": -380368132,
+ "Length": 17113
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lioness_2",
- "Hash": -336612419,
- "Length": 19125
+ "Hash": -953896330,
+ "Length": 19096
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lioness",
- "Hash": -916217224,
- "Length": 51986
+ "Hash": 622273855,
+ "Length": 51878
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Lioness_3",
- "Hash": 2037408214,
- "Length": 20163
+ "Hash": 1301681145,
+ "Length": 20082
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Living_Hellfire",
- "Hash": 496540140,
- "Length": 11278
+ "Hash": -1930526932,
+ "Length": 11225
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Medic_2",
- "Hash": -2053631490,
- "Length": 6892
+ "Hash": -781183873,
+ "Length": 6865
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Medic_3",
- "Hash": -2121004637,
- "Length": 17180
+ "Hash": -1543022471,
+ "Length": 17152
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Medic",
- "Hash": -189519124,
- "Length": 23142
+ "Hash": -491075049,
+ "Length": 23086
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Oni_3",
- "Hash": -76196644,
- "Length": 12160
+ "Hash": -1208342699,
+ "Length": 12127
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Oni",
- "Hash": -548522193,
- "Length": 29815
+ "Hash": 2065261023,
+ "Length": 29760
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Oni_2",
- "Hash": -869290467,
- "Length": 24372
+ "Hash": -146533329,
+ "Length": 24337
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Protector",
- "Hash": 1794718241,
- "Length": 31210
+ "Hash": -1622185416,
+ "Length": 31155
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Protector_3",
- "Hash": -543267671,
- "Length": 32889
+ "Hash": -238707881,
+ "Length": 32854
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Protector_2",
- "Hash": 1311899192,
- "Length": 12100
+ "Hash": 791420090,
+ "Length": 12070
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Skeleton",
- "Hash": 1300807686,
- "Length": 32015
+ "Hash": -1421507198,
+ "Length": 31960
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Skeleton_2",
- "Hash": 1729656799,
- "Length": 24706
+ "Hash": 220975398,
+ "Length": 24645
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Skeleton_3",
- "Hash": -1545886923,
- "Length": 36524
+ "Hash": -1061629542,
+ "Length": 36442
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Soldier_2",
- "Hash": 1162934286,
- "Length": 11982
+ "Hash": 1952224557,
+ "Length": 11954
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Soldier_3",
- "Hash": -1424149514,
- "Length": 16202
+ "Hash": -89702467,
+ "Length": 16171
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Soldier",
- "Hash": 398936756,
- "Length": 20461
+ "Hash": -1392490322,
+ "Length": 20406
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Spec_Ops",
- "Hash": -1053131383,
- "Length": 38110
+ "Hash": -1743867599,
+ "Length": 38053
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Spec_Ops_3",
- "Hash": -741678865,
- "Length": 44169
+ "Hash": -520636976,
+ "Length": 44140
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Spec_Ops_2",
- "Hash": -188637843,
- "Length": 15234
+ "Hash": 1719523110,
+ "Length": 15201
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Boss",
- "Hash": -1184292471,
- "Length": 45388
+ "Hash": 1833185104,
+ "Length": 45250
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Boss_2",
- "Hash": 1116367550,
- "Length": 30135
+ "Hash": -2028365788,
+ "Length": 29950
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Boss_3",
- "Hash": 1600920457,
- "Length": 36904
+ "Hash": 439474649,
+ "Length": 36718
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Lt_3",
- "Hash": 1371654405,
- "Length": 41122
+ "Hash": -1100152736,
+ "Length": 40854
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Lt_2",
- "Hash": 141862819,
- "Length": 38008
+ "Hash": -926818670,
+ "Length": 37744
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Lt",
- "Hash": 1203615444,
- "Length": 32754
+ "Hash": 1808372713,
+ "Length": 32672
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Minion",
- "Hash": -1329624495,
- "Length": 15270
+ "Hash": -230156982,
+ "Length": 15216
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Minion_2",
- "Hash": 861770538,
- "Length": 35650
+ "Hash": 2074206141,
+ "Length": 35360
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Minion_3",
- "Hash": -2050674774,
- "Length": 33603
+ "Hash": 1071222919,
+ "Length": 33317
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Bat",
- "Hash": 1535459976,
- "Length": 4270
+ "Hash": 364695419,
+ "Length": 4263
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Sledgehammer",
- "Hash": -2122628001,
- "Length": 6509
+ "Hash": -402839765,
+ "Length": 6508
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Pistol",
- "Hash": 1812587542,
- "Length": 4303
+ "Hash": -1762425017,
+ "Length": 4302
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose",
- "Hash": -794618380,
- "Length": 7312
+ "Hash": 854127764,
+ "Length": 7260
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Pipe",
- "Hash": -1069990545,
- "Length": 4216
+ "Hash": 1623125730,
+ "Length": 4215
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Knife",
- "Hash": -942912193,
- "Length": 4210
+ "Hash": -2108332372,
+ "Length": 4209
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Rock",
- "Hash": 1663295807,
- "Length": 4267
+ "Hash": -59109154,
+ "Length": 4266
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Revolver",
- "Hash": 229478165,
- "Length": 4276
+ "Hash": 396288070,
+ "Length": 4275
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Brawl",
- "Hash": -1574271455,
- "Length": 4205
+ "Hash": 1713264343,
+ "Length": 4204
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Thug_Pose_Axe",
- "Hash": -93325781,
+ "Hash": -1832742975,
"Length": 4262
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Zombie",
- "Hash": 1070477568,
- "Length": 23905
+ "Hash": 225204414,
+ "Length": 23852
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Zombie_3",
- "Hash": -351567179,
- "Length": 8123
+ "Hash": 2095463317,
+ "Length": 8096
},
{
"Archetype": "",
"Fullname": "Mastermind_Pets.Zombie_2",
- "Hash": -1681437353,
- "Length": 11029
+ "Hash": 467089233,
+ "Length": 11001
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Beast_Mastery",
- "Hash": -1265271704,
- "Length": 101543
+ "Hash": -1471407365,
+ "Length": 101641
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Demon_Summoning",
- "Hash": 2020335641,
- "Length": 119028
+ "Hash": -881675039,
+ "Length": 119016
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Mercenaries",
- "Hash": -375430039,
- "Length": 96530
+ "Hash": -692437294,
+ "Length": 96518
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Necromancy",
- "Hash": 264016118,
- "Length": 79292
+ "Hash": -1237833604,
+ "Length": 79272
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Ninjas",
- "Hash": -144003648,
- "Length": 62105
+ "Hash": -1004088505,
+ "Length": 62082
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Robotics",
- "Hash": 1686859928,
- "Length": 61085
+ "Hash": -575880954,
+ "Length": 61076
},
{
"Archetype": "Class_Mastermind",
"Fullname": "Mastermind_Summon.Thugs",
- "Hash": -1000675988,
- "Length": 167111
+ "Hash": 162088315,
+ "Length": 167100
},
{
"Archetype": "Class_Peacebringer",
"Fullname": "Peacebringer_Defensive.Luminous_Aura",
- "Hash": 259828263,
- "Length": 206130
+ "Hash": -803962173,
+ "Length": 206011
},
{
"Archetype": "Class_Peacebringer",
"Fullname": "Peacebringer_Offensive.Luminous_Blast",
- "Hash": -78354105,
- "Length": 123542
+ "Hash": 130291197,
+ "Length": 123488
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Psychic_Snipe",
- "Hash": -658852370,
- "Length": 11164
+ "Hash": 2010444279,
+ "Length": 11160
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Electric_Snipe",
- "Hash": 1596268545,
- "Length": 17283
+ "Hash": 2130508752,
+ "Length": 17281
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Energy_Snipe",
- "Hash": 1677238577,
- "Length": 17509
+ "Hash": -842194920,
+ "Length": 17507
},
{
"Archetype": "",
"Fullname": "Pets.Titan_Weapons_Tanker",
- "Hash": -1479499717,
- "Length": 147355
+ "Hash": -1989987070,
+ "Length": 147331
},
{
"Archetype": "",
"Fullname": "Pets.Dust_Devil",
- "Hash": 1563253578,
- "Length": 7697
+ "Hash": -1317238617,
+ "Length": 7619
},
{
"Archetype": "",
"Fullname": "Pets.Titan_Weapons",
- "Hash": -2115922594,
- "Length": 124467
+ "Hash": 1051765959,
+ "Length": 124443
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Fire_Snipe",
- "Hash": 591396708,
- "Length": 11196
+ "Hash": -793996476,
+ "Length": 11194
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Radiation_Snipe",
- "Hash": -1047001201,
- "Length": 11815
+ "Hash": -1026572700,
+ "Length": 11813
},
{
"Archetype": "",
"Fullname": "Pets.Defender_BR_Snipe",
- "Hash": 906804823,
- "Length": 21290
+ "Hash": 146461862,
+ "Length": 21288
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Dark_Snipe",
- "Hash": 1729791558,
- "Length": 11338
+ "Hash": -1627327251,
+ "Length": 11336
},
{
"Archetype": "",
"Fullname": "Pets.Defender_AR_Snipe",
- "Hash": 503046527,
- "Length": 13369
+ "Hash": 975030146,
+ "Length": 13367
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Acid_Mortar_Controller",
- "Hash": 1856198810,
- "Length": 55553
+ "Hash": 724379834,
+ "Length": 55501
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Acid_Mortar_Defender",
- "Hash": -2107312728,
- "Length": 55493
+ "Hash": 1335270130,
+ "Length": 55441
},
{
"Archetype": "",
"Fullname": "Pets.Air_Bomb",
- "Hash": 2057591267,
- "Length": 6092
+ "Hash": 744798494,
+ "Length": 6066
},
{
"Archetype": "",
"Fullname": "Pets.TempPower_Amy_Jonsson_Pet",
- "Hash": 2110154904,
- "Length": 2878
+ "Hash": -164945207,
+ "Length": 2852
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Archery_Snipe",
- "Hash": 2012325668,
- "Length": 8856
+ "Hash": 933984516,
+ "Length": 8854
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Archery_Snipe",
- "Hash": -480461267,
- "Length": 27813
+ "Hash": 1567598721,
+ "Length": 27811
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_AR_Snipe",
- "Hash": 114208203,
- "Length": 34502
+ "Hash": 978902698,
+ "Length": 34500
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_BR_Snipe",
- "Hash": 732500084,
- "Length": 40273
+ "Hash": 496277827,
+ "Length": 40271
},
{
"Archetype": "",
"Fullname": "Pets.Blind",
- "Hash": -1607849697,
- "Length": 4070
+ "Hash": 2038246782,
+ "Length": 4044
},
{
"Archetype": "",
"Fullname": "Pets.Blizzard_Sentinel",
- "Hash": 641033240,
- "Length": 20417
+ "Hash": 2024056181,
+ "Length": 20339
},
{
"Archetype": "",
"Fullname": "Pets.Defender_Blizzard",
- "Hash": -448387369,
- "Length": 20455
+ "Hash": -882913236,
+ "Length": 20377
},
{
"Archetype": "",
"Fullname": "Pets.Blizzard",
- "Hash": 1817254386,
- "Length": 20176
+ "Hash": -1484846723,
+ "Length": 20098
},
{
"Archetype": "",
"Fullname": "Pets.Corruptor_Blizzard",
- "Hash": -1668843097,
- "Length": 20559
+ "Hash": -1615309036,
+ "Length": 20481
},
{
"Archetype": "",
"Fullname": "Pets.Traps_TimeBomb_Defender",
- "Hash": 848147299,
- "Length": 48826
+ "Hash": -224286334,
+ "Length": 48748
},
{
"Archetype": "",
"Fullname": "Pets.Bomb",
- "Hash": 660659270,
- "Length": 47747
+ "Hash": -445657225,
+ "Length": 47669
},
{
"Archetype": "",
"Fullname": "Pets.VillainBomb",
- "Hash": 376898003,
- "Length": 47148
+ "Hash": 1123257511,
+ "Length": 47044
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Bomb",
- "Hash": -1314005611,
- "Length": 10506
+ "Hash": -1993036580,
+ "Length": 10480
},
{
"Archetype": "",
"Fullname": "Pets.Bomb_Defender",
- "Hash": 1171300038,
- "Length": 48247
+ "Hash": 617183627,
+ "Length": 48169
},
{
"Archetype": "",
"Fullname": "Pets.Bomb_Controller",
- "Hash": -1922884739,
- "Length": 44773
+ "Hash": -1935055104,
+ "Length": 44695
},
{
"Archetype": "",
"Fullname": "Pets.Bonfire",
- "Hash": 1079342333,
- "Length": 5183
+ "Hash": -637527722,
+ "Length": 5157
},
{
"Archetype": "",
"Fullname": "Pets.BounceWorld",
- "Hash": -197407307,
- "Length": 2846
+ "Hash": -2049832698,
+ "Length": 2820
},
{
"Archetype": "",
"Fullname": "Pets.TestBurn",
- "Hash": 1356445829,
- "Length": 2887
+ "Hash": 220445440,
+ "Length": 2861
},
{
"Archetype": "",
"Fullname": "Pets.Burn",
- "Hash": 1856677558,
- "Length": 4331
+ "Hash": -1155017453,
+ "Length": 4305
},
{
"Archetype": "",
"Fullname": "Pets.Cairn",
- "Hash": -127262681,
- "Length": 27037
+ "Hash": -1582130556,
+ "Length": 27003
},
{
"Archetype": "",
"Fullname": "Pets.Caltrops",
- "Hash": 1789291062,
- "Length": 7950
+ "Hash": -1707357473,
+ "Length": 7924
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Confuse_Controller_Jump1",
- "Hash": 818688932,
- "Length": 10125
+ "Hash": 94773907,
+ "Length": 10099
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Confuse_Controller_Jump2",
- "Hash": -2052352580,
- "Length": 10125
+ "Hash": -1820497483,
+ "Length": 10099
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Confuse_Controller_Jump3",
- "Hash": -1556509914,
- "Length": 7815
+ "Hash": 501248591,
+ "Length": 7789
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Induction_Jump1_Scrapper",
- "Hash": -640696605,
- "Length": 6535
+ "Hash": 723473792,
+ "Length": 6509
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Induction_Jump2_Scrapper",
- "Hash": 1229772863,
- "Length": 6535
+ "Hash": 64431278,
+ "Length": 6509
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Induction_Jump3_Scrapper",
- "Hash": -110181248,
- "Length": 6537
+ "Hash": -182958715,
+ "Length": 6511
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Induction_Jump4_Scrapper",
- "Hash": -1810153356,
- "Length": 4355
+ "Hash": -457624521,
+ "Length": 4329
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Controller_Jump1",
- "Hash": -774560185,
- "Length": 11887
+ "Hash": 2077790112,
+ "Length": 11861
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Gremlin_Jump1",
- "Hash": 1474561691,
- "Length": 8703
+ "Hash": 1806093174,
+ "Length": 8677
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Gremlin_Jump2",
- "Hash": -817373321,
- "Length": 8703
+ "Hash": -674819856,
+ "Length": 8677
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Controller_Jump2",
- "Hash": 1201089046,
- "Length": 11887
+ "Hash": 1404242269,
+ "Length": 11861
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Gremlin_Jump3",
- "Hash": -1494735269,
- "Length": 6417
+ "Hash": -1275065850,
+ "Length": 6391
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Jolt_Controller_Jump3",
- "Hash": -2106878671,
- "Length": 9589
+ "Hash": -697323604,
+ "Length": 9563
},
{
"Archetype": "",
"Fullname": "Pets.Chain_Stun_Controller_Jump1",
- "Hash": -2037493071,
- "Length": 8603
+ "Hash": 1909322986,
+ "Length": 8577
},
{
"Archetype": "",
"Fullname": "Pets.ChargeCone",
- "Hash": 1078909036,
- "Length": 5320
+ "Hash": -1522620925,
+ "Length": 5294
},
{
"Archetype": "",
"Fullname": "Pets.ChargeImpact",
- "Hash": 109185763,
- "Length": 5227
+ "Hash": 1790743672,
+ "Length": 5201
},
{
"Archetype": "",
"Fullname": "Pets.Crab_Spider",
- "Hash": 1330983645,
- "Length": 16526
+ "Hash": 1314473654,
+ "Length": 16495
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Dark_Snipe",
- "Hash": 1047538233,
- "Length": 30255
+ "Hash": 602337450,
+ "Length": 30253
},
{
"Archetype": "",
"Fullname": "Pets.DarkServant",
- "Hash": -641862830,
- "Length": 63191
+ "Hash": 921370686,
+ "Length": 63160
},
{
"Archetype": "",
"Fullname": "Pets.DarkFaerie",
- "Hash": 944481690,
- "Length": 21274
+ "Hash": -1904611978,
+ "Length": 21246
},
{
"Archetype": "",
"Fullname": "Pets.Decoy",
- "Hash": 881700413,
- "Length": 46918
+ "Hash": -158124636,
+ "Length": 46876
},
{
"Archetype": "",
"Fullname": "Pets.DecoyPhantasm",
- "Hash": 802345991,
- "Length": 23347
+ "Hash": -1201676271,
+ "Length": 23287
},
{
"Archetype": "",
"Fullname": "Pets.Defenders_Bastion_Proc",
- "Hash": -354254525,
- "Length": 3071
+ "Hash": -651957990,
+ "Length": 3045
},
{
"Archetype": "",
"Fullname": "Pets.DimensionShift",
- "Hash": 1181359128,
- "Length": 22566
+ "Hash": 1475934419,
+ "Length": 22488
},
{
"Archetype": "",
"Fullname": "Pets.DisintegrateSpread",
- "Hash": 1853871809,
- "Length": 10051
+ "Hash": -241171999,
+ "Length": 9999
},
{
"Archetype": "",
"Fullname": "Pets.SonicDebuffArrow",
- "Hash": 1874496992,
- "Length": 19036
+ "Hash": -405954679,
+ "Length": 19010
},
{
"Archetype": "",
"Fullname": "Pets.SonicDebuffArrow_Controller",
- "Hash": -1395807015,
- "Length": 10510
+ "Hash": 1136634750,
+ "Length": 10484
},
{
"Archetype": "",
"Fullname": "Pets.Earthquake",
- "Hash": 206756752,
- "Length": 8287
+ "Hash": -1718029263,
+ "Length": 8261
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Electric_Snipe",
- "Hash": 2103409178,
- "Length": 36210
+ "Hash": -319728205,
+ "Length": 36208
},
{
"Archetype": "",
"Fullname": "Pets.Contaminated_Lightning_Rod_Stalker",
- "Hash": 695848738,
- "Length": 3283
+ "Hash": 306602961,
+ "Length": 3257
},
{
"Archetype": "",
"Fullname": "Pets.Contaminated_Lightning_Rod_Brute",
- "Hash": -1877807478,
- "Length": 3268
+ "Hash": -1512261191,
+ "Length": 3242
},
{
"Archetype": "",
"Fullname": "Pets.Lightning_Rod_Tanker",
- "Hash": -521780937,
- "Length": 6300
+ "Hash": -245885158,
+ "Length": 6274
},
{
"Archetype": "",
"Fullname": "Pets.Contaminated_Lightning_Rod_Tanker",
- "Hash": 1838014316,
- "Length": 3272
+ "Hash": 164320845,
+ "Length": 3246
},
{
"Archetype": "",
"Fullname": "Pets.Contaminated_Lightning_Rod_Scrapper",
- "Hash": 1216700452,
- "Length": 3282
+ "Hash": 65647763,
+ "Length": 3256
},
{
"Archetype": "",
"Fullname": "Pets.Embraced_Lightning_Rod_Brute",
- "Hash": -1482599047,
- "Length": 3244
+ "Hash": 304140970,
+ "Length": 3218
},
{
"Archetype": "",
"Fullname": "Pets.Lightning_Rod",
- "Hash": 1266076145,
- "Length": 5231
+ "Hash": 887963902,
+ "Length": 5205
},
{
"Archetype": "",
"Fullname": "Pets.Lightning_Rod_Scrapper",
- "Hash": -1656147725,
- "Length": 6310
+ "Hash": -779333332,
+ "Length": 6284
},
{
"Archetype": "",
"Fullname": "Pets.Embraced_Lightning_Rod_Scrapper",
- "Hash": -253640986,
- "Length": 3262
+ "Hash": 322211663,
+ "Length": 3236
},
{
"Archetype": "",
"Fullname": "Pets.Embraced_Lightning_Rod_Tanker",
- "Hash": 1520437323,
- "Length": 3248
+ "Hash": 420707984,
+ "Length": 3222
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Energy_Snipe",
- "Hash": -2073064365,
- "Length": 34501
+ "Hash": -1355178782,
+ "Length": 34499
},
{
"Archetype": "",
"Fullname": "Pets.Enflame",
- "Hash": 947115276,
- "Length": 15616
+ "Hash": -953984703,
+ "Length": 15538
},
{
"Archetype": "",
"Fullname": "Pets.Experimentation_Corrosive_Vial",
- "Hash": -294586626,
- "Length": 13102
+ "Hash": -1272486819,
+ "Length": 13076
},
{
"Archetype": "",
"Fullname": "Pets.FaerieResists",
- "Hash": -1709823446,
- "Length": 15899
+ "Hash": -359076941,
+ "Length": 15873
},
{
"Archetype": "",
"Fullname": "Pets.Fallout_Controller",
- "Hash": 473471752,
- "Length": 22491
+ "Hash": 122691065,
+ "Length": 22465
},
{
"Archetype": "",
"Fullname": "Pets.Fallout_Mastermind",
- "Hash": -1846814917,
- "Length": 22524
+ "Hash": 1830126296,
+ "Length": 22498
},
{
"Archetype": "",
"Fullname": "Pets.Fallout",
- "Hash": 1186742329,
- "Length": 41888
+ "Hash": 1077342872,
+ "Length": 41862
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Fire_Snipe",
- "Hash": -716673037,
- "Length": 30185
+ "Hash": -764677769,
+ "Length": 30183
},
{
"Archetype": "",
"Fullname": "Pets.FlameThrower",
- "Hash": 581410951,
- "Length": 7419
+ "Hash": 1900470131,
+ "Length": 7367
},
{
"Archetype": "",
"Fullname": "Pets.Corruptor_FlameThrower",
- "Hash": -225574175,
- "Length": 7715
+ "Hash": -810516295,
+ "Length": 7663
},
{
"Archetype": "",
"Fullname": "Pets.Traps_FF_Generator_Defender",
- "Hash": -648101069,
- "Length": 40452
+ "Hash": -1174443366,
+ "Length": 40394
},
{
"Archetype": "",
"Fullname": "Pets.Epic_FreezingRain",
- "Hash": 2074762377,
- "Length": 38438
+ "Hash": -1393770071,
+ "Length": 38386
},
{
"Archetype": "",
"Fullname": "Pets.FreezingRain",
- "Hash": 1349920737,
- "Length": 38261
+ "Hash": -1175109183,
+ "Length": 38209
},
{
"Archetype": "",
"Fullname": "Pets.FreezingRain_Controller",
- "Hash": -280907919,
- "Length": 29964
+ "Hash": 1862966641,
+ "Length": 29912
},
{
"Archetype": "",
"Fullname": "Pets.Fungi",
- "Hash": -1730595179,
- "Length": 26836
+ "Hash": -247144982,
+ "Length": 26802
},
{
"Archetype": "",
"Fullname": "Pets.Gremlin",
- "Hash": 1544198847,
- "Length": 33559
+ "Hash": -1992385350,
+ "Length": 33523
},
{
"Archetype": "",
"Fullname": "Pets.Guard",
- "Hash": 1520622997,
- "Length": 19884
+ "Hash": 708787218,
+ "Length": 19806
},
{
"Archetype": "",
"Fullname": "Pets.HeatLossBuff_Defender",
- "Hash": -1798548755,
- "Length": 4112
+ "Hash": -1460914222,
+ "Length": 4086
},
{
"Archetype": "",
"Fullname": "Pets.HeatLossDebuff_Defender",
- "Hash": 1707605902,
- "Length": 20121
+ "Hash": -931500379,
+ "Length": 20095
},
{
"Archetype": "",
"Fullname": "Pets.Hibernate",
- "Hash": -866389487,
- "Length": 12912
+ "Hash": -1254180746,
+ "Length": 12886
},
{
"Archetype": "",
"Fullname": "Pets.High_Explosives",
- "Hash": -1055148868,
- "Length": 43730
+ "Hash": -1036797053,
+ "Length": 43652
},
{
"Archetype": "",
"Fullname": "Pets.High_Explosives_Tech",
- "Hash": 2073013681,
- "Length": 46005
+ "Hash": -1820916152,
+ "Length": 45927
},
{
"Archetype": "",
"Fullname": "Pets.HowlingVillain",
- "Hash": -1898439192,
- "Length": 5115
+ "Hash": -222079791,
+ "Length": 5089
},
{
"Archetype": "",
"Fullname": "Pets.Howling",
- "Hash": 1454441833,
- "Length": 5059
+ "Hash": -1531708876,
+ "Length": 5033
},
{
"Archetype": "",
"Fullname": "Pets.IcePatch",
- "Hash": -982760205,
- "Length": 7960
+ "Hash": 1228982926,
+ "Length": 7934
},
{
"Archetype": "",
"Fullname": "Pets.IceSlick",
- "Hash": 1596674343,
- "Length": 7978
+ "Hash": 537537988,
+ "Length": 7952
},
{
"Archetype": "",
"Fullname": "Pets.IceStorm_Defender",
- "Hash": 987682627,
- "Length": 14847
+ "Hash": -69187133,
+ "Length": 14795
},
{
"Archetype": "",
"Fullname": "Pets.Epic_IceStorm",
- "Hash": -957321279,
- "Length": 14717
+ "Hash": 623286745,
+ "Length": 14665
},
{
"Archetype": "",
"Fullname": "Pets.Embraced_IceStorm",
- "Hash": 1682711998,
- "Length": 3019
+ "Hash": 1763533887,
+ "Length": 2993
},
{
"Archetype": "",
"Fullname": "Pets.IceStorm_Sentinel",
- "Hash": 222299409,
- "Length": 14795
+ "Hash": 519231633,
+ "Length": 14743
},
{
"Archetype": "",
"Fullname": "Pets.IceStorm",
- "Hash": 1334207848,
- "Length": 14650
+ "Hash": 2099441362,
+ "Length": 14598
},
{
"Archetype": "",
"Fullname": "Pets.Corruptor_IceStorm",
- "Hash": -14975264,
- "Length": 14952
+ "Hash": 152716154,
+ "Length": 14900
},
{
"Archetype": "",
"Fullname": "Pets.Imp",
- "Hash": 800664390,
- "Length": 13529
+ "Hash": 442689604,
+ "Length": 13520
},
{
"Archetype": "",
"Fullname": "Pets.Infected_Explosion",
- "Hash": -791274918,
- "Length": 5101
+ "Hash": 1507567649,
+ "Length": 5075
},
{
"Archetype": "",
"Fullname": "Pets.Jack",
- "Hash": 1969658756,
- "Length": 61326
+ "Hash": 290674522,
+ "Length": 61307
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferBuff",
- "Hash": 1470972541,
- "Length": 10449
+ "Hash": 1146788,
+ "Length": 10423
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferDebuff",
- "Hash": -2113530235,
- "Length": 21038
+ "Hash": 869748294,
+ "Length": 21012
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferDebuff_Controller",
- "Hash": 1999965535,
- "Length": 12006
+ "Hash": -300464528,
+ "Length": 11980
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferDebuff_Mastermind",
- "Hash": 1177523849,
- "Length": 10973
+ "Hash": -1763299234,
+ "Length": 10947
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferBuffSelf_Controller",
- "Hash": 1888998364,
- "Length": 10638
+ "Hash": -349800091,
+ "Length": 10612
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferBuff_Controller",
- "Hash": -528088465,
- "Length": 10586
+ "Hash": -1232689372,
+ "Length": 10560
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferBuff_Mastermind",
- "Hash": -241726353,
- "Length": 10588
+ "Hash": -2045734920,
+ "Length": 10562
},
{
"Archetype": "",
"Fullname": "Pets.KineticTransferBuffSelf",
- "Hash": 298599078,
- "Length": 10495
+ "Hash": -2029855279,
+ "Length": 10469
},
{
"Archetype": "",
"Fullname": "Pets.Pool_Leadership_VictoryRush",
- "Hash": -898162548,
- "Length": 25750
+ "Hash": -1615125492,
+ "Length": 25594
},
{
"Archetype": "",
"Fullname": "Pets.Lifegiving_Spores_Mastermind",
- "Hash": 1247612877,
+ "Hash": -1892756009,
"Length": 4395
},
{
"Archetype": "",
"Fullname": "Pets.Lifegiving_Spores_Controller",
- "Hash": 187660599,
+ "Hash": -1129882891,
"Length": 4394
},
{
"Archetype": "",
"Fullname": "Pets.Lifegiving_Spores_Corruptor",
- "Hash": 1678876970,
+ "Hash": 1025697056,
"Length": 4387
},
{
"Archetype": "",
"Fullname": "Pets.Lifegiving_Spores_Defender",
- "Hash": 379967011,
+ "Hash": -273212903,
"Length": 4379
},
{
"Archetype": "",
"Fullname": "Pets.LightFaerie",
- "Hash": -2039829994,
- "Length": 6949
+ "Hash": 494894728,
+ "Length": 6921
},
{
"Archetype": "",
"Fullname": "Pets.LightningStorm",
- "Hash": -586216729,
- "Length": 18924
+ "Hash": -1890017471,
+ "Length": 18866
},
{
"Archetype": "",
"Fullname": "Pets.LightningStorm_Controller",
- "Hash": -1569591260,
- "Length": 19213
+ "Hash": 147771916,
+ "Length": 19155
},
{
"Archetype": "",
"Fullname": "Pets.LightningStorm_NPC",
- "Hash": -1229926020,
- "Length": 14304
+ "Hash": -944254136,
+ "Length": 14246
},
{
"Archetype": "",
"Fullname": "Pets.ShockCont",
- "Hash": -1103306189,
- "Length": 7229
+ "Hash": 1955013662,
+ "Length": 7203
},
{
"Archetype": "",
"Fullname": "Pets.ShockMM",
- "Hash": 197768807,
- "Length": 7213
+ "Hash": 1668052788,
+ "Length": 7187
},
{
"Archetype": "",
"Fullname": "Pets.Liquefy_MM",
- "Hash": -647374149,
- "Length": 10410
+ "Hash": -1044697526,
+ "Length": 10384
},
{
"Archetype": "",
"Fullname": "Pets.Liquefy",
- "Hash": -717939804,
- "Length": 10371
+ "Hash": -1547371053,
+ "Length": 10345
},
{
"Archetype": "",
"Fullname": "Pets.Liquefy_Defender",
- "Hash": 126209571,
- "Length": 9328
+ "Hash": 1368041514,
+ "Length": 9302
},
{
"Archetype": "",
"Fullname": "Pets.ShockDef",
- "Hash": 1875821620,
- "Length": 7360
+ "Hash": -1266222317,
+ "Length": 7334
},
{
"Archetype": "",
"Fullname": "Pets.Longbow_Heavy",
- "Hash": -1183547984,
- "Length": 29745
+ "Hash": -702134795,
+ "Length": 29711
},
{
"Archetype": "",
"Fullname": "Pets.Lost_Cure_Counter",
- "Hash": -496982029,
- "Length": 6394
+ "Hash": 1820919635,
+ "Length": 6342
},
{
"Archetype": "",
"Fullname": "Pets.Martial_Manipulation_Burst",
- "Hash": 707713686,
- "Length": 3197
+ "Hash": -2009495823,
+ "Length": 3171
},
{
"Archetype": "",
"Fullname": "Pets.Pool_Medicine_AidOther",
- "Hash": 1997369152,
- "Length": 6387
+ "Hash": -493620822,
+ "Length": 6385
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Trip_Mine_Defender",
- "Hash": -1980517658,
- "Length": 46005
+ "Hash": 940262447,
+ "Length": 45927
},
{
"Archetype": "",
"Fullname": "Pets.Mine",
- "Hash": -37853648,
- "Length": 44949
+ "Hash": 285198421,
+ "Length": 44871
},
{
"Archetype": "",
"Fullname": "Pets.Villain_Mine",
- "Hash": -1829119352,
- "Length": 46595
+ "Hash": 1594576829,
+ "Length": 46517
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Trip_Mine_Controller",
- "Hash": -1796785191,
- "Length": 44273
+ "Hash": -1335919284,
+ "Length": 44195
},
{
"Archetype": "",
"Fullname": "Pets.MonkeyGas",
- "Hash": -2056734042,
- "Length": 3975
+ "Hash": 1064453269,
+ "Length": 3949
},
{
"Archetype": "",
"Fullname": "Pets.Nature_Affinity_Mastermind",
- "Hash": 1829471203,
- "Length": 12126
+ "Hash": -1387523933,
+ "Length": 12122
},
{
"Archetype": "",
"Fullname": "Pets.Nature_Affinity_Defender",
- "Hash": -1145582636,
- "Length": 12072
+ "Hash": 1315848596,
+ "Length": 12068
},
{
"Archetype": "",
"Fullname": "Pets.Nature_Affinity_Corruptor",
- "Hash": 7757913,
- "Length": 12098
+ "Hash": -1618880767,
+ "Length": 12094
},
{
"Archetype": "",
"Fullname": "Pets.Nature_Affinity_Controller",
- "Hash": 1437469456,
- "Length": 12124
+ "Hash": -1599094992,
+ "Length": 12120
},
{
"Archetype": "",
"Fullname": "Pets.NemesisBang",
- "Hash": 1130282526,
- "Length": 2848
+ "Hash": 2004466873,
+ "Length": 2822
},
{
"Archetype": "",
"Fullname": "Pets.NemesisGas",
- "Hash": 543699388,
- "Length": 3021
+ "Hash": -58946681,
+ "Length": 2995
},
{
"Archetype": "",
"Fullname": "Pets.OilSlickTarget",
- "Hash": 1609049806,
- "Length": 49151
+ "Hash": 191083502,
+ "Length": 49047
},
{
"Archetype": "",
"Fullname": "Pets.OilSlickOil",
- "Hash": 503292894,
- "Length": 15500
+ "Hash": -2024336057,
+ "Length": 15422
},
{
"Archetype": "",
"Fullname": "Pets.OilSlickBurn",
- "Hash": -315543624,
- "Length": 9997
+ "Hash": 2126859842,
+ "Length": 9893
},
{
"Archetype": "",
"Fullname": "Pets.Overpowering_Presence",
- "Hash": 60613501,
- "Length": 9070
+ "Hash": -1076775196,
+ "Length": 8992
},
{
"Archetype": "",
"Fullname": "Pets.Phantasm",
- "Hash": -1772954251,
- "Length": 24524
+ "Hash": 580154882,
+ "Length": 24463
},
{
"Archetype": "",
"Fullname": "Pets.Phoenix",
- "Hash": -936184799,
- "Length": 7300
+ "Hash": 787799714,
+ "Length": 7274
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Poison_Gas_Defender",
- "Hash": -109692616,
- "Length": 16214
+ "Hash": 1062218085,
+ "Length": 16136
},
{
"Archetype": "",
"Fullname": "Pets.PoisonGasArrow_Controller",
- "Hash": -1722383119,
- "Length": 3474
+ "Hash": -1026145327,
+ "Length": 3422
},
{
"Archetype": "",
"Fullname": "Pets.PoisonGasArrow",
- "Hash": 964562196,
- "Length": 33847
+ "Hash": 414711654,
+ "Length": 33795
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Poison_Trap_Defender",
- "Hash": -427121789,
- "Length": 39715
+ "Hash": 1782085283,
+ "Length": 39663
},
{
"Archetype": "",
"Fullname": "Pets.PoisonGasGrenade",
- "Hash": 1812613878,
- "Length": 14736
+ "Hash": 108625883,
+ "Length": 14710
},
{
"Archetype": "",
"Fullname": "Pets.RiktiPortal",
- "Hash": 1883121028,
- "Length": 51383
+ "Hash": -1541974601,
+ "Length": 51305
},
{
"Archetype": "",
"Fullname": "Pets.PPD_Hard_Suit",
- "Hash": 894905138,
- "Length": 21758
+ "Hash": 322282975,
+ "Length": 21728
},
{
"Archetype": "",
"Fullname": "Pets.PPD_Sergeant",
- "Hash": -1400534363,
- "Length": 28156
+ "Hash": 1821750167,
+ "Length": 28120
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Psychic_Snipe",
- "Hash": -632820873,
- "Length": 30194
+ "Hash": -1480135968,
+ "Length": 30190
},
{
"Archetype": "",
"Fullname": "Pets.Quartz",
- "Hash": -532620768,
- "Length": 21066
+ "Hash": 170732077,
+ "Length": 21032
},
{
"Archetype": "",
"Fullname": "Pets.Epic_Quicksand",
- "Hash": -1196686978,
- "Length": 8109
+ "Hash": -1370452367,
+ "Length": 8083
},
{
"Archetype": "",
"Fullname": "Pets.Embraced_Quicksand",
- "Hash": -2143991568,
- "Length": 3078
+ "Hash": -566503683,
+ "Length": 3052
},
{
"Archetype": "",
"Fullname": "Pets.Quicksand",
- "Hash": -1894591522,
- "Length": 8055
+ "Hash": 1629624287,
+ "Length": 8029
},
{
"Archetype": "",
"Fullname": "Pets.Blaster_Radiation_Snipe",
- "Hash": -909378771,
- "Length": 30914
+ "Hash": 1548176856,
+ "Length": 30912
},
{
"Archetype": "",
"Fullname": "Pets.RadiationCloud_Visual",
- "Hash": -2030853214,
- "Length": 4618
+ "Hash": 2056681421,
+ "Length": 4592
},
{
"Archetype": "",
"Fullname": "Pets.Radiation_Melee",
- "Hash": -887598958,
- "Length": 10996
+ "Hash": 1519474568,
+ "Length": 10944
},
{
"Archetype": "",
"Fullname": "Pets.Raid_Disruptor_Pylon",
- "Hash": -776817421,
- "Length": 2895
+ "Hash": 1835786972,
+ "Length": 2869
},
{
"Archetype": "",
"Fullname": "Pets.Raid_Disruptor_Pylon_Create",
- "Hash": -609144220,
- "Length": 3960
+ "Hash": -1846491601,
+ "Length": 3934
},
{
"Archetype": "",
"Fullname": "Pets.Raid_Disruptor_Pylon_Kill",
- "Hash": 1254841038,
- "Length": 3804
+ "Hash": 1868959501,
+ "Length": 3778
},
{
"Archetype": "",
"Fullname": "Pets.Raid_Disruptor_Pylon_Nuke",
- "Hash": 163478377,
- "Length": 4026
+ "Hash": -1386518054,
+ "Length": 4000
},
{
"Archetype": "",
"Fullname": "Pets.RainofArrows_Critter",
- "Hash": -240763699,
- "Length": 5570
+ "Hash": -671850355,
+ "Length": 5518
},
{
"Archetype": "",
"Fullname": "Pets.RainofArrows_Visual",
- "Hash": 1930696984,
- "Length": 2865
+ "Hash": 786587479,
+ "Length": 2839
},
{
"Archetype": "",
"Fullname": "Pets.RainofArrows",
- "Hash": -1334536228,
- "Length": 7505
+ "Hash": 1890547998,
+ "Length": 7453
},
{
"Archetype": "",
"Fullname": "Pets.RainofArrows_Defender",
- "Hash": 1567098401,
- "Length": 6569
+ "Hash": 1547256441,
+ "Length": 6517
},
{
"Archetype": "",
"Fullname": "Pets.RainofArrows_Sentinel",
- "Hash": 173112818,
- "Length": 7536
+ "Hash": 1169219698,
+ "Length": 7484
},
{
"Archetype": "",
"Fullname": "Pets.Corruptor_RainofFire",
- "Hash": 1996279186,
- "Length": 12858
+ "Hash": -839247224,
+ "Length": 12806
},
{
"Archetype": "",
"Fullname": "Pets.Defender_RainofFire",
- "Hash": -910581576,
- "Length": 11735
+ "Hash": -1482898974,
+ "Length": 11683
},
{
"Archetype": "",
"Fullname": "Pets.RainofFire",
- "Hash": 707571282,
- "Length": 12594
+ "Hash": 198570312,
+ "Length": 12542
},
{
"Archetype": "",
"Fullname": "Pets.RainofFire_Sentinel",
- "Hash": -1286088415,
- "Length": 12720
+ "Hash": 261298785,
+ "Length": 12668
},
{
"Archetype": "",
"Fullname": "Pets.ResistAllFast",
- "Hash": 653998782,
- "Length": 5875
+ "Hash": -1121726405,
+ "Length": 5849
},
{
"Archetype": "",
"Fullname": "Pets.ResistAll",
- "Hash": -1738887824,
- "Length": 3825
+ "Hash": -2064908751,
+ "Length": 3799
},
{
"Archetype": "",
"Fullname": "Pets.ResistAll_NoFly",
- "Hash": 1688966938,
- "Length": 2870
+ "Hash": 558437575,
+ "Length": 2844
},
{
"Archetype": "",
"Fullname": "Pets.ResistAll_NoFly_Fast",
- "Hash": -792192055,
- "Length": 3923
+ "Hash": 452010656,
+ "Length": 3897
},
{
"Archetype": "",
"Fullname": "Pets.Resistance_Rifle",
- "Hash": 1878409510,
- "Length": 25712
+ "Hash": 1730590594,
+ "Length": 25681
},
{
"Archetype": "",
"Fullname": "Pets.Savage_Assault_Feral_Charge",
- "Hash": -828251470,
- "Length": 4584
+ "Hash": 1533791942,
+ "Length": 4578
},
{
"Archetype": "",
"Fullname": "Pets.Savage_Leap",
- "Hash": -851780436,
- "Length": 2409
+ "Hash": -1044508843,
+ "Length": 2383
},
{
"Archetype": "",
"Fullname": "Pets.Scrapper_Savage_Melee",
- "Hash": -881979980,
- "Length": 27729
+ "Hash": 1498335724,
+ "Length": 27727
},
{
"Archetype": "",
"Fullname": "Pets.Savage_Melee_Savage_Leap",
- "Hash": 1872899465,
- "Length": 13569
+ "Hash": -258937396,
+ "Length": 13543
},
{
"Archetype": "",
"Fullname": "Pets.Brute_Savage_Melee",
- "Hash": -1127040918,
- "Length": 25850
+ "Hash": -358432456,
+ "Length": 25848
},
{
"Archetype": "",
"Fullname": "Pets.Tanker_Savage_Melee",
- "Hash": -1543694856,
- "Length": 28092
+ "Hash": 1318954320,
+ "Length": 28090
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Seeker1_Controller",
- "Hash": -1823619451,
- "Length": 25040
+ "Hash": -1545333930,
+ "Length": 24962
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Seeker1_Defender",
- "Hash": 1244959060,
- "Length": 25057
+ "Hash": 915490575,
+ "Length": 24979
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Seeker2_Defender",
- "Hash": 2135741339,
- "Length": 25050
+ "Hash": 192049734,
+ "Length": 24972
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Seeker2_Controller",
- "Hash": -1630037214,
- "Length": 25033
+ "Hash": 649873201,
+ "Length": 24955
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Seeker3_Defender",
- "Hash": 890183238,
- "Length": 25050
+ "Hash": -1851285119,
+ "Length": 24972
},
{
"Archetype": "",
"Fullname": "Pets.Shivan_Summon_FX",
- "Hash": 807493122,
- "Length": 2734
+ "Hash": 718865047,
+ "Length": 2708
},
{
"Archetype": "",
"Fullname": "Pets.Singularity",
- "Hash": -304868577,
- "Length": 58727
+ "Hash": -571246225,
+ "Length": 58691
},
{
"Archetype": "",
"Fullname": "Pets.SiphonPower_Mastermind",
- "Hash": -1942626992,
- "Length": 10456
+ "Hash": 936672625,
+ "Length": 10430
},
{
"Archetype": "",
"Fullname": "Pets.SiphonPower_Controller",
- "Hash": 173790107,
- "Length": 10415
+ "Hash": 48558550,
+ "Length": 10389
},
{
"Archetype": "",
"Fullname": "Pets.SiphonPower",
- "Hash": -1572661099,
- "Length": 10280
+ "Hash": 1626439290,
+ "Length": 10254
},
{
"Archetype": "",
"Fullname": "Pets.Sleet_Defender",
- "Hash": -1069151135,
- "Length": 51407
+ "Hash": 1880138017,
+ "Length": 51355
},
{
"Archetype": "",
"Fullname": "Pets.Snowangel",
- "Hash": -382105832,
- "Length": 9654
+ "Hash": -168520943,
+ "Length": 9628
},
{
"Archetype": "",
"Fullname": "Pets.SoulAbsorptionBuff",
- "Hash": -1662166204,
- "Length": 6298
+ "Hash": 1213339645,
+ "Length": 6272
},
{
"Archetype": "",
"Fullname": "Pets.Spring_Attack",
- "Hash": 1273742978,
- "Length": 18675
+ "Hash": -1174290889,
+ "Length": 18649
},
{
"Archetype": "",
"Fullname": "Pets.Static_Field_Controller",
- "Hash": -140422156,
- "Length": 14178
+ "Hash": 646035729,
+ "Length": 14152
},
{
"Archetype": "",
"Fullname": "Pets.Static_Field_End_Recovery_Controller",
- "Hash": -223240897,
- "Length": 3292
+ "Hash": -1394844550,
+ "Length": 3266
},
{
"Archetype": "",
"Fullname": "Pets.StickyArrow_Blaster",
- "Hash": 1107454522,
- "Length": 13891
+ "Hash": -1012648885,
+ "Length": 13813
},
{
"Archetype": "",
"Fullname": "Pets.StickyArrow",
- "Hash": -337054345,
- "Length": 11271
+ "Hash": -2011049341,
+ "Length": 11219
},
{
"Archetype": "",
"Fullname": "Pets.Stone",
- "Hash": 501047088,
- "Length": 38211
+ "Hash": -3894487,
+ "Length": 38199
},
{
"Archetype": "",
"Fullname": "Pets.Superior_Defenders_Bastion_Proc",
- "Hash": -1875251958,
- "Length": 3180
+ "Hash": -1506597975,
+ "Length": 3154
},
{
"Archetype": "",
"Fullname": "Pets.Superior_Vigilant_Assault_Proc",
- "Hash": -1450894034,
- "Length": 4092
+ "Hash": -2031293545,
+ "Length": 4066
},
{
"Archetype": "",
"Fullname": "Pets.Target",
- "Hash": 1977525280,
- "Length": 12578
+ "Hash": 1734965761,
+ "Length": 12552
},
{
"Archetype": "",
"Fullname": "Pets.TarPatch",
- "Hash": -1806253992,
- "Length": 23684
+ "Hash": -690913455,
+ "Length": 23658
},
{
"Archetype": "",
"Fullname": "Pets.Team_Transport",
- "Hash": 1751137242,
- "Length": 5470
+ "Hash": 316004721,
+ "Length": 5442
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Buff_Recovery",
- "Hash": -2097528884,
- "Length": 3116
+ "Hash": -457390211,
+ "Length": 3090
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Slow",
- "Hash": 275314317,
- "Length": 7327
+ "Hash": 1073509736,
+ "Length": 7301
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Buff_Acc",
- "Hash": -1460003324,
- "Length": 3067
+ "Hash": 122894825,
+ "Length": 3041
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Haste",
- "Hash": -1314044429,
- "Length": 5138
+ "Hash": -1827474252,
+ "Length": 5112
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Buff_Dam",
- "Hash": -1260699781,
- "Length": 10424
+ "Hash": -936984880,
+ "Length": 10398
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_DeBuff_Recovery",
- "Hash": 1839416384,
- "Length": 3121
+ "Hash": -179577693,
+ "Length": 3095
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Buff_Regeneration",
- "Hash": -61251356,
- "Length": 3149
+ "Hash": 122064753,
+ "Length": 3123
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_DeBuff_Regeneration",
- "Hash": -297282069,
- "Length": 3130
+ "Hash": -2022318106,
+ "Length": 3104
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_DeBuff_Acc",
- "Hash": 1829233867,
- "Length": 3060
+ "Hash": 365610452,
+ "Length": 3034
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Damage",
- "Hash": -834247444,
- "Length": 5990
+ "Hash": 562065233,
+ "Length": 5964
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_Inherent",
- "Hash": 314283465,
- "Length": 25801
+ "Hash": -920271472,
+ "Length": 25775
},
{
"Archetype": "",
"Fullname": "Pets.Tech_Lab_DeBuff_Dam",
- "Hash": -1885535016,
- "Length": 10644
+ "Hash": 1946604635,
+ "Length": 10618
},
{
"Archetype": "",
"Fullname": "Pets.TPFoeTaunt",
- "Hash": 843934962,
- "Length": 3850
+ "Hash": -290127373,
+ "Length": 3824
},
{
"Archetype": "",
"Fullname": "Pets.Terror",
- "Hash": 1674014125,
- "Length": 17203
+ "Hash": -421135554,
+ "Length": 17150
},
{
"Archetype": "",
"Fullname": "Pets.ThunderStrikePunch",
- "Hash": -954577736,
- "Length": 4214
+ "Hash": -988292577,
+ "Length": 4188
},
{
"Archetype": "",
"Fullname": "Pets.Traps_Set_TimeBomb_Defender",
- "Hash": -1792004764,
- "Length": 6482
+ "Hash": 1241975640,
+ "Length": 6481
},
{
"Archetype": "",
"Fullname": "Pets.DistortionField_Defender",
- "Hash": 1598044332,
- "Length": 14292
+ "Hash": 1852855495,
+ "Length": 14266
},
{
"Archetype": "",
"Fullname": "Pets.DistortionField_Controller",
- "Hash": 336065463,
- "Length": 14324
+ "Hash": -822760674,
+ "Length": 14298
},
{
"Archetype": "",
"Fullname": "Pets.Tornado",
- "Hash": -887129170,
- "Length": 19768
+ "Hash": -1746121428,
+ "Length": 19664
},
{
"Archetype": "",
"Fullname": "Pets.Transference_Mastermind",
- "Hash": -1247319951,
- "Length": 3048
+ "Hash": 1413586846,
+ "Length": 3022
},
{
"Archetype": "",
"Fullname": "Pets.Transference_Controller",
- "Hash": 1772703574,
- "Length": 3055
+ "Hash": 371891203,
+ "Length": 3029
},
{
"Archetype": "",
"Fullname": "Pets.Transference",
- "Hash": -609817768,
- "Length": 2989
+ "Hash": -1881131075,
+ "Length": 2963
},
{
"Archetype": "",
"Fullname": "Pets.Transfusion",
- "Hash": -1504376219,
- "Length": 3004
+ "Hash": 83377146,
+ "Length": 2978
},
{
"Archetype": "",
"Fullname": "Pets.Transfusion_Mastermind",
- "Hash": -1713374669,
- "Length": 3064
+ "Hash": 640536044,
+ "Length": 3038
},
{
"Archetype": "",
"Fullname": "Pets.Transfusion_Controller",
- "Hash": 1028894988,
- "Length": 3070
+ "Hash": -1710957905,
+ "Length": 3044
},
{
"Archetype": "",
"Fullname": "Pets.Transponder",
- "Hash": -1106649157,
- "Length": 46369
+ "Hash": 1295283263,
+ "Length": 46265
},
{
"Archetype": "",
"Fullname": "Pets.Tree",
- "Hash": 179683118,
- "Length": 21014
+ "Hash": 158865203,
+ "Length": 20980
},
{
"Archetype": "",
"Fullname": "Pets.Turret",
- "Hash": 554674108,
- "Length": 45289
+ "Hash": 1500741833,
+ "Length": 45235
},
{
"Archetype": "",
"Fullname": "Pets.Twilight",
- "Hash": 1353588709,
- "Length": 2974
+ "Hash": 2038338628,
+ "Length": 2948
},
{
"Archetype": "",
"Fullname": "Pets.Vahzilok_Explode",
- "Hash": -854653763,
- "Length": 3903
+ "Hash": 782864426,
+ "Length": 3877
},
{
"Archetype": "",
"Fullname": "Pets.Venomous_Gas",
- "Hash": 1791470896,
- "Length": 23095
+ "Hash": 897873169,
+ "Length": 23069
},
{
"Archetype": "",
"Fullname": "Pets.Vigilant_Assault_Proc",
- "Hash": 280831231,
- "Length": 3956
+ "Hash": 531601572,
+ "Length": 3930
},
{
"Archetype": "",
"Fullname": "Pets.VolcanicGasses",
- "Hash": -172682790,
- "Length": 8420
+ "Hash": 1076673152,
+ "Length": 8368
},
{
"Archetype": "",
"Fullname": "Pets.VolcanicGeyser",
- "Hash": 1210333118,
- "Length": 7651
+ "Hash": -2025385570,
+ "Length": 7599
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel_Defender",
- "Hash": -112299945,
- "Length": 10977
+ "Hash": 189910010,
+ "Length": 10945
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel",
- "Hash": -532722393,
- "Length": 12958
+ "Hash": -30160544,
+ "Length": 12926
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel_Sentinel",
- "Hash": 876367870,
- "Length": 13086
+ "Hash": 1435296501,
+ "Length": 13054
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel_Dominator",
- "Hash": 17672184,
- "Length": 10992
+ "Hash": 1137079124,
+ "Length": 10964
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel_Critter",
- "Hash": -1651824243,
- "Length": 10962
+ "Hash": 2120364143,
+ "Length": 10934
},
{
"Archetype": "",
"Fullname": "Pets.VoltaicSentinel_Corruptor",
- "Hash": -1391469405,
- "Length": 13234
+ "Hash": -17868255,
+ "Length": 13206
},
{
"Archetype": "",
"Fullname": "Pets.Warburg_Afterglow",
- "Hash": 363164183,
- "Length": 2970
+ "Hash": 1912174524,
+ "Length": 2944
},
{
"Archetype": "",
"Fullname": "Pets.Warburg_Biological",
- "Hash": 2111714846,
- "Length": 11721
+ "Hash": 175505361,
+ "Length": 11720
},
{
"Archetype": "",
"Fullname": "Pets.Warburg_Chemical",
- "Hash": -1304225140,
- "Length": 14069
+ "Hash": 366434901,
+ "Length": 14043
},
{
"Archetype": "",
"Fullname": "Pets.Warburg_Nuclear",
- "Hash": 304903585,
- "Length": 9639
+ "Hash": 903625554,
+ "Length": 9613
},
{
"Archetype": "",
"Fullname": "Pets.TempPower_Warwolf_Wistel_Pet",
- "Hash": 669828642,
- "Length": 2895
+ "Hash": -1948922473,
+ "Length": 2869
},
{
"Archetype": "",
"Fullname": "Pets.Water_Blast_Defender",
- "Hash": -956906343,
- "Length": 27528
+ "Hash": -2107753988,
+ "Length": 27525
},
{
"Archetype": "",
"Fullname": "Pets.Water_Blast_Blaster",
- "Hash": -866606837,
- "Length": 43361
+ "Hash": -996702770,
+ "Length": 43358
},
{
"Archetype": "",
"Fullname": "Pets.Water_Blast_Corruptor",
- "Hash": 861472725,
- "Length": 31020
+ "Hash": -673649268,
+ "Length": 31017
},
{
"Archetype": "",
"Fullname": "Pets.Whirlpool_Blaster",
- "Hash": -1324153002,
- "Length": 13181
+ "Hash": -766909386,
+ "Length": 13129
},
{
"Archetype": "",
"Fullname": "Pets.Whirlpool_Corruptor",
- "Hash": 1672887222,
- "Length": 15356
+ "Hash": 1400567574,
+ "Length": 15304
},
{
"Archetype": "",
"Fullname": "Pets.Whirlpool_Defender",
- "Hash": -1967862135,
- "Length": 13196
+ "Hash": -548675223,
+ "Length": 13144
},
{
"Archetype": "",
"Fullname": "Pets.Whirlpool_Sentinel",
- "Hash": -1984894396,
- "Length": 13166
+ "Hash": 50566852,
+ "Length": 13114
},
{
"Archetype": "",
"Fullname": "Pets.Wind_Control_Vacuum_Controller",
- "Hash": 239271705,
- "Length": 19347
+ "Hash": 712535745,
+ "Length": 19295
},
{
"Archetype": "",
"Fullname": "Pets.Wind_Control_Vacuum_Dominator",
- "Hash": 2000881910,
- "Length": 18332
+ "Hash": -817896682,
+ "Length": 18280
},
{
"Archetype": "",
"Fullname": "Pets.Wind_Control_Vortex",
- "Hash": -2050001544,
- "Length": 60159
+ "Hash": -1448953317,
+ "Length": 60077
},
{
"Archetype": "",
"Fullname": "Pets.Wind_Control_HailOfDebris",
- "Hash": -1692616282,
- "Length": 20525
+ "Hash": 1008582989,
+ "Length": 20499
},
{
"Archetype": "",
@@ -19706,998 +19706,998 @@
{
"Archetype": "",
"Fullname": "Pets.Zombie",
- "Hash": -1137066436,
- "Length": 23862
+ "Hash": 1325470694,
+ "Length": 23833
},
{
"Archetype": "",
"Fullname": "Pool.Invisibility",
- "Hash": -1067476800,
- "Length": 134047
+ "Hash": -603828435,
+ "Length": 134029
},
{
"Archetype": "",
"Fullname": "Pool.Fighting",
- "Hash": 724210290,
- "Length": 212423
+ "Hash": 821591792,
+ "Length": 212415
},
{
"Archetype": "",
"Fullname": "Pool.Flight",
- "Hash": 559254444,
- "Length": 112421
+ "Hash": -1749608788,
+ "Length": 112366
},
{
"Archetype": "",
"Fullname": "Pool.Leadership",
- "Hash": 779133138,
- "Length": 93102
+ "Hash": -1792086319,
+ "Length": 93087
},
{
"Archetype": "",
"Fullname": "Pool.Leaping",
- "Hash": -230775729,
- "Length": 89154
+ "Hash": 1076079506,
+ "Length": 89123
},
{
"Archetype": "",
"Fullname": "Pool.Medicine",
- "Hash": -1719959486,
- "Length": 58331
+ "Hash": -982717512,
+ "Length": 58326
},
{
"Archetype": "",
"Fullname": "Pool.Manipulation",
- "Hash": -1157853884,
- "Length": 43003
+ "Hash": -955716307,
+ "Length": 42998
},
{
"Archetype": "",
"Fullname": "Pool.Sorcery",
- "Hash": 1802510739,
- "Length": 93157
+ "Hash": 1447890457,
+ "Length": 93124
},
{
"Archetype": "",
"Fullname": "Pool.Speed",
- "Hash": -257833171,
- "Length": 102251
+ "Hash": -378060447,
+ "Length": 102221
},
{
"Archetype": "",
"Fullname": "Pool.Teleportation",
- "Hash": -1783647034,
- "Length": 41958
+ "Hash": -1102714733,
+ "Length": 41952
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Bio_Organic_Armor",
- "Hash": 929980728,
- "Length": 259545
+ "Hash": -659488675,
+ "Length": 259477
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Dark_Armor",
- "Hash": 1918342635,
- "Length": 103843
+ "Hash": -1068862803,
+ "Length": 103799
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Electric_Armor",
- "Hash": -845637465,
- "Length": 114584
+ "Hash": -1329670420,
+ "Length": 114535
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Energy_Aura",
- "Hash": 1531805534,
- "Length": 163942
+ "Hash": 783726032,
+ "Length": 163913
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Fiery_Aura",
- "Hash": 837786115,
- "Length": 86593
+ "Hash": -1901149602,
+ "Length": 86556
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Ice_Armor",
- "Hash": -1389799006,
- "Length": 164838
+ "Hash": 962361180,
+ "Length": 164799
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Invulnerability",
- "Hash": 1096128750,
- "Length": 154518
+ "Hash": -2121678642,
+ "Length": 154427
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Ninjitsu",
- "Hash": -1281873882,
- "Length": 124138
+ "Hash": -935274475,
+ "Length": 124076
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Radiation_Armor",
- "Hash": -782033989,
- "Length": 122396
+ "Hash": 405433787,
+ "Length": 122361
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Regeneration",
- "Hash": -1623179475,
- "Length": 106743
+ "Hash": 38413891,
+ "Length": 106654
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Shield_Defense",
- "Hash": -753662143,
- "Length": 155806
+ "Hash": 1806093201,
+ "Length": 155751
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Super_Reflexes",
- "Hash": -208284904,
- "Length": 102593
+ "Hash": 1256901964,
+ "Length": 102482
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Defense.Willpower",
- "Hash": 569711648,
- "Length": 155726
+ "Hash": -1909472012,
+ "Length": 155641
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Battle_Axe",
- "Hash": -1748014230,
- "Length": 90318
+ "Hash": 2106812761,
+ "Length": 90303
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Broad_Sword",
- "Hash": -1162772483,
- "Length": 90900
+ "Hash": 593917829,
+ "Length": 90885
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Claws",
- "Hash": 674007161,
- "Length": 92313
+ "Hash": -1490151116,
+ "Length": 92287
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Dark_Melee",
- "Hash": 1749750590,
- "Length": 107229
+ "Hash": 1433052319,
+ "Length": 107217
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Dual_Blades",
- "Hash": 1466740730,
- "Length": 185100
+ "Hash": 704527884,
+ "Length": 185083
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Electrical_Melee",
- "Hash": 348195609,
- "Length": 115833
+ "Hash": 412932638,
+ "Length": 115816
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Fiery_Melee",
- "Hash": -93330383,
- "Length": 97526
+ "Hash": -990469817,
+ "Length": 97510
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Ice_Melee",
- "Hash": -1856744245,
- "Length": 108047
+ "Hash": 854364097,
+ "Length": 108031
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Katana",
- "Hash": -840808455,
- "Length": 90166
+ "Hash": 1781892606,
+ "Length": 90144
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Kinetic_Attack",
- "Hash": 2120911419,
- "Length": 140067
+ "Hash": -139360555,
+ "Length": 140050
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Martial_Arts",
- "Hash": 443254796,
- "Length": 97040
+ "Hash": -106468054,
+ "Length": 97024
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Psionic_Melee",
- "Hash": -57362439,
- "Length": 120680
+ "Hash": -945765986,
+ "Length": 120653
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Radiation_Melee",
- "Hash": 1599956318,
- "Length": 123099
+ "Hash": -998545308,
+ "Length": 123084
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Savage_Melee",
- "Hash": -963648360,
- "Length": 107372
+ "Hash": -190415050,
+ "Length": 107350
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Quills",
- "Hash": 619095182,
- "Length": 140195
+ "Hash": 1131735650,
+ "Length": 140180
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Staff_Fighting",
- "Hash": 690156843,
- "Length": 298257
+ "Hash": -374455312,
+ "Length": 298215
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Brawling",
- "Hash": -579494711,
- "Length": 219144
+ "Hash": 575978311,
+ "Length": 219124
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.Titan_Weapons",
- "Hash": -1990830963,
- "Length": 125570
+ "Hash": 1340225547,
+ "Length": 125545
},
{
"Archetype": "Class_Scrapper",
"Fullname": "Scrapper_Melee.War_Mace",
- "Hash": -1843718638,
- "Length": 90774
+ "Hash": -912334280,
+ "Length": 90759
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Bio_Organic_Armor",
- "Hash": -2039945357,
- "Length": 180518
+ "Hash": -1766883121,
+ "Length": 180405
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Dark_Armor",
- "Hash": 828109983,
- "Length": 109556
+ "Hash": 242014673,
+ "Length": 109492
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Electric_Armor",
- "Hash": -1672009570,
- "Length": 111540
+ "Hash": -1914152812,
+ "Length": 111489
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Energy_Aura",
- "Hash": -2037942650,
- "Length": 141044
+ "Hash": 1780951330,
+ "Length": 141015
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Fiery_Aura",
- "Hash": -2084129616,
- "Length": 84212
+ "Hash": 78485135,
+ "Length": 84175
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Ice_Armor",
- "Hash": 1668950562,
- "Length": 149514
+ "Hash": -369243490,
+ "Length": 149475
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Invulnerability",
- "Hash": -1029277332,
- "Length": 140702
+ "Hash": 2121467504,
+ "Length": 140606
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Ninjitsu",
- "Hash": -430372934,
- "Length": 123305
+ "Hash": 1291033147,
+ "Length": 123243
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Radiation_Armor",
- "Hash": -763048792,
- "Length": 115032
+ "Hash": -2085605393,
+ "Length": 114972
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Regeneration",
- "Hash": 1168799004,
- "Length": 107700
+ "Hash": 2021270442,
+ "Length": 107586
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Super_Reflexes",
- "Hash": 258875403,
- "Length": 126911
+ "Hash": -382875875,
+ "Length": 126799
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Defense.Willpower",
- "Hash": 1107966080,
- "Length": 149550
+ "Hash": -879400546,
+ "Length": 149465
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Archery",
- "Hash": 811205483,
- "Length": 78103
+ "Hash": 1548851172,
+ "Length": 78080
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Assault_Rifle",
- "Hash": 850986122,
- "Length": 86367
+ "Hash": 1719452886,
+ "Length": 86348
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Beam_Rifle",
- "Hash": 650635279,
- "Length": 97718
+ "Hash": -340655733,
+ "Length": 97711
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Dark_Blast",
- "Hash": -182895864,
- "Length": 90536
+ "Hash": 734491207,
+ "Length": 90519
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Dual_Pistols",
- "Hash": -433680565,
- "Length": 337198
+ "Hash": 565619093,
+ "Length": 337129
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Electrical_Blast",
- "Hash": 831706198,
- "Length": 113514
+ "Hash": 2107075079,
+ "Length": 113493
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Energy_Blast",
- "Hash": -137657041,
- "Length": 102321
+ "Hash": 1887698991,
+ "Length": 102293
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Fire_Blast",
- "Hash": -1840755765,
- "Length": 88331
+ "Hash": 199497034,
+ "Length": 88313
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Ice_Blast",
- "Hash": -1400764165,
- "Length": 117488
+ "Hash": -1833063518,
+ "Length": 117462
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Psychic_Blast",
- "Hash": 375742033,
- "Length": 92711
+ "Hash": 1481773607,
+ "Length": 92689
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Radiation_Blast",
- "Hash": -1641197298,
- "Length": 92283
+ "Hash": 2037588863,
+ "Length": 92263
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Sonic_Attack",
- "Hash": 1853142924,
- "Length": 143045
+ "Hash": 978820773,
+ "Length": 143028
},
{
"Archetype": "Class_Sentinel",
"Fullname": "Sentinel_Ranged.Water_Blast",
- "Hash": -1354422813,
- "Length": 166481
+ "Hash": -104340095,
+ "Length": 166467
},
{
"Archetype": "",
"Fullname": "Set_Bonus.PVP_Set_Bonus",
- "Hash": 660573776,
- "Length": 1651948
+ "Hash": 1524982649,
+ "Length": 1639962
},
{
"Archetype": "",
"Fullname": "Set_Bonus.Set_Bonus",
- "Hash": 2113825074,
- "Length": 2010029
+ "Hash": -1674297373,
+ "Length": 1996223
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Bio_Organic_Armor",
- "Hash": 181822755,
- "Length": 242199
+ "Hash": 745502765,
+ "Length": 242131
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Dark_Armor",
- "Hash": 1940690336,
- "Length": 132844
+ "Hash": -1145960206,
+ "Length": 132780
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Electric_Armor",
- "Hash": 1894935978,
- "Length": 152836
+ "Hash": 1946547301,
+ "Length": 152787
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Energy_Aura",
- "Hash": 11696683,
- "Length": 178269
+ "Hash": 250141574,
+ "Length": 178247
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Fiery_Aura",
- "Hash": 1055226902,
- "Length": 122375
+ "Hash": -1858829803,
+ "Length": 122338
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Ice_Armor",
- "Hash": 283791302,
- "Length": 206977
+ "Hash": -270395302,
+ "Length": 206938
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Invulnerability",
- "Hash": 1777042542,
- "Length": 182498
+ "Hash": 1901923549,
+ "Length": 182414
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Ninjitsu",
- "Hash": -1889583429,
- "Length": 126221
+ "Hash": 1905387494,
+ "Length": 126204
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Radiation_Armor",
- "Hash": 1646217452,
- "Length": 158906
+ "Hash": 1716008259,
+ "Length": 158871
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Regeneration",
- "Hash": -20105778,
- "Length": 150441
+ "Hash": -896941910,
+ "Length": 150377
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Shield_Defense",
- "Hash": -1149202224,
- "Length": 195565
+ "Hash": 68994469,
+ "Length": 195509
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Super_Reflexes",
- "Hash": -703977627,
- "Length": 139479
+ "Hash": 2019388837,
+ "Length": 139393
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Defense.Willpower",
- "Hash": -656690175,
- "Length": 192049
+ "Hash": 1219394045,
+ "Length": 191990
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Broad_Sword",
- "Hash": 1251047424,
- "Length": 101802
+ "Hash": 103219495,
+ "Length": 101786
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Claws",
- "Hash": -837013609,
- "Length": 98813
+ "Hash": 841703524,
+ "Length": 98791
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Dark_Melee",
- "Hash": 778437711,
- "Length": 104367
+ "Hash": 1861948322,
+ "Length": 104348
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Dual_Blades",
- "Hash": 1102237450,
- "Length": 193629
+ "Hash": -280752147,
+ "Length": 193607
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Electrical_Melee",
- "Hash": -483721236,
- "Length": 133208
+ "Hash": -646152172,
+ "Length": 133189
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Energy_Melee",
- "Hash": -1386485148,
- "Length": 110177
+ "Hash": 1005137074,
+ "Length": 110159
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Fiery_Melee",
- "Hash": -2000572783,
- "Length": 92038
+ "Hash": -2044544155,
+ "Length": 92021
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Ice_Melee",
- "Hash": -936957003,
- "Length": 99384
+ "Hash": 1077835329,
+ "Length": 99367
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Kinetic_Attack",
- "Hash": -1389022310,
- "Length": 151291
+ "Hash": 514036535,
+ "Length": 151269
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Martial_Arts",
- "Hash": -16528978,
- "Length": 104845
+ "Hash": 408957062,
+ "Length": 104828
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Ninja_Sword",
- "Hash": -1433212925,
- "Length": 101340
+ "Hash": -2103319869,
+ "Length": 101316
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Psionic_Melee",
- "Hash": -337061390,
- "Length": 124318
+ "Hash": 892073411,
+ "Length": 124288
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Radiation_Melee",
- "Hash": -825125692,
- "Length": 143089
+ "Hash": 1485072344,
+ "Length": 143072
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Savage_Melee",
- "Hash": 1922622463,
- "Length": 117582
+ "Hash": 2092437194,
+ "Length": 117559
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Spines",
- "Hash": -1946537569,
- "Length": 144942
+ "Hash": 1945076685,
+ "Length": 144925
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Staff_Fighting",
- "Hash": -249043475,
- "Length": 179184
+ "Hash": -883082952,
+ "Length": 179164
},
{
"Archetype": "Class_Stalker",
"Fullname": "Stalker_Melee.Brawling",
- "Hash": 1411843178,
- "Length": 195157
+ "Hash": 1867832796,
+ "Length": 195136
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Bio_Organic_Armor",
- "Hash": 660643727,
- "Length": 268364
+ "Hash": 1404257970,
+ "Length": 268296
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Dark_Armor",
- "Hash": -2102377142,
- "Length": 113811
+ "Hash": 1227000568,
+ "Length": 113767
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Electric_Armor",
- "Hash": -89193846,
- "Length": 117710
+ "Hash": -1793375059,
+ "Length": 117661
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Fiery_Aura",
- "Hash": 1280448608,
- "Length": 91121
+ "Hash": 1286796719,
+ "Length": 91084
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Ice_Armor",
- "Hash": 1507792963,
- "Length": 158244
+ "Hash": 1055835522,
+ "Length": 158210
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Invulnerability",
- "Hash": -440668278,
- "Length": 155092
+ "Hash": 1541931086,
+ "Length": 155001
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Radiation_Armor",
- "Hash": -523010213,
- "Length": 125892
+ "Hash": 516330040,
+ "Length": 125818
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Shield_Defense",
- "Hash": 2078228231,
- "Length": 156090
+ "Hash": 828700123,
+ "Length": 156035
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Stone_Armor",
- "Hash": -303781436,
- "Length": 163973
+ "Hash": 854695366,
+ "Length": 163934
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Super_Reflexes",
- "Hash": -872256721,
- "Length": 104674
+ "Hash": 1666764711,
+ "Length": 104563
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Defense.Willpower",
- "Hash": 1017604871,
- "Length": 156346
+ "Hash": 631697443,
+ "Length": 156261
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Battle_Axe",
- "Hash": -933650869,
- "Length": 100267
+ "Hash": 1721912110,
+ "Length": 100252
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Broad_Sword",
- "Hash": -2062782717,
- "Length": 92835
+ "Hash": 415733995,
+ "Length": 92820
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Claws",
- "Hash": 540813525,
- "Length": 92574
+ "Hash": 2130059466,
+ "Length": 92548
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Dark_Melee",
- "Hash": 742817590,
- "Length": 119517
+ "Hash": 1747910295,
+ "Length": 119505
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Dual_Blades",
- "Hash": 197847533,
- "Length": 192439
+ "Hash": 1333450551,
+ "Length": 192422
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Electrical_Melee",
- "Hash": 784968606,
- "Length": 128719
+ "Hash": 1983662591,
+ "Length": 128702
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Energy_Melee",
- "Hash": -1676725045,
- "Length": 115118
+ "Hash": -1978101139,
+ "Length": 115096
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Fiery_Melee",
- "Hash": 1299134039,
- "Length": 105567
+ "Hash": -1066268029,
+ "Length": 105551
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Ice_Melee",
- "Hash": 1428757077,
- "Length": 117451
+ "Hash": 983360475,
+ "Length": 117435
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Katana",
- "Hash": 1165913777,
- "Length": 91917
+ "Hash": -806336042,
+ "Length": 91895
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Kinetic_Attack",
- "Hash": 745660039,
- "Length": 150635
+ "Hash": 211034289,
+ "Length": 150618
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Martial_Arts",
- "Hash": -896412427,
- "Length": 122913
+ "Hash": -1515075115,
+ "Length": 122897
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Psionic_Melee",
- "Hash": 1591783995,
- "Length": 130382
+ "Hash": 1804669360,
+ "Length": 130355
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Radiation_Melee",
- "Hash": 621873143,
- "Length": 132666
+ "Hash": 1571010583,
+ "Length": 132651
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Savage_Melee",
- "Hash": -1922552341,
- "Length": 125941
+ "Hash": 293743533,
+ "Length": 125919
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Spines",
- "Hash": 1904062203,
- "Length": 149931
+ "Hash": -661124299,
+ "Length": 149916
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Staff_Fighting",
- "Hash": -1187155255,
- "Length": 307791
+ "Hash": -765050708,
+ "Length": 307749
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Stone_Melee",
- "Hash": -1621162875,
- "Length": 102317
+ "Hash": -790887696,
+ "Length": 102294
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Brawling",
- "Hash": -1732592687,
- "Length": 227733
+ "Hash": 599094695,
+ "Length": 227713
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Super_Strength",
- "Hash": 2099111349,
- "Length": 119026
+ "Hash": -1919107520,
+ "Length": 118998
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.Titan_Weapons",
- "Hash": -833804011,
- "Length": 136720
+ "Hash": -422134721,
+ "Length": 136695
},
{
"Archetype": "Class_Tanker",
"Fullname": "Tanker_Melee.War_Mace",
- "Hash": -73084733,
- "Length": 100667
+ "Hash": 824092307,
+ "Length": 100652
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Teamwork.Fortunata_Teamwork",
- "Hash": 596846860,
- "Length": 109272
+ "Hash": 1931933279,
+ "Length": 109261
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Teamwork.Teamwork",
- "Hash": 1059925743,
- "Length": 112770
+ "Hash": 2029286510,
+ "Length": 112735
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Teamwork.Widow_Teamwork",
- "Hash": 2032375981,
- "Length": 129618
+ "Hash": -358026713,
+ "Length": 129580
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Replacement_Powers",
- "Hash": -1927281348,
- "Length": 9705
+ "Hash": -1248418326,
+ "Length": 9700
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Phasing",
- "Hash": 85934621,
- "Length": 104546
+ "Hash": 82597213,
+ "Length": 103818
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Accolades",
- "Hash": -613209550,
- "Length": 120388
+ "Hash": 1630852136,
+ "Length": 120107
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Art_Test",
- "Hash": -1246421890,
- "Length": 21595
+ "Hash": -1646513994,
+ "Length": 21581
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Savage_Melee",
- "Hash": -1863485417,
- "Length": 4906
+ "Hash": 1191231266,
+ "Length": 4880
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Day_Job_Powers",
- "Hash": -385114595,
- "Length": 400116
+ "Hash": 1270489063,
+ "Length": 397730
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Level_Shift",
- "Hash": 439428194,
- "Length": 155341
+ "Hash": -107985352,
+ "Length": 152741
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.Temporary_Powers",
- "Hash": -1965046014,
- "Length": 4419036
+ "Hash": -1282494930,
+ "Length": 4408143
},
{
"Archetype": "",
"Fullname": "Temporary_Powers.SilentPowers",
- "Hash": 416107574,
- "Length": 845014
+ "Hash": -1335128380,
+ "Length": 842258
},
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Training_Gadgets.Bane_Spider_Training",
- "Hash": 274057608,
- "Length": 104201
+ "Hash": 411670673,
+ "Length": 104170
},
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Training_Gadgets.Crab_Spider_Training",
- "Hash": -79495583,
- "Length": 65848
+ "Hash": 1290412268,
+ "Length": 65818
},
{
"Archetype": "Class_Arachnos_Soldier",
"Fullname": "Training_Gadgets.Training_and_Gadgets",
- "Hash": -1274520375,
- "Length": 104578
+ "Hash": 610521909,
+ "Length": 104517
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Titan_Weapons_Brute",
- "Hash": 126755087,
- "Length": 131702
+ "Hash": -1784452474,
+ "Length": 131678
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Ninja_Blade_Assassins_Strike",
- "Hash": 131426951,
- "Length": 18426
+ "Hash": -247203855,
+ "Length": 18424
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Martial_Arts_Assassins_Strike",
- "Hash": 1218034154,
- "Length": 20213
+ "Hash": 1072186532,
+ "Length": 20209
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Claws_Assassins_Strike",
- "Hash": -1810113150,
- "Length": 18259
+ "Hash": -1043652510,
+ "Length": 18255
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Staff_Fighting_Assassins_Strike",
- "Hash": 379107695,
- "Length": 29193
+ "Hash": -623522527,
+ "Length": 29189
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Fiery_Melee_Assassins_Blaze",
- "Hash": 785776256,
- "Length": 18119
+ "Hash": -1580439906,
+ "Length": 18117
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Savage_Melee_Assassins_Strike",
- "Hash": -1822388973,
- "Length": 20861
+ "Hash": -2136478343,
+ "Length": 20857
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dual_Blades_Assassins_Strike",
- "Hash": -61377381,
- "Length": 34814
+ "Hash": -2015596899,
+ "Length": 34810
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Spines_Assassins_Strike",
- "Hash": 1647240514,
- "Length": 18446
+ "Hash": 2004195610,
+ "Length": 18442
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Electric_Melee_Assassins_Strike",
- "Hash": -1768790854,
- "Length": 21654
+ "Hash": -731563740,
+ "Length": 21650
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Ice_Melee_Assassins_Frost",
- "Hash": -1467099344,
- "Length": 18304
+ "Hash": 2064837332,
+ "Length": 18302
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Kinetic_Melee_Assassins_Strike",
- "Hash": 1323724254,
- "Length": 21456
+ "Hash": 32844370,
+ "Length": 21454
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Broad_Sword_Assassins_Strike",
- "Hash": 599604084,
- "Length": 18460
+ "Hash": -1689195758,
+ "Length": 18458
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Street_Justice_Assassins_Strike",
- "Hash": 557254150,
- "Length": 29214
+ "Hash": 1014701969,
+ "Length": 29207
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dark_Melee_Assassins_Strike",
- "Hash": 1742036020,
- "Length": 21541
+ "Hash": 295226958,
+ "Length": 21537
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Psionic_Melee_Assassins_Strike",
- "Hash": 395574847,
- "Length": 26471
+ "Hash": 299976929,
+ "Length": 26467
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Energy_Melee_Assassins_Strike",
- "Hash": -1289169444,
- "Length": 21525
+ "Hash": -1930989460,
+ "Length": 21521
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Radiation_Melee_Assassins_Corruption",
- "Hash": 1483583865,
- "Length": 24715
+ "Hash": -408593785,
+ "Length": 24711
},
{
"Archetype": "",
@@ -20708,116 +20708,116 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Acid_Mortar",
- "Hash": -1876269043,
- "Length": 55326
+ "Hash": -1510420307,
+ "Length": 55274
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Arachnobot_Blaster",
- "Hash": 458869930,
- "Length": 43459
+ "Hash": -893058049,
+ "Length": 43369
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Arachnobot_Disrupter",
- "Hash": 279268265,
- "Length": 52095
+ "Hash": 1629934335,
+ "Length": 52011
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Arachnobot_Spiderling",
- "Hash": 1146361441,
- "Length": 20952
+ "Hash": -653997681,
+ "Length": 20871
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Blood_Widow",
- "Hash": -1495886030,
- "Length": 76330
+ "Hash": 264492066,
+ "Length": 76265
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_TimeBomb",
- "Hash": -481369281,
- "Length": 48719
+ "Hash": -1914844156,
+ "Length": 48641
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Bomb",
- "Hash": -1056383896,
- "Length": 10603
+ "Hash": -462077103,
+ "Length": 10577
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Confuse_Dominator_Jump1",
- "Hash": -1886359466,
- "Length": 9085
+ "Hash": -366043815,
+ "Length": 9059
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Confuse_Dominator_Jump2",
- "Hash": 143220253,
- "Length": 9085
+ "Hash": -890418998,
+ "Length": 9059
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Confuse_Dominator_Jump3",
- "Hash": 1418266788,
- "Length": 6763
+ "Hash": 1604105807,
+ "Length": 6737
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Induction_Jump1",
- "Hash": 35340281,
- "Length": 6502
+ "Hash": 1570236210,
+ "Length": 6476
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Induction_Jump2",
- "Hash": 772388387,
- "Length": 6502
+ "Hash": -353534900,
+ "Length": 6476
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Induction_Jump3",
- "Hash": -1468670508,
- "Length": 6504
+ "Hash": -797421627,
+ "Length": 6478
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Induction_Jump4",
- "Hash": 415078962,
- "Length": 4333
+ "Hash": -737949993,
+ "Length": 4307
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Jolt_Dominator_Jump1",
- "Hash": 871552791,
- "Length": 9883
+ "Hash": 342730060,
+ "Length": 9857
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Jolt_Dominator_Jump2",
- "Hash": -1888245616,
- "Length": 9883
+ "Hash": -119956305,
+ "Length": 9857
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Jolt_Dominator_Jump3",
- "Hash": 365643893,
- "Length": 7573
+ "Hash": 2005186146,
+ "Length": 7547
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Lightning",
- "Hash": 596866903,
- "Length": 17372
+ "Hash": -1020947145,
+ "Length": 17268
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Chain_Stun_Dominator_Jump1",
- "Hash": 1183048834,
- "Length": 7641
+ "Hash": -1065127497,
+ "Length": 7615
},
{
"Archetype": "",
@@ -20834,98 +20834,98 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Coral_Guardian_Sentinel",
- "Hash": -1043319155,
- "Length": 40352
+ "Hash": 535318176,
+ "Length": 40278
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Coral_Guardian_Warder",
- "Hash": -1485746401,
- "Length": 40991
+ "Hash": -1721791731,
+ "Length": 40916
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corolax_Blue_Hybrid",
- "Hash": 2014360312,
- "Length": 30703
+ "Hash": -758288069,
+ "Length": 30639
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corolax_Red_Hybrid",
- "Hash": 659470893,
- "Length": 30281
+ "Hash": -1233761146,
+ "Length": 30221
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_Archery_Snipe",
- "Hash": -319903679,
- "Length": 13358
+ "Hash": -389773199,
+ "Length": 13356
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_AssaultRifle_Snipe",
- "Hash": 794909000,
- "Length": 18132
+ "Hash": -951958385,
+ "Length": 18130
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_BeamRifle_Snipe",
- "Hash": -1365990399,
- "Length": 26128
+ "Hash": -1697244106,
+ "Length": 26126
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_DarkBlast_Snipe",
- "Hash": -865247040,
- "Length": 15948
+ "Hash": 1542666109,
+ "Length": 15946
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_ElectricalBlast_Snipe",
- "Hash": 595593167,
- "Length": 22102
+ "Hash": -1514702110,
+ "Length": 22100
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_EnergyBlast_Snipe",
- "Hash": 1966430793,
- "Length": 22348
+ "Hash": -950048994,
+ "Length": 22346
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_FireBlast_Snipe",
- "Hash": -1349214888,
- "Length": 15808
+ "Hash": -1825324942,
+ "Length": 15806
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_PsychicBlast_Snipe",
- "Hash": 574462028,
- "Length": 15829
+ "Hash": -1057370015,
+ "Length": 15825
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Corruptor_RadiationBlast_Snipe",
- "Hash": -2081635621,
- "Length": 16814
+ "Hash": -674720366,
+ "Length": 16812
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Creeper_Patch",
- "Hash": 1771286890,
- "Length": 11770
+ "Hash": -985811877,
+ "Length": 11692
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Creeper_Entangle",
- "Hash": -1877004337,
- "Length": 14505
+ "Hash": 293346095,
+ "Length": 14453
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Creeper_Vine",
- "Hash": 701174155,
- "Length": 37818
+ "Hash": -1192313923,
+ "Length": 37763
},
{
"Archetype": "",
@@ -20936,80 +20936,80 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominating_Grasp",
- "Hash": -889381246,
- "Length": 9047
+ "Hash": 748212831,
+ "Length": 8969
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_DarkAssault_Snipe",
- "Hash": -408782555,
- "Length": 13349
+ "Hash": -2051742260,
+ "Length": 13347
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_ElectricityAssault_Snipe",
- "Hash": -255751646,
- "Length": 19655
+ "Hash": -818919857,
+ "Length": 19653
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_EnergyAssault_Snipe",
- "Hash": -828574839,
- "Length": 19692
+ "Hash": -1723928012,
+ "Length": 19690
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_FieryAssault_Snipe",
- "Hash": -146142520,
- "Length": 13180
+ "Hash": -129618720,
+ "Length": 13178
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_KineticAssault_Snipe",
- "Hash": -1934917304,
- "Length": 45065
+ "Hash": -1442556345,
+ "Length": 45061
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_MartialAssault_Snipe",
- "Hash": -1096919180,
- "Length": 15626
+ "Hash": 901877601,
+ "Length": 15622
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_PsionicAssault_Snipe",
- "Hash": -1193144366,
- "Length": 13166
+ "Hash": 446922379,
+ "Length": 13162
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Dominator_RadioactiveAssault_Snipe",
- "Hash": 483129716,
- "Length": 21280
+ "Hash": -1369569691,
+ "Length": 21278
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Power_Surge",
- "Hash": 410751893,
- "Length": 11893
+ "Hash": -1027987336,
+ "Length": 11867
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Lightning_Rod",
- "Hash": 775071071,
+ "Hash": -1790432737,
"Length": 2232
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Lightning_Rod_Stalker",
- "Hash": -2007283325,
- "Length": 6366
+ "Hash": -1629851562,
+ "Length": 6340
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Lightning_Rod_Brute",
- "Hash": 272868982,
- "Length": 6336
+ "Hash": 544602567,
+ "Length": 6310
},
{
"Archetype": "",
@@ -21020,38 +21020,38 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Fly_Trap",
- "Hash": 1725060784,
- "Length": 37346
+ "Hash": -1387137712,
+ "Length": 37308
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_FF_Generator",
- "Hash": 609377235,
- "Length": 40324
+ "Hash": 1904544536,
+ "Length": 40266
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Fortunata_Mistress",
- "Hash": 1164674426,
- "Length": 43638
+ "Hash": 1816182855,
+ "Length": 43573
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Fortunata_Seer",
- "Hash": -1351103330,
- "Length": 39934
+ "Hash": 1510250743,
+ "Length": 39845
},
{
"Archetype": "",
"Fullname": "Villain_Pets.HeatLossBuff",
- "Hash": 2027757698,
- "Length": 4086
+ "Hash": -1868410659,
+ "Length": 4060
},
{
"Archetype": "",
"Fullname": "Villain_Pets.HeatLossDebuff",
- "Hash": 2016301293,
- "Length": 20162
+ "Hash": 2122384418,
+ "Length": 20136
},
{
"Archetype": "",
@@ -21062,170 +21062,170 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Kuji_Kiri",
- "Hash": -728546230,
- "Length": 4134
+ "Hash": -563659091,
+ "Length": 4108
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Trip_Mine",
- "Hash": 306063683,
- "Length": 45902
+ "Hash": -369382622,
+ "Length": 45824
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Mu_Adept",
- "Hash": 774955773,
- "Length": 44676
+ "Hash": -1262543590,
+ "Length": 44591
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Mu_Guardian",
- "Hash": 1961343116,
- "Length": 37147
+ "Hash": -166811361,
+ "Length": 37063
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Mu_Striker",
- "Hash": -711186735,
- "Length": 44582
+ "Hash": -1591652463,
+ "Length": 44498
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Night_Widow",
- "Hash": -61386863,
- "Length": 68488
+ "Hash": 1091119859,
+ "Length": 68424
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Noxious_Gas",
- "Hash": 1083745831,
- "Length": 23168
+ "Hash": -632318518,
+ "Length": 23142
},
{
"Archetype": "",
"Fullname": "Villain_Pets.OilSlickTarget_Corruptor",
- "Hash": 238265558,
- "Length": 49206
+ "Hash": -1666483868,
+ "Length": 49102
},
{
"Archetype": "",
"Fullname": "Villain_Pets.OilSlickOil_Corruptor",
- "Hash": -419040695,
- "Length": 9484
+ "Hash": -67180652,
+ "Length": 9458
},
{
"Archetype": "",
"Fullname": "Villain_Pets.OilSlickBurn_Corruptor",
- "Hash": -284565563,
- "Length": 12515
+ "Hash": 1974580421,
+ "Length": 12411
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Poison_Gas",
- "Hash": 139994928,
- "Length": 16149
+ "Hash": -2126425839,
+ "Length": 16071
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Poison_Poison_Gas",
- "Hash": -1375755642,
- "Length": 18065
+ "Hash": -731232987,
+ "Length": 17987
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Poison_Trap",
- "Hash": -1814714348,
- "Length": 39641
+ "Hash": -647259916,
+ "Length": 39589
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Poison_Trap",
- "Hash": -797565195,
- "Length": 39559
+ "Hash": -770358299,
+ "Length": 39507
},
{
"Archetype": "",
"Fullname": "Villain_Pets.RainofArrows_Corruptor",
- "Hash": -1401962159,
- "Length": 8856
+ "Hash": -915203895,
+ "Length": 8804
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Scourging_Blast_Proc",
- "Hash": -470161073,
- "Length": 4243
+ "Hash": -1847532758,
+ "Length": 4217
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Seeker1",
- "Hash": 2125400347,
- "Length": 24958
+ "Hash": 1180551886,
+ "Length": 24880
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Seeker2",
- "Hash": -1730347325,
- "Length": 24957
+ "Hash": -1361405052,
+ "Length": 24879
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Seeker3",
- "Hash": -123378193,
- "Length": 24957
+ "Hash": -436280374,
+ "Length": 24879
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shade",
- "Hash": -1857852282,
- "Length": 27344
+ "Hash": 1880259267,
+ "Length": 27308
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shadow_Field",
- "Hash": 351583720,
- "Length": 10769
+ "Hash": 56563346,
+ "Length": 10717
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shadow_Field_Dominator",
- "Hash": -1645975959,
- "Length": 9739
+ "Hash": 536019025,
+ "Length": 9687
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shadow_Field_Dominator_Domination",
- "Hash": -1755337903,
- "Length": 10999
+ "Hash": 1918831433,
+ "Length": 10947
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shield_Charge_AoE3",
- "Hash": -721049619,
- "Length": 6419
+ "Hash": -838692762,
+ "Length": 6393
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shield_Charge_AoE2",
- "Hash": -933907934,
- "Length": 10527
+ "Hash": 1227432389,
+ "Length": 10501
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shield_Charge_AoE4",
- "Hash": 1639968211,
- "Length": 6396
+ "Hash": -2073291692,
+ "Length": 6370
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Shield_Charge_AoE",
- "Hash": 1478218846,
- "Length": 10503
+ "Hash": 1904556985,
+ "Length": 10477
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Sleet",
- "Hash": -215386594,
- "Length": 29457
+ "Hash": 1283893022,
+ "Length": 29405
},
{
"Archetype": "",
@@ -21236,38 +21236,38 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Spirit_Tree",
- "Hash": 1863808841,
- "Length": 3044
+ "Hash": -1951254996,
+ "Length": 3018
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Stalker_EpicMaceMastery_Snipe",
- "Hash": -818249842,
- "Length": 26185
+ "Hash": 962915071,
+ "Length": 26181
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Stalker_EpicMuMastery_Snipe",
- "Hash": 1418186163,
- "Length": 26224
+ "Hash": 18487117,
+ "Length": 26222
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Stalker_EpicSoulMastery_Snipe",
- "Hash": 1559029741,
- "Length": 19976
+ "Hash": 76803535,
+ "Length": 19974
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Static_Field_Dominator",
- "Hash": -1702102605,
- "Length": 13096
+ "Hash": 977911660,
+ "Length": 13070
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Static_Field_End_Recovery_Dominator",
- "Hash": -1131543385,
- "Length": 3314
+ "Hash": 1557018082,
+ "Length": 3288
},
{
"Archetype": "",
@@ -21284,92 +21284,92 @@
{
"Archetype": "",
"Fullname": "Villain_Pets.Superior_Scourging_Blast_Proc",
- "Hash": -7397098,
- "Length": 4399
+ "Hash": -1689417891,
+ "Length": 4373
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Thorntrops",
- "Hash": 1704005994,
- "Length": 8067
+ "Hash": -1218490669,
+ "Length": 8041
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Set_TimeBomb",
- "Hash": 1370564351,
- "Length": 6449
+ "Hash": -1185812661,
+ "Length": 6448
},
{
"Archetype": "",
"Fullname": "Villain_Pets.DistortionField_Mastermind",
- "Hash": -1330021627,
- "Length": 14441
+ "Hash": 218433554,
+ "Length": 14415
},
{
"Archetype": "",
"Fullname": "Villain_Pets.DistortionField_Corruptor",
- "Hash": -126282970,
- "Length": 14425
+ "Hash": 656962751,
+ "Length": 14399
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Toxic_Tarantula",
- "Hash": -787230745,
- "Length": 44570
+ "Hash": 1155670139,
+ "Length": 44507
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Traps_Triage_Beacon",
- "Hash": 680409955,
- "Length": 3140
+ "Hash": 789551898,
+ "Length": 3114
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Trick_Shot_Jump1",
- "Hash": -9503915,
- "Length": 6351
+ "Hash": 477334738,
+ "Length": 6325
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Trick_Shot_Jump2",
- "Hash": -573054255,
- "Length": 6351
+ "Hash": 362034014,
+ "Length": 6325
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Trick_Shot_Jump3",
- "Hash": 892355228,
- "Length": 6351
+ "Hash": 925651581,
+ "Length": 6325
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Trick_Shot_Jump4",
- "Hash": 894174637,
- "Length": 4226
+ "Hash": 412892718,
+ "Length": 4200
},
{
"Archetype": "",
"Fullname": "Villain_Pets.MMTwilight",
- "Hash": 561694154,
- "Length": 3019
+ "Hash": -487834869,
+ "Length": 2993
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Umbra_Beast",
- "Hash": -1373997598,
- "Length": 59999
+ "Hash": 1568462919,
+ "Length": 59983
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Water_Spout_Stalker",
- "Hash": 1576383476,
- "Length": 20829
+ "Hash": 1378791405,
+ "Length": 20699
},
{
"Archetype": "",
"Fullname": "Villain_Pets.Water_Spout",
- "Hash": 1343339843,
- "Length": 20597
+ "Hash": 197490878,
+ "Length": 20467
},
{
"Archetype": "",
@@ -21422,31 +21422,31 @@
{
"Archetype": "Class_Warshade",
"Fullname": "Warshade_Defensive.Umbral_Aura",
- "Hash": 96806777,
- "Length": 186330
+ "Hash": -1866160841,
+ "Length": 186221
},
{
"Archetype": "Class_Warshade",
"Fullname": "Warshade_Offensive.Umbral_Blast",
- "Hash": 1698746800,
- "Length": 173862
+ "Hash": -1622841351,
+ "Length": 173819
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Widow_Training.Fortunata_Training",
- "Hash": -1533471907,
- "Length": 69354
+ "Hash": 274308959,
+ "Length": 69331
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Widow_Training.Night_Widow_Training",
- "Hash": -656825784,
- "Length": 53951
+ "Hash": 1873380193,
+ "Length": 53945
},
{
"Archetype": "Class_Arachnos_Widow",
"Fullname": "Widow_Training.Widow_Training",
- "Hash": -1565914322,
- "Length": 86436
+ "Hash": -337728374,
+ "Length": 86415
}
]
\ No newline at end of file
diff --git a/Hero Designer/FileAssocation.cs b/Hero Designer/FileAssocation.cs
index 4899f2a8..83e89281 100644
--- a/Hero Designer/FileAssocation.cs
+++ b/Hero Designer/FileAssocation.cs
@@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
@@ -162,8 +163,18 @@ static void SetAssociation(string extension, string keyName, string openWith, st
{
uc.SetValue("Progid", keyName, RegistryValueKind.String);
}
+
+ // Delete the key instead of trying to change it
+ currentUser = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\" + extension, true);
+ currentUser.DeleteSubKey("UserChoice", false);
currentUser.Close();
+
+ // Tell explorer the file association has been changed
+ SHChangeNotify(0x08000000, 0x0000, IntPtr.Zero, IntPtr.Zero);
}
+ [DllImport("shell32.dll", CharSet = CharSet.Auto, SetLastError = true)]
+ static extern void SHChangeNotify(uint wEventId, uint uFlags, IntPtr dwItem1, IntPtr dwItem2);
+
}
}
diff --git a/Hero Designer/FodyWeavers.xml b/Hero Designer/FodyWeavers.xml
deleted file mode 100644
index 5029e706..00000000
--- a/Hero Designer/FodyWeavers.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Hero Designer/FodyWeavers.xsd b/Hero Designer/FodyWeavers.xsd
deleted file mode 100644
index 44a53744..00000000
--- a/Hero Designer/FodyWeavers.xsd
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks
-
-
-
-
- A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.
-
-
-
-
- A list of unmanaged 32 bit assembly names to include, delimited with line breaks.
-
-
-
-
- A list of unmanaged 64 bit assembly names to include, delimited with line breaks.
-
-
-
-
- The order of preloaded assemblies, delimited with line breaks.
-
-
-
-
-
- This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.
-
-
-
-
- Controls if .pdbs for reference assemblies are also embedded.
-
-
-
-
- Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.
-
-
-
-
- As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.
-
-
-
-
- Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.
-
-
-
-
- Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.
-
-
-
-
- A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |
-
-
-
-
- A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.
-
-
-
-
- A list of unmanaged 32 bit assembly names to include, delimited with |.
-
-
-
-
- A list of unmanaged 64 bit assembly names to include, delimited with |.
-
-
-
-
- The order of preloaded assemblies, delimited with |.
-
-
-
-
-
-
-
- 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.
-
-
-
-
- A comma-separated list of error codes that can be safely ignored in assembly verification.
-
-
-
-
- 'false' to turn off automatic generation of the XML Schema file.
-
-
-
-
-
\ No newline at end of file
diff --git a/Hero Designer/Forms/DataView.cs b/Hero Designer/Forms/DataView.cs
index 0ad8a33a..49fa0ad8 100644
--- a/Hero Designer/Forms/DataView.cs
+++ b/Hero Designer/Forms/DataView.cs
@@ -113,7 +113,7 @@ public bool DrawVillain
set
{
this.VillainColour = value;
- if (!MidsContext.Config.ShowVillainColours)
+ if (MidsContext.Config.DisableVillainColours)
this.VillainColour = false;
if (this.VillainColour)
this.pnlInfo.BackColor = System.Drawing.Color.Maroon;
@@ -193,7 +193,7 @@ public Enums.eVisibleSize VisibleSize
return !this.Compact ? Enums.eVisibleSize.Full : Enums.eVisibleSize.Compact;
}
// why is this ignored?
- set { }
+ set { }
}
public DataView()
@@ -838,7 +838,7 @@ void display_Info(bool NoLevel = false, int iEnhLvl = -1)
void DisplayData(bool noLevel = false, int iEnhLevel = -1)
{
- if (MidsContext.Config.DataDamageGraph)
+ if (MidsContext.Config.DisableDataDamageGraph)
{
this.info_Damage.GraphType = MidsContext.Config.DataGraphType;
switch (MidsContext.Config.DataGraphType)
@@ -993,9 +993,9 @@ void DisplayFlippedEnhancements()
SolidBrush solidBrush1 = new SolidBrush(this.enhListing.NameColor);
format.Alignment = StringAlignment.Far;
format.LineAlignment = StringAlignment.Center;
- this.bxFlip.Graphics.DrawString("Active Slotting:", this.pnlEnhActive.Font, (Brush)solidBrush1, (RectangleF)rectangle1, format);
+ this.bxFlip.Graphics.DrawString("Active Slotting:", this.pnlEnhActive.Font, solidBrush1, rectangle1, format);
rectangle1.Y += rectangle1.Height;
- this.bxFlip.Graphics.DrawString("Alternate:", this.pnlEnhActive.Font, (Brush)solidBrush1, (RectangleF)rectangle1, format);
+ this.bxFlip.Graphics.DrawString("Alternate:", this.pnlEnhActive.Font, solidBrush1, rectangle1, format);
ImageAttributes recolourIa = clsDrawX.GetRecolourIa(MidsContext.Character.IsHero());
SolidBrush solidBrush2 = new SolidBrush(Color.FromArgb(160, 0, 0, 0));
int num2 = MidsContext.Character.CurrentBuild.Powers[inToonHistory].SlotCount - 1;
@@ -1024,7 +1024,7 @@ void DisplayFlippedEnhancements()
I9Gfx.DrawEnhancementAt(ref graphics1, iDest, DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].ImageIdx, I9Gfx.ToGfxGrade(DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].TypeID, MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Grade));
if (MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh > -1)
{
- if (MidsContext.Config.I9.DisplayIOLevels & (DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].TypeID == Enums.eType.SetO | DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].TypeID == Enums.eType.InventO))
+ if (!MidsContext.Config.I9.HideIOLevels & (DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].TypeID == Enums.eType.SetO | DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].Enhancement.Enh].TypeID == Enums.eType.InventO))
{
Bounds = iDest;
Bounds.Y -= 3f;
@@ -1054,9 +1054,9 @@ void DisplayFlippedEnhancements()
I9Gfx.DrawEnhancementAt(ref graphics1, rectangle2, DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].ImageIdx, I9Gfx.ToGfxGrade(DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID, MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Grade));
if (MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh > -1)
{
- if (MidsContext.Config.I9.DisplayIOLevels & (DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.SetO | DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.InventO))
+ if (!MidsContext.Config.I9.HideIOLevels & (DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.SetO | DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.InventO))
{
- Bounds = (RectangleF)rectangle2;
+ Bounds = rectangle2;
Bounds.Y -= 3f;
Bounds.Height = Control.DefaultFont.GetHeight(this.bxFlip.Graphics);
Graphics graphics2 = this.bxFlip.Graphics;
@@ -1064,7 +1064,7 @@ void DisplayFlippedEnhancements()
}
else if (MidsContext.Config.ShowEnhRel & (DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.Normal | DatabaseAPI.Database.Enhancements[MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.Enh].TypeID == Enums.eType.SpecialO))
{
- Bounds = (RectangleF)rectangle2;
+ Bounds = rectangle2;
Bounds.Y -= 3f;
Bounds.Height = Control.DefaultFont.GetHeight(this.bxFlip.Graphics);
Color Text = MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.RelativeLevel != Enums.eEnhRelative.None ? (MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.RelativeLevel >= Enums.eEnhRelative.Even ? (MidsContext.Character.CurrentBuild.Powers[inToonHistory].Slots[index].FlippedEnhancement.RelativeLevel <= Enums.eEnhRelative.Even ? Color.White : Color.FromArgb(0, (int)byte.MaxValue, (int)byte.MaxValue)) : Color.Yellow) : Color.Red;
@@ -1079,7 +1079,7 @@ void DisplayFlippedEnhancements()
this.bxFlip.Graphics.DrawImage((Image)I9Gfx.EnhTypes.Bitmap, destRect, 0, 0, 30, 30, System.Drawing.GraphicsUnit.Pixel, recolourIa);
}
rectangle2.Inflate(2, 2);
- this.bxFlip.Graphics.FillEllipse((Brush)solidBrush2, rectangle2);
+ this.bxFlip.Graphics.FillEllipse(solidBrush2, rectangle2);
}
this.RedrawFlip();
}
@@ -1203,7 +1203,7 @@ void DoPaint()
format.Alignment = StringAlignment.Center;
format.LineAlignment = StringAlignment.Center;
Rectangle rect = new Rectangle(0, 0, 75, this.pnlTabs.Height);
- extendedBitmap.Graphics.FillRectangle((Brush)solidBrush2, extendedBitmap.ClipRect);
+ extendedBitmap.Graphics.FillRectangle(solidBrush2, extendedBitmap.ClipRect);
switch (this.TabPage)
{
case 0:
@@ -1250,13 +1250,13 @@ void DoPaint()
rect = new Rectangle(rect.Width * index, 2, 70, this.pnlTabs.Height - 2);
layoutRectangle = new RectangleF((float)rect.X, (float)rect.Y + (float)(((double)rect.Height - (double)font1.GetHeight(graphics)) / 2.0), (float)rect.Width, font1.GetHeight(graphics));
extendedBitmap.Graphics.DrawRectangle(pen, rect);
- extendedBitmap.Graphics.DrawString(this.Pages[index], font1, (Brush)solidBrush1, layoutRectangle, format);
+ extendedBitmap.Graphics.DrawString(this.Pages[index], font1, solidBrush1, layoutRectangle, format);
}
rect = new Rectangle(70 * this.TabPage, 0, 70, this.pnlTabs.Height);
layoutRectangle = new RectangleF((float)rect.X, (float)(((double)rect.Height - (double)font1.GetHeight(graphics)) / 2.0), (float)rect.Width, font1.GetHeight(graphics));
- extendedBitmap.Graphics.FillRectangle((Brush)solidBrush3, rect);
+ extendedBitmap.Graphics.FillRectangle(solidBrush3, rect);
extendedBitmap.Graphics.DrawRectangle(pen, rect);
- extendedBitmap.Graphics.DrawString(this.Pages[this.TabPage], font2, (Brush)solidBrush1, layoutRectangle, format);
+ extendedBitmap.Graphics.DrawString(this.Pages[this.TabPage], font2, solidBrush1, layoutRectangle, format);
graphics.DrawImageUnscaled((Image)extendedBitmap.Bitmap, 0, 0);
}
@@ -1823,7 +1823,7 @@ int effects_Status(Label iLabel, ctlPairedList iList)
int num2 = this.pBase.Effects.Length - 1;
for (int iTagID = 0; iTagID <= num2; ++iTagID)
{
- if (this.pBase.Effects[iTagID].PvMode != Enums.ePvX.PvP & MidsContext.Config.Inc.PvE | this.pBase.Effects[iTagID].PvMode != Enums.ePvX.PvE & !MidsContext.Config.Inc.PvE && this.pBase.Effects[iTagID].EffectType == Enums.eEffectType.MezResist & (double)this.pBase.Effects[iTagID].Probability > 0.0)
+ if (this.pBase.Effects[iTagID].PvMode != Enums.ePvX.PvP & !MidsContext.Config.Inc.DisablePvE | this.pBase.Effects[iTagID].PvMode != Enums.ePvX.PvE & MidsContext.Config.Inc.DisablePvE && this.pBase.Effects[iTagID].EffectType == Enums.eEffectType.MezResist & (double)this.pBase.Effects[iTagID].Probability > 0.0)
{
string str = (double)this.pEnh.Effects[iTagID].Duration >= 15.0 ? " - " + Utilities.FixDP(this.pEnh.Effects[iTagID].Duration) + "s" : string.Empty;
string iValue = Conversions.ToString(this.pBase.Effects[iTagID].MagPercent) + "%" + str;
@@ -1985,8 +1985,8 @@ int EffectsDrh()
void EffectsRes(int index)
{
Enums.eDamage eDamage = Enums.eDamage.None;
- float[] res1 = this.pBase.GetRes(MidsContext.Config.Inc.PvE);
- float[] res2 = this.pEnh.GetRes(MidsContext.Config.Inc.PvE);
+ float[] res1 = this.pBase.GetRes(!MidsContext.Config.Inc.DisablePvE);
+ float[] res2 = this.pEnh.GetRes(!MidsContext.Config.Inc.DisablePvE);
string[] names = Enum.GetNames(eDamage.GetType());
Label label;
ctlPairedList ctlPairedList;
@@ -2245,7 +2245,7 @@ public void FlipStage(
int y1 = (int)Math.Round(((double)size.Height / 2.0 - 30.0) / 2.0);
local1 = new Rectangle(x, y1, 30, 30);
Rectangle destRect = rectangle1;
- this.bxFlip.Graphics.FillRectangle((Brush)solidBrush1, rectangle1);
+ this.bxFlip.Graphics.FillRectangle(solidBrush1, rectangle1);
Rectangle rectangle2 = new Rectangle((int)Math.Round((double)rectangle1.X + (30.0 - 30.0 * (double)State) / 2.0), rectangle1.Y, (int)Math.Round(30.0 * (double)State), 30);
Graphics graphics;
if (Enh1 > -1)
@@ -2262,7 +2262,7 @@ public void FlipStage(
double num1 = (double)size.Height / 2.0;
int num2 = (int)Math.Round(y2 + num1);
local2.Y = num2;
- this.bxFlip.Graphics.FillRectangle((Brush)solidBrush1, rectangle1);
+ this.bxFlip.Graphics.FillRectangle(solidBrush1, rectangle1);
rectangle2 = new Rectangle((int)Math.Round((double)rectangle1.X + (30.0 - 30.0 * (double)State) / 2.0), rectangle1.Y, (int)Math.Round(30.0 * (double)State), 30);
if (Enh2 > -1)
{
@@ -2272,7 +2272,7 @@ public void FlipStage(
else
this.bxFlip.Graphics.DrawImage((Image)I9Gfx.EnhTypes.Bitmap, rectangle2, 0, 0, 30, 30, System.Drawing.GraphicsUnit.Pixel, recolourIa);
rectangle2.Inflate(2, 2);
- this.bxFlip.Graphics.FillEllipse((Brush)solidBrush2, rectangle2);
+ this.bxFlip.Graphics.FillEllipse(solidBrush2, rectangle2);
this.pnlEnhInactive.CreateGraphics().DrawImage((Image)this.bxFlip.Bitmap, destRect, rectangle1, System.Drawing.GraphicsUnit.Pixel);
}
}
diff --git a/Hero Designer/Forms/FrmInputLevel.cs b/Hero Designer/Forms/FrmInputLevel.cs
index 1e68ae92..80be42d4 100644
--- a/Hero Designer/Forms/FrmInputLevel.cs
+++ b/Hero Designer/Forms/FrmInputLevel.cs
@@ -13,21 +13,21 @@ namespace Hero_Designer
public partial class FrmInputLevel : Form
{
- bool LongFormat;
+ bool longFormat;
- bool Mode2;
+ bool mode2;
frmMain myparent;
- public FrmInputLevel(ref frmMain iParent, bool iLF, bool iMode2)
+ public FrmInputLevel(frmMain iParent, bool iLF, bool iMode2)
{
this.InitializeComponent();
this.Name = nameof(FrmInputLevel);
System.ComponentModel.ComponentResourceManager componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(FrmInputLevel));
this.Icon = (System.Drawing.Icon)componentResourceManager.GetObject("$this.Icon");
this.myparent = iParent;
- this.LongFormat = iLF;
- this.Mode2 = iMode2;
+ this.longFormat = iLF;
+ this.mode2 = iMode2;
}
void btnOK_Click(object sender, EventArgs e)
@@ -43,10 +43,10 @@ void btnOK_Click(object sender, EventArgs e)
}
else
num = Convert.ToInt32(this.udLevel.Value);
- if (this.LongFormat)
- this.myparent.smlRespecLong(num - 1, this.Mode2);
+ if (this.longFormat)
+ this.myparent.smlRespecLong(num - 1, this.mode2);
else
- this.myparent.smlRespecShort(num - 1, this.Mode2);
+ this.myparent.smlRespecShort(num - 1, this.mode2);
this.Close();
}
diff --git a/Hero Designer/Forms/ImportExportItems/frmForum.cs b/Hero Designer/Forms/ImportExportItems/frmForum.cs
index 300512e7..df03a3fb 100644
--- a/Hero Designer/Forms/ImportExportItems/frmForum.cs
+++ b/Hero Designer/Forms/ImportExportItems/frmForum.cs
@@ -109,7 +109,7 @@ void frmForum_Load(object sender, EventArgs e)
this.lblCodeInf.Text = MidsContext.Config.Export.FormatCode[this.lstCodes.SelectedIndex].Notes;
this.SetTips();
ConfigData config = MidsContext.Config;
- this.chkDataChunk.Checked = config.I9.ExportDataChunk;
+ this.chkDataChunk.Checked = !config.I9.DisableExportDataChunk;
this.chkNoIOLevel.Checked = !config.I9.ExportIOLevels;
this.chkNoSetName.Checked = config.I9.ExportStripSetNames;
this.chkNoEnh.Checked = config.I9.ExportStripEnh;
@@ -148,9 +148,9 @@ void ibExport_ButtonClicked()
{
MidsContext.Config.ExportScheme = this.csList.SelectedIndex;
MidsContext.Config.ExportTarget = this.lstCodes.SelectedIndex;
- MidsContext.Config.ExportHex = true;
+ MidsContext.Config.DisableExportHex = false;
ConfigData config = MidsContext.Config;
- config.I9.ExportDataChunk = this.chkDataChunk.Checked;
+ config.I9.DisableExportDataChunk = !this.chkDataChunk.Checked;
config.I9.ExportIOLevels = !this.chkNoIOLevel.Checked;
config.I9.ExportStripSetNames = this.chkNoSetName.Checked;
config.I9.ExportStripEnh = this.chkNoEnh.Checked;
diff --git a/Hero Designer/Forms/OptionsMenuItems/DbEditor/frmEditPower.cs b/Hero Designer/Forms/OptionsMenuItems/DbEditor/frmEditPower.cs
index cf6b210a..f7776a42 100644
--- a/Hero Designer/Forms/OptionsMenuItems/DbEditor/frmEditPower.cs
+++ b/Hero Designer/Forms/OptionsMenuItems/DbEditor/frmEditPower.cs
@@ -757,7 +757,7 @@ void DrawAcceptedSets()
SolidBrush solidBrush2 = new SolidBrush(Color.FromArgb(0, (int)byte.MaxValue, 0));
format.Alignment = StringAlignment.Center;
format.LineAlignment = StringAlignment.Center;
- this.bxSet.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxSet.ClipRect);
+ this.bxSet.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxSet.ClipRect);
int num = this.myPower.SetTypes.Length - 1;
for (int index = 0; index <= num; ++index)
{
@@ -823,7 +823,7 @@ void DrawSetList()
format.Alignment = StringAlignment.Center;
format.LineAlignment = StringAlignment.Center;
string[] names = Enum.GetNames(eSetType.GetType());
- this.bxSetList.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxSetList.ClipRect);
+ this.bxSetList.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxSetList.ClipRect);
int num2 = names.Length - 1;
for (int index = 0; index <= num2; ++index)
{
@@ -1727,7 +1727,7 @@ void RedrawEnhList()
this.bxEnhPicked = new ExtendedBitmap(this.pbEnhancements.Width, this.pbEnhancements.Height);
int enhPadding1 = this.enhPadding;
int enhPadding2 = this.enhPadding;
- this.bxEnhPicked.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxEnhPicked.ClipRect);
+ this.bxEnhPicked.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxEnhPicked.ClipRect);
Graphics graphics = this.bxEnhPicked.Graphics;
Pen pen = new Pen(Color.FromArgb(0, 0, (int)byte.MaxValue), 1f);
Size size = this.bxEnhPicked.Size;
@@ -1753,7 +1753,7 @@ void RedrawEnhPicker()
int enhPadding1 = this.enhPadding;
int enhPadding2 = this.enhPadding;
int num1 = 0;
- this.bxEnhPicker.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxEnhPicker.ClipRect);
+ this.bxEnhPicker.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxEnhPicker.ClipRect);
Graphics graphics = this.bxEnhPicker.Graphics;
Pen pen = new Pen(Color.FromArgb(0, 0, (int)byte.MaxValue), 1f);
Size size = this.bxEnhPicker.Size;
diff --git a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.Designer.cs b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.Designer.cs
index dd22a97e..f4c571d0 100644
--- a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.Designer.cs
+++ b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.Designer.cs
@@ -30,8 +30,7 @@ protected override void Dispose(bool disposing)
///
private void InitializeComponent()
{
- this.components = (System.ComponentModel.IContainer)new System.ComponentModel.Container();
-
+ this.components = new System.ComponentModel.Container();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.TabControl1 = new System.Windows.Forms.TabControl();
@@ -71,6 +70,8 @@ private void InitializeComponent()
this.cbEnhLevel = new System.Windows.Forms.ComboBox();
this.Label4 = new System.Windows.Forms.Label();
this.TabPage2 = new System.Windows.Forms.TabPage();
+ this.Label16 = new System.Windows.Forms.Label();
+ this.TeamSize = new System.Windows.Forms.NumericUpDown();
this.GroupBox2 = new System.Windows.Forms.GroupBox();
this.clbSuppression = new System.Windows.Forms.CheckedListBox();
this.Label8 = new System.Windows.Forms.Label();
@@ -104,6 +105,22 @@ private void InitializeComponent()
this.Label11 = new System.Windows.Forms.Label();
this.Label5 = new System.Windows.Forms.Label();
this.udExHigh = new System.Windows.Forms.NumericUpDown();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.GroupBox20 = new System.Windows.Forms.GroupBox();
+ this.dcChannel = new System.Windows.Forms.TextBox();
+ this.Label17 = new System.Windows.Forms.Label();
+ this.richTextBox3 = new System.Windows.Forms.RichTextBox();
+ this.GroupBox19 = new System.Windows.Forms.GroupBox();
+ this.richTextBox4 = new System.Windows.Forms.RichTextBox();
+ this.Label18 = new System.Windows.Forms.Label();
+ this.dcServerName = new System.Windows.Forms.TextBox();
+ this.dcRemove = new System.Windows.Forms.Button();
+ this.dcAdd = new System.Windows.Forms.Button();
+ this.richTextBox2 = new System.Windows.Forms.RichTextBox();
+ this.dcExList = new System.Windows.Forms.ListBox();
+ this.GroupBox18 = new System.Windows.Forms.GroupBox();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.dcNickName = new System.Windows.Forms.TextBox();
this.TabPage4 = new System.Windows.Forms.TabPage();
this.GroupBox12 = new System.Windows.Forms.GroupBox();
this.fcReset = new System.Windows.Forms.Button();
@@ -150,8 +167,6 @@ private void InitializeComponent()
this.GroupBox16 = new System.Windows.Forms.GroupBox();
this.Label19 = new System.Windows.Forms.Label();
this.GroupBox1 = new System.Windows.Forms.GroupBox();
- this.Label2 = new System.Windows.Forms.Label();
- this.txtUpdatePath = new System.Windows.Forms.TextBox();
this.Label37 = new System.Windows.Forms.Label();
this.Label34 = new System.Windows.Forms.Label();
this.chkUpdates = new System.Windows.Forms.CheckBox();
@@ -167,45 +182,34 @@ private void InitializeComponent()
this.myTip = new System.Windows.Forms.ToolTip(this.components);
this.cPicker = new System.Windows.Forms.ColorDialog();
this.fbdSave = new System.Windows.Forms.FolderBrowserDialog();
- this.TeamSize = new System.Windows.Forms.NumericUpDown();
- this.Label16 = new System.Windows.Forms.Label();
- this.tabPage7 = new System.Windows.Forms.TabPage();
- this.GroupBox20 = new System.Windows.Forms.GroupBox();
- this.dcChannel = new System.Windows.Forms.TextBox();
- this.Label17 = new System.Windows.Forms.Label();
- this.richTextBox3 = new System.Windows.Forms.RichTextBox();
- this.GroupBox19 = new System.Windows.Forms.GroupBox();
- this.Label18 = new System.Windows.Forms.Label();
- this.dcServerName = new System.Windows.Forms.TextBox();
- this.dcRemove = new System.Windows.Forms.Button();
- this.dcAdd = new System.Windows.Forms.Button();
- this.richTextBox2 = new System.Windows.Forms.RichTextBox();
- this.dcExList = new System.Windows.Forms.ListBox();
- this.GroupBox18 = new System.Windows.Forms.GroupBox();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.dcNickName = new System.Windows.Forms.TextBox();
+ this.button1 = new System.Windows.Forms.Button();
this.TabControl1.SuspendLayout();
this.TabPage3.SuspendLayout();
this.GroupBox17.SuspendLayout();
- this.udStatSize.BeginInit();
- this.udRTFSize.BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udStatSize)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udRTFSize)).BeginInit();
this.GroupBox5.SuspendLayout();
this.GroupBox14.SuspendLayout();
- this.udIOLevel.BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udIOLevel)).BeginInit();
this.GroupBox3.SuspendLayout();
this.TabPage2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.TeamSize)).BeginInit();
this.GroupBox2.SuspendLayout();
this.GroupBox15.SuspendLayout();
this.GroupBox8.SuspendLayout();
this.GroupBox6.SuspendLayout();
this.TabPage6.SuspendLayout();
this.GroupBox13.SuspendLayout();
- this.udForceLevel.BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udForceLevel)).BeginInit();
this.GroupBox10.SuspendLayout();
- this.udBaseToHit.BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udBaseToHit)).BeginInit();
this.GroupBox4.SuspendLayout();
- this.udExLow.BeginInit();
- this.udExHigh.BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udExLow)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udExHigh)).BeginInit();
+ this.tabPage7.SuspendLayout();
+ this.GroupBox20.SuspendLayout();
+ this.GroupBox19.SuspendLayout();
+ this.GroupBox18.SuspendLayout();
this.TabPage4.SuspendLayout();
this.GroupBox12.SuspendLayout();
this.GroupBox11.SuspendLayout();
@@ -215,1403 +219,1689 @@ private void InitializeComponent()
this.TabPage1.SuspendLayout();
this.GroupBox9.SuspendLayout();
this.GroupBox7.SuspendLayout();
- this.tabPage7.SuspendLayout();
- this.GroupBox20.SuspendLayout();
- this.GroupBox19.SuspendLayout();
- this.GroupBox18.SuspendLayout();
- this.TeamSize.BeginInit();
this.SuspendLayout();
+ //
+ // btnOK
+ //
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
-
this.btnOK.Location = new System.Drawing.Point(504, 360);
this.btnOK.Name = "btnOK";
-
this.btnOK.Size = new System.Drawing.Size(75, 28);
this.btnOK.TabIndex = 59;
this.btnOK.Text = "OK";
- this.btnOK.Click += new System.EventHandler(btnOK_Click);
-
+ this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
+ //
+ // btnCancel
+ //
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
-
this.btnCancel.Location = new System.Drawing.Point(408, 360);
this.btnCancel.Name = "btnCancel";
-
this.btnCancel.Size = new System.Drawing.Size(75, 28);
this.btnCancel.TabIndex = 60;
this.btnCancel.Text = "Cancel";
- this.btnCancel.Click += new System.EventHandler(btnCancel_Click);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage3);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage2);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage6);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.tabPage7);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage4);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage5);
- this.TabControl1.Controls.Add((System.Windows.Forms.Control)this.TabPage1);
-
+ this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
+ //
+ // TabControl1
+ //
+ this.TabControl1.Controls.Add(this.TabPage3);
+ this.TabControl1.Controls.Add(this.TabPage2);
+ this.TabControl1.Controls.Add(this.TabPage6);
+ this.TabControl1.Controls.Add(this.tabPage7);
+ this.TabControl1.Controls.Add(this.TabPage4);
+ this.TabControl1.Controls.Add(this.TabPage5);
+ this.TabControl1.Controls.Add(this.TabPage1);
this.TabControl1.Location = new System.Drawing.Point(0, 0);
this.TabControl1.Name = "TabControl1";
this.TabControl1.SelectedIndex = 0;
-
- this.TabControl1.Size = new System.Drawing.Size(638, 352);
+ this.TabControl1.Size = new System.Drawing.Size(757, 352);
this.TabControl1.TabIndex = 0;
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.chkShowAlphaPopup);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.chkNoTips);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.chkMiddle);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.GroupBox17);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.chkIOPrintLevels);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.GroupBox5);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.GroupBox14);
- this.TabPage3.Controls.Add((System.Windows.Forms.Control)this.GroupBox3);
-
+ //
+ // TabPage3
+ //
+ this.TabPage3.Controls.Add(this.chkShowAlphaPopup);
+ this.TabPage3.Controls.Add(this.chkNoTips);
+ this.TabPage3.Controls.Add(this.chkMiddle);
+ this.TabPage3.Controls.Add(this.GroupBox17);
+ this.TabPage3.Controls.Add(this.chkIOPrintLevels);
+ this.TabPage3.Controls.Add(this.GroupBox5);
+ this.TabPage3.Controls.Add(this.GroupBox14);
+ this.TabPage3.Controls.Add(this.GroupBox3);
this.TabPage3.Location = new System.Drawing.Point(4, 23);
this.TabPage3.Name = "TabPage3";
-
- this.TabPage3.Size = new System.Drawing.Size(700, 325);
+ this.TabPage3.Size = new System.Drawing.Size(749, 325);
this.TabPage3.TabIndex = 2;
this.TabPage3.Text = "Enhancements & View";
this.TabPage3.UseVisualStyleBackColor = true;
-
+ //
+ // chkShowAlphaPopup
+ //
this.chkShowAlphaPopup.Location = new System.Drawing.Point(434, 285);
this.chkShowAlphaPopup.Name = "chkShowAlphaPopup";
-
this.chkShowAlphaPopup.Size = new System.Drawing.Size(190, 18);
this.chkShowAlphaPopup.TabIndex = 79;
this.chkShowAlphaPopup.Text = "Include Alpha buffs in popups";
-
+ //
+ // chkNoTips
+ //
this.chkNoTips.Location = new System.Drawing.Point(434, 304);
this.chkNoTips.Name = "chkNoTips";
-
this.chkNoTips.Size = new System.Drawing.Size(141, 18);
this.chkNoTips.TabIndex = 78;
this.chkNoTips.Text = "No Tooltips";
this.chkNoTips.Visible = false;
-
+ //
+ // chkMiddle
+ //
this.chkMiddle.Location = new System.Drawing.Point(206, 304);
this.chkMiddle.Name = "chkMiddle";
-
this.chkMiddle.Size = new System.Drawing.Size(222, 18);
this.chkMiddle.TabIndex = 77;
this.chkMiddle.Text = "Middle-Click repeats last enhancement";
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.chkColorInherent);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.chkHighVis);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.Label36);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.chkStatBold);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.chkTextBold);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.btnFontColour);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.Label22);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.chkVillainColour);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.Label21);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.udStatSize);
- this.GroupBox17.Controls.Add((System.Windows.Forms.Control)this.udRTFSize);
-
+ //
+ // GroupBox17
+ //
+ this.GroupBox17.Controls.Add(this.chkColorInherent);
+ this.GroupBox17.Controls.Add(this.chkHighVis);
+ this.GroupBox17.Controls.Add(this.Label36);
+ this.GroupBox17.Controls.Add(this.chkStatBold);
+ this.GroupBox17.Controls.Add(this.chkTextBold);
+ this.GroupBox17.Controls.Add(this.btnFontColour);
+ this.GroupBox17.Controls.Add(this.Label22);
+ this.GroupBox17.Controls.Add(this.chkVillainColour);
+ this.GroupBox17.Controls.Add(this.Label21);
+ this.GroupBox17.Controls.Add(this.udStatSize);
+ this.GroupBox17.Controls.Add(this.udRTFSize);
this.GroupBox17.Location = new System.Drawing.Point(196, 136);
this.GroupBox17.Name = "GroupBox17";
-
- this.GroupBox17.Size = new System.Drawing.Size(380, 143);
+ this.GroupBox17.Size = new System.Drawing.Size(545, 143);
this.GroupBox17.TabIndex = 76;
this.GroupBox17.TabStop = false;
this.GroupBox17.Text = "Font Size/Colors:";
-
- this.chkColorInherent.Location = new System.Drawing.Point(10, 118);
+ //
+ // chkColorInherent
+ //
+ this.chkColorInherent.Location = new System.Drawing.Point(144, 100);
this.chkColorInherent.Name = "chkColorInherent";
-
this.chkColorInherent.Size = new System.Drawing.Size(222, 20);
this.chkColorInherent.TabIndex = 70;
this.chkColorInherent.Text = "Use alternate colors for inherents";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkColorInherent, "Draws villain builds in red rather than blue.");
-
+ this.myTip.SetToolTip(this.chkColorInherent, "Draws villain builds in red rather than blue.");
+ //
+ // chkHighVis
+ //
this.chkHighVis.Location = new System.Drawing.Point(10, 74);
this.chkHighVis.Name = "chkHighVis";
-
this.chkHighVis.Size = new System.Drawing.Size(222, 20);
this.chkHighVis.TabIndex = 69;
this.chkHighVis.Text = "Use High-Visiblity text on the build view";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkHighVis, "Draw white text with a black outline on the build view (power bars on the right of the screen)");
-
+ this.myTip.SetToolTip(this.chkHighVis, "Draw white text with a black outline on the build view (power bars on the right o" +
+ "f the screen)");
+ //
+ // Label36
+ //
this.Label36.Location = new System.Drawing.Point(141, 9);
this.Label36.Name = "Label36";
-
this.Label36.Size = new System.Drawing.Size(39, 16);
this.Label36.TabIndex = 64;
this.Label36.Text = "Bold";
this.Label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // chkStatBold
+ //
this.chkStatBold.AutoSize = true;
-
this.chkStatBold.Location = new System.Drawing.Point(150, 51);
this.chkStatBold.Name = "chkStatBold";
-
this.chkStatBold.Size = new System.Drawing.Size(15, 14);
this.chkStatBold.TabIndex = 63;
this.chkStatBold.UseVisualStyleBackColor = true;
+ //
+ // chkTextBold
+ //
this.chkTextBold.AutoSize = true;
-
this.chkTextBold.Location = new System.Drawing.Point(150, 26);
this.chkTextBold.Name = "chkTextBold";
-
this.chkTextBold.Size = new System.Drawing.Size(15, 14);
this.chkTextBold.TabIndex = 62;
this.chkTextBold.UseVisualStyleBackColor = true;
-
- this.btnFontColour.Location = new System.Drawing.Point(200, 19);
+ //
+ // btnFontColour
+ //
+ this.btnFontColour.Location = new System.Drawing.Point(312, 19);
this.btnFontColour.Name = "btnFontColour";
-
this.btnFontColour.Size = new System.Drawing.Size(172, 27);
this.btnFontColour.TabIndex = 61;
this.btnFontColour.Text = "Set Colors...";
this.btnFontColour.UseVisualStyleBackColor = true;
this.btnFontColour.Click += new System.EventHandler(this.btnFontColour_Click);
-
+ //
+ // Label22
+ //
this.Label22.Location = new System.Drawing.Point(7, 48);
this.Label22.Name = "Label22";
-
this.Label22.Size = new System.Drawing.Size(78, 20);
this.Label22.TabIndex = 60;
this.Label22.Text = "Stats/Powers:";
this.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
- this.chkVillainColour.Location = new System.Drawing.Point(10, 96);
+ //
+ // chkVillainColour
+ //
+ this.chkVillainColour.Location = new System.Drawing.Point(277, 74);
this.chkVillainColour.Name = "chkVillainColour";
-
this.chkVillainColour.Size = new System.Drawing.Size(222, 20);
this.chkVillainColour.TabIndex = 68;
this.chkVillainColour.Text = "Use alternate colors for villains";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkVillainColour, "Draws villain builds in red rather than blue.");
-
+ this.myTip.SetToolTip(this.chkVillainColour, "Draws villain builds in red rather than blue.");
+ //
+ // Label21
+ //
this.Label21.Location = new System.Drawing.Point(7, 23);
this.Label21.Name = "Label21";
-
this.Label21.Size = new System.Drawing.Size(78, 20);
this.Label21.TabIndex = 59;
this.Label21.Text = "Info Tab Text:";
this.Label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
+ //
+ // udStatSize
+ //
this.udStatSize.DecimalPlaces = 2;
-
this.udStatSize.Location = new System.Drawing.Point(87, 48);
- this.udStatSize.Maximum = new System.Decimal(new int[4] { 14, 0, 0, 0 });
- this.udStatSize.Minimum = new System.Decimal(new int[4] { 6, 0, 0, 0 });
+ this.udStatSize.Maximum = new decimal(new int[] {
+ 14,
+ 0,
+ 0,
+ 0});
+ this.udStatSize.Minimum = new decimal(new int[] {
+ 6,
+ 0,
+ 0,
+ 0});
this.udStatSize.Name = "udStatSize";
-
this.udStatSize.Size = new System.Drawing.Size(52, 20);
this.udStatSize.TabIndex = 1;
- this.udStatSize.Value = new System.Decimal(new int[4] { 825, 0, 0, 131072 });
-
+ this.udStatSize.Value = new decimal(new int[] {
+ 825,
+ 0,
+ 0,
+ 131072});
+ //
+ // udRTFSize
+ //
this.udRTFSize.Location = new System.Drawing.Point(87, 22);
- this.udRTFSize.Maximum = new System.Decimal(new int[4] { 14, 0, 0, 0 });
- this.udRTFSize.Minimum = new System.Decimal(new int[4] { 6, 0, 0, 0 });
+ this.udRTFSize.Maximum = new decimal(new int[] {
+ 14,
+ 0,
+ 0,
+ 0});
+ this.udRTFSize.Minimum = new decimal(new int[] {
+ 6,
+ 0,
+ 0,
+ 0});
this.udRTFSize.Name = "udRTFSize";
-
this.udRTFSize.Size = new System.Drawing.Size(52, 20);
this.udRTFSize.TabIndex = 0;
- this.udRTFSize.Value = new System.Decimal(new int[4] { 8, 0, 0, 0 });
-
+ this.udRTFSize.Value = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 0});
+ //
+ // chkIOPrintLevels
+ //
this.chkIOPrintLevels.Location = new System.Drawing.Point(207, 285);
this.chkIOPrintLevels.Name = "chkIOPrintLevels";
-
this.chkIOPrintLevels.Size = new System.Drawing.Size(221, 18);
this.chkIOPrintLevels.TabIndex = 75;
this.chkIOPrintLevels.Text = "Display Invention levels in printed builds";
- this.GroupBox5.Controls.Add((System.Windows.Forms.Control)this.rbGraphSimple);
- this.GroupBox5.Controls.Add((System.Windows.Forms.Control)this.rbGraphStacked);
- this.GroupBox5.Controls.Add((System.Windows.Forms.Control)this.rbGraphTwoLine);
-
+ //
+ // GroupBox5
+ //
+ this.GroupBox5.Controls.Add(this.rbGraphSimple);
+ this.GroupBox5.Controls.Add(this.rbGraphStacked);
+ this.GroupBox5.Controls.Add(this.rbGraphTwoLine);
this.GroupBox5.Location = new System.Drawing.Point(388, 4);
this.GroupBox5.Name = "GroupBox5";
-
- this.GroupBox5.Size = new System.Drawing.Size(188, 125);
+ this.GroupBox5.Size = new System.Drawing.Size(353, 125);
this.GroupBox5.TabIndex = 72;
this.GroupBox5.TabStop = false;
this.GroupBox5.Text = "Damage Graph Style:";
-
+ //
+ // rbGraphSimple
+ //
this.rbGraphSimple.Location = new System.Drawing.Point(6, 89);
this.rbGraphSimple.Name = "rbGraphSimple";
-
this.rbGraphSimple.Size = new System.Drawing.Size(164, 32);
this.rbGraphSimple.TabIndex = 5;
this.rbGraphSimple.Text = "Base against Enhanced";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.rbGraphSimple, "This graph type doesn't reflect the max damage potential of other powers.");
-
+ this.myTip.SetToolTip(this.rbGraphSimple, "This graph type doesn\'t reflect the max damage potential of other powers.");
+ //
+ // rbGraphStacked
+ //
this.rbGraphStacked.Location = new System.Drawing.Point(6, 53);
this.rbGraphStacked.Name = "rbGraphStacked";
-
- this.rbGraphStacked.Size = new System.Drawing.Size(164, 32);
+ this.rbGraphStacked.Size = new System.Drawing.Size(286, 32);
this.rbGraphStacked.TabIndex = 4;
this.rbGraphStacked.Text = "Base + Enhanced (stacked) against Max Enhancable";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.rbGraphStacked, "'Max Enhacable' is damage if slotted with 6 +3 damage enhancements.");
+ this.myTip.SetToolTip(this.rbGraphStacked, "\'Max Enhacable\' is damage if slotted with 6 +3 damage enhancements.");
+ //
+ // rbGraphTwoLine
+ //
this.rbGraphTwoLine.Checked = true;
-
this.rbGraphTwoLine.Location = new System.Drawing.Point(6, 17);
this.rbGraphTwoLine.Name = "rbGraphTwoLine";
-
- this.rbGraphTwoLine.Size = new System.Drawing.Size(164, 32);
+ this.rbGraphTwoLine.Size = new System.Drawing.Size(286, 32);
this.rbGraphTwoLine.TabIndex = 3;
this.rbGraphTwoLine.TabStop = true;
this.rbGraphTwoLine.Text = "Base / Enhanced against Max Enhancable (Default)";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.rbGraphTwoLine, "The blue bar will indicate base damage, the yellow bar will indicate enhanced damage.");
- this.GroupBox14.Controls.Add((System.Windows.Forms.Control)this.chkIOLevel);
- this.GroupBox14.Controls.Add((System.Windows.Forms.Control)this.btnIOReset);
- this.GroupBox14.Controls.Add((System.Windows.Forms.Control)this.Label40);
- this.GroupBox14.Controls.Add((System.Windows.Forms.Control)this.udIOLevel);
-
+ this.myTip.SetToolTip(this.rbGraphTwoLine, "The blue bar will indicate base damage, the yellow bar will indicate enhanced dam" +
+ "age.");
+ //
+ // GroupBox14
+ //
+ this.GroupBox14.Controls.Add(this.chkIOLevel);
+ this.GroupBox14.Controls.Add(this.btnIOReset);
+ this.GroupBox14.Controls.Add(this.Label40);
+ this.GroupBox14.Controls.Add(this.udIOLevel);
this.GroupBox14.Location = new System.Drawing.Point(196, 4);
this.GroupBox14.Name = "GroupBox14";
-
this.GroupBox14.Size = new System.Drawing.Size(188, 125);
this.GroupBox14.TabIndex = 69;
this.GroupBox14.TabStop = false;
this.GroupBox14.Text = "Inventions:";
-
+ //
+ // chkIOLevel
+ //
this.chkIOLevel.Location = new System.Drawing.Point(8, 44);
this.chkIOLevel.Name = "chkIOLevel";
-
this.chkIOLevel.Size = new System.Drawing.Size(172, 24);
this.chkIOLevel.TabIndex = 60;
this.chkIOLevel.Text = "Display IO Levels";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkIOLevel, "Show the level of Inventions in the build view");
-
+ this.myTip.SetToolTip(this.chkIOLevel, "Show the level of Inventions in the build view");
+ //
+ // btnIOReset
+ //
this.btnIOReset.Location = new System.Drawing.Point(8, 72);
this.btnIOReset.Name = "btnIOReset";
-
this.btnIOReset.Size = new System.Drawing.Size(172, 44);
this.btnIOReset.TabIndex = 59;
this.btnIOReset.Text = "Set All IO and SetO levels to default";
- this.btnIOReset.Click += new System.EventHandler(btnIOReset_Click);
-
+ this.btnIOReset.Click += new System.EventHandler(this.btnIOReset_Click);
+ //
+ // Label40
+ //
this.Label40.Location = new System.Drawing.Point(8, 20);
this.Label40.Name = "Label40";
-
this.Label40.Size = new System.Drawing.Size(96, 20);
this.Label40.TabIndex = 58;
this.Label40.Text = "Default IO Level:";
this.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // udIOLevel
+ //
this.udIOLevel.Location = new System.Drawing.Point(108, 20);
- this.udIOLevel.Maximum = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.udIOLevel.Minimum = new System.Decimal(new int[4] { 10, 0, 0, 0 });
+ this.udIOLevel.Maximum = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ this.udIOLevel.Minimum = new decimal(new int[] {
+ 10,
+ 0,
+ 0,
+ 0});
this.udIOLevel.Name = "udIOLevel";
-
this.udIOLevel.Size = new System.Drawing.Size(72, 20);
this.udIOLevel.TabIndex = 57;
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.udIOLevel, "Inventions will be placed at this level by default. You can override the default by typing a level number in the picker.");
- this.udIOLevel.Value = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.chkRelSignOnly);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.Label3);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.optTO);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.optDO);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.optSO);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.optEnh);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.cbEnhLevel);
- this.GroupBox3.Controls.Add((System.Windows.Forms.Control)this.Label4);
-
+ this.myTip.SetToolTip(this.udIOLevel, "Inventions will be placed at this level by default. You can override the default " +
+ "by typing a level number in the picker.");
+ this.udIOLevel.Value = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ //
+ // GroupBox3
+ //
+ this.GroupBox3.Controls.Add(this.chkRelSignOnly);
+ this.GroupBox3.Controls.Add(this.Label3);
+ this.GroupBox3.Controls.Add(this.optTO);
+ this.GroupBox3.Controls.Add(this.optDO);
+ this.GroupBox3.Controls.Add(this.optSO);
+ this.GroupBox3.Controls.Add(this.optEnh);
+ this.GroupBox3.Controls.Add(this.cbEnhLevel);
+ this.GroupBox3.Controls.Add(this.Label4);
this.GroupBox3.Location = new System.Drawing.Point(4, 4);
this.GroupBox3.Name = "GroupBox3";
-
this.GroupBox3.Size = new System.Drawing.Size(184, 301);
this.GroupBox3.TabIndex = 62;
this.GroupBox3.TabStop = false;
this.GroupBox3.Text = "Regular Enhancements:";
-
+ //
+ // chkRelSignOnly
+ //
this.chkRelSignOnly.Location = new System.Drawing.Point(11, 252);
this.chkRelSignOnly.Name = "chkRelSignOnly";
-
this.chkRelSignOnly.Size = new System.Drawing.Size(167, 43);
this.chkRelSignOnly.TabIndex = 69;
- this.chkRelSignOnly.Text = "Show signs only for relative levels ('++' rather than '+2')";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkRelSignOnly, "Draws villain builds in red rather than blue.");
-
+ this.chkRelSignOnly.Text = "Show signs only for relative levels (\'++\' rather than \'+2\')";
+ this.myTip.SetToolTip(this.chkRelSignOnly, "Draws villain builds in red rather than blue.");
+ //
+ // Label3
+ //
this.Label3.Location = new System.Drawing.Point(6, 142);
this.Label3.Name = "Label3";
-
this.Label3.Size = new System.Drawing.Size(172, 79);
this.Label3.TabIndex = 59;
- this.Label3.Text = "Default Relative Level:\r\n(Ehancements can function up to five levels above or three below that of the character.)";
+ this.Label3.Text = "Default Relative Level:\r\n(Ehancements can function up to five levels above or thr" +
+ "ee below that of the character.)";
this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // optTO
+ //
this.optTO.Appearance = System.Windows.Forms.Appearance.Button;
this.optTO.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
-
this.optTO.Location = new System.Drawing.Point(24, 74);
this.optTO.Name = "optTO";
-
this.optTO.Size = new System.Drawing.Size(44, 44);
this.optTO.TabIndex = 48;
this.optTO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.optTO.CheckedChanged += new System.EventHandler(optTO_CheckedChanged);
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.optTO, "Training enhancements are the weakest kind.");
+ this.myTip.SetToolTip(this.optTO, "Training enhancements are the weakest kind.");
+ this.optTO.CheckedChanged += new System.EventHandler(this.optTO_CheckedChanged);
+ //
+ // optDO
+ //
this.optDO.Appearance = System.Windows.Forms.Appearance.Button;
this.optDO.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
-
this.optDO.Location = new System.Drawing.Point(72, 74);
this.optDO.Name = "optDO";
-
this.optDO.Size = new System.Drawing.Size(44, 44);
this.optDO.TabIndex = 49;
this.optDO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.optDO.CheckedChanged += new System.EventHandler(optDO_CheckedChanged);
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.optDO, "Dual Origin enhancements can be bought from level 12 onwards.");
+ this.myTip.SetToolTip(this.optDO, "Dual Origin enhancements can be bought from level 12 onwards.");
+ this.optDO.CheckedChanged += new System.EventHandler(this.optDO_CheckedChanged);
+ //
+ // optSO
+ //
this.optSO.Appearance = System.Windows.Forms.Appearance.Button;
this.optSO.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.optSO.Checked = true;
-
this.optSO.Location = new System.Drawing.Point(120, 74);
this.optSO.Name = "optSO";
-
this.optSO.Size = new System.Drawing.Size(44, 44);
this.optSO.TabIndex = 50;
this.optSO.TabStop = true;
this.optSO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.optSO.CheckedChanged += new System.EventHandler(optSO_CheckedChanged);
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.optSO, "Single Origin enhancements are the most powerful kind, and can be bought from level 22.");
- this.optEnh.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, (byte)0);
+ this.myTip.SetToolTip(this.optSO, "Single Origin enhancements are the most powerful kind, and can be bought from lev" +
+ "el 22.");
+ this.optSO.CheckedChanged += new System.EventHandler(this.optSO_CheckedChanged);
+ //
+ // optEnh
+ //
+ this.optEnh.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.optEnh.ForeColor = System.Drawing.SystemColors.ControlText;
-
this.optEnh.Location = new System.Drawing.Point(21, 121);
this.optEnh.Name = "optEnh";
-
this.optEnh.Size = new System.Drawing.Size(143, 16);
this.optEnh.TabIndex = 52;
this.optEnh.Text = "Single Origin";
this.optEnh.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // cbEnhLevel
+ //
this.cbEnhLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbEnhLevel.Items.AddRange(new object[8]
- {
- "None (Enh. has no effect)",
- "-3 Levels",
- "-2 Levels",
- "-1 Level",
- "Even Level",
- "+1 Level",
- "+2 Levels",
- "+3 Levels"
- });
-
+ this.cbEnhLevel.Items.AddRange(new object[] {
+ "None (Enh. has no effect)",
+ "-3 Levels",
+ "-2 Levels",
+ "-1 Level",
+ "Even Level",
+ "+1 Level",
+ "+2 Levels",
+ "+3 Levels"});
this.cbEnhLevel.Location = new System.Drawing.Point(9, 224);
this.cbEnhLevel.Name = "cbEnhLevel";
-
this.cbEnhLevel.Size = new System.Drawing.Size(167, 22);
this.cbEnhLevel.TabIndex = 53;
this.cbEnhLevel.Tag = "";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.cbEnhLevel, "This is the relative level of the enhancements in relation to your own. ");
-
+ this.myTip.SetToolTip(this.cbEnhLevel, "This is the relative level of the enhancements in relation to your own. ");
+ //
+ // Label4
+ //
this.Label4.Location = new System.Drawing.Point(6, 18);
this.Label4.Name = "Label4";
-
this.Label4.Size = new System.Drawing.Size(172, 50);
this.Label4.TabIndex = 58;
- this.Label4.Text = "Default Enhancement Type:\r\n(This does not affect Inventions or Special enhancements)";
+ this.Label4.Text = "Default Enhancement Type:\r\n(This does not affect Inventions or Special enhancemen" +
+ "ts)";
this.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.Label16);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.TeamSize);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.GroupBox2);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.chkUseArcanaTime);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.GroupBox15);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.GroupBox8);
- this.TabPage2.Controls.Add((System.Windows.Forms.Control)this.GroupBox6);
-
+ //
+ // TabPage2
+ //
+ this.TabPage2.Controls.Add(this.Label16);
+ this.TabPage2.Controls.Add(this.TeamSize);
+ this.TabPage2.Controls.Add(this.GroupBox2);
+ this.TabPage2.Controls.Add(this.chkUseArcanaTime);
+ this.TabPage2.Controls.Add(this.GroupBox15);
+ this.TabPage2.Controls.Add(this.GroupBox8);
+ this.TabPage2.Controls.Add(this.GroupBox6);
this.TabPage2.Location = new System.Drawing.Point(4, 23);
this.TabPage2.Name = "TabPage2";
-
- this.TabPage2.Size = new System.Drawing.Size(630, 325);
+ this.TabPage2.Size = new System.Drawing.Size(749, 325);
this.TabPage2.TabIndex = 1;
this.TabPage2.Text = "Effects & Maths";
this.TabPage2.UseVisualStyleBackColor = true;
- this.GroupBox2.Controls.Add((System.Windows.Forms.Control)this.clbSuppression);
- this.GroupBox2.Controls.Add((System.Windows.Forms.Control)this.Label8);
-
+ //
+ // Label16
+ //
+ this.Label16.Location = new System.Drawing.Point(587, 297);
+ this.Label16.Name = "Label16";
+ this.Label16.Size = new System.Drawing.Size(57, 18);
+ this.Label16.TabIndex = 66;
+ this.Label16.Text = "Team Size";
+ //
+ // TeamSize
+ //
+ this.TeamSize.Location = new System.Drawing.Point(650, 295);
+ this.TeamSize.Maximum = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 0});
+ this.TeamSize.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.TeamSize.Name = "TeamSize";
+ this.TeamSize.Size = new System.Drawing.Size(88, 20);
+ this.TeamSize.TabIndex = 70;
+ this.myTip.SetToolTip(this.TeamSize, "Set this to the number of players on your team.");
+ this.TeamSize.Value = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 0});
+ //
+ // GroupBox2
+ //
+ this.GroupBox2.Controls.Add(this.clbSuppression);
+ this.GroupBox2.Controls.Add(this.Label8);
this.GroupBox2.Location = new System.Drawing.Point(517, 4);
this.GroupBox2.Name = "GroupBox2";
-
- this.GroupBox2.Size = new System.Drawing.Size(107, 283);
+ this.GroupBox2.Size = new System.Drawing.Size(221, 283);
this.GroupBox2.TabIndex = 69;
this.GroupBox2.TabStop = false;
this.GroupBox2.Text = "Suppression";
+ //
+ // clbSuppression
+ //
this.clbSuppression.CheckOnClick = true;
this.clbSuppression.FormattingEnabled = true;
-
this.clbSuppression.Location = new System.Drawing.Point(9, 104);
this.clbSuppression.Name = "clbSuppression";
-
- this.clbSuppression.Size = new System.Drawing.Size(92, 169);
+ this.clbSuppression.Size = new System.Drawing.Size(206, 169);
this.clbSuppression.TabIndex = 9;
- this.clbSuppression.SelectedIndexChanged += new System.EventHandler(clbSuppression_SelectedIndexChanged);
-
-
- this.Label8.Location = new System.Drawing.Point(6, 17);
+ this.clbSuppression.SelectedIndexChanged += new System.EventHandler(this.clbSuppression_SelectedIndexChanged);
+ //
+ // Label8
+ //
+ this.Label8.Location = new System.Drawing.Point(6, 28);
this.Label8.Name = "Label8";
-
- this.Label8.Size = new System.Drawing.Size(95, 86);
+ this.Label8.Size = new System.Drawing.Size(209, 55);
this.Label8.TabIndex = 65;
- this.Label8.Text = "Some effects are suppressed on specific conditions. You can enable those conditions here.";
-
- this.chkUseArcanaTime.Location = new System.Drawing.Point(15, 294);
+ this.Label8.Text = "Some effects are suppressed on specific conditions. You can enable those conditio" +
+ "ns here.";
+ //
+ // chkUseArcanaTime
+ //
+ this.chkUseArcanaTime.Location = new System.Drawing.Point(8, 295);
this.chkUseArcanaTime.Name = "chkUseArcanaTime";
-
this.chkUseArcanaTime.Size = new System.Drawing.Size(204, 22);
this.chkUseArcanaTime.TabIndex = 66;
this.chkUseArcanaTime.Text = "Use ArcanaTime for Animation Times";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkUseArcanaTime, "Displays all cast times in ArcanaTime, the real time all animations take due to server clock ticks.");
- this.GroupBox15.Controls.Add((System.Windows.Forms.Control)this.Label20);
- this.GroupBox15.Controls.Add((System.Windows.Forms.Control)this.chkSetBonus);
- this.GroupBox15.Controls.Add((System.Windows.Forms.Control)this.chkIOEffects);
-
+ this.myTip.SetToolTip(this.chkUseArcanaTime, "Displays all cast times in ArcanaTime, the real time all animations take due to s" +
+ "erver clock ticks.");
+ //
+ // GroupBox15
+ //
+ this.GroupBox15.Controls.Add(this.Label20);
+ this.GroupBox15.Controls.Add(this.chkSetBonus);
+ this.GroupBox15.Controls.Add(this.chkIOEffects);
this.GroupBox15.Location = new System.Drawing.Point(316, 166);
this.GroupBox15.Name = "GroupBox15";
-
this.GroupBox15.Size = new System.Drawing.Size(195, 121);
this.GroupBox15.TabIndex = 68;
this.GroupBox15.TabStop = false;
this.GroupBox15.Text = "Invention Effects:";
-
+ //
+ // Label20
+ //
this.Label20.Location = new System.Drawing.Point(6, 17);
this.Label20.Name = "Label20";
-
this.Label20.Size = new System.Drawing.Size(179, 49);
this.Label20.TabIndex = 65;
- this.Label20.Text = "The effects of set bonusses and special IO enhancements can be included when stats are calculated.";
-
+ this.Label20.Text = "The effects of set bonusses and special IO enhancements can be included when stat" +
+ "s are calculated.";
+ //
+ // chkSetBonus
+ //
this.chkSetBonus.Location = new System.Drawing.Point(11, 93);
this.chkSetBonus.Name = "chkSetBonus";
-
this.chkSetBonus.Size = new System.Drawing.Size(169, 22);
this.chkSetBonus.TabIndex = 64;
this.chkSetBonus.Text = "Include Set Bonus effects\r\n";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkSetBonus, "Add set bonus effects to the totals view.");
-
+ this.myTip.SetToolTip(this.chkSetBonus, "Add set bonus effects to the totals view.");
+ //
+ // chkIOEffects
+ //
this.chkIOEffects.Location = new System.Drawing.Point(11, 69);
this.chkIOEffects.Name = "chkIOEffects";
-
this.chkIOEffects.Size = new System.Drawing.Size(169, 22);
this.chkIOEffects.TabIndex = 63;
this.chkIOEffects.Text = "Include Enhancement effects";
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.chkIOEffects, "Some enhancments have power effects, such as minor Psionic resistance. This effect can be added into the power.");
- this.GroupBox8.Controls.Add((System.Windows.Forms.Control)this.rbChanceIgnore);
- this.GroupBox8.Controls.Add((System.Windows.Forms.Control)this.rbChanceAverage);
- this.GroupBox8.Controls.Add((System.Windows.Forms.Control)this.rbChanceMax);
- this.GroupBox8.Controls.Add((System.Windows.Forms.Control)this.Label9);
-
+ this.myTip.SetToolTip(this.chkIOEffects, "Some enhancments have power effects, such as minor Psionic resistance. This effec" +
+ "t can be added into the power.");
+ //
+ // GroupBox8
+ //
+ this.GroupBox8.Controls.Add(this.rbChanceIgnore);
+ this.GroupBox8.Controls.Add(this.rbChanceAverage);
+ this.GroupBox8.Controls.Add(this.rbChanceMax);
+ this.GroupBox8.Controls.Add(this.Label9);
this.GroupBox8.Location = new System.Drawing.Point(4, 4);
this.GroupBox8.Name = "GroupBox8";
-
this.GroupBox8.Size = new System.Drawing.Size(507, 156);
this.GroupBox8.TabIndex = 3;
this.GroupBox8.TabStop = false;
this.GroupBox8.Text = "Chance of Damage:";
-
+ //
+ // rbChanceIgnore
+ //
this.rbChanceIgnore.Location = new System.Drawing.Point(221, 113);
this.rbChanceIgnore.Name = "rbChanceIgnore";
-
this.rbChanceIgnore.Size = new System.Drawing.Size(224, 20);
this.rbChanceIgnore.TabIndex = 8;
this.rbChanceIgnore.Text = "Ignore Extra Damage (Show minimum)";
+ //
+ // rbChanceAverage
+ //
this.rbChanceAverage.Checked = true;
-
this.rbChanceAverage.Location = new System.Drawing.Point(11, 97);
this.rbChanceAverage.Name = "rbChanceAverage";
-
this.rbChanceAverage.Size = new System.Drawing.Size(204, 20);
this.rbChanceAverage.TabIndex = 7;
this.rbChanceAverage.TabStop = true;
this.rbChanceAverage.Text = "Show Average (Damage x Chance)";
-
+ //
+ // rbChanceMax
+ //
this.rbChanceMax.Location = new System.Drawing.Point(221, 83);
this.rbChanceMax.Name = "rbChanceMax";
-
this.rbChanceMax.Size = new System.Drawing.Size(204, 20);
this.rbChanceMax.TabIndex = 6;
this.rbChanceMax.Text = "Show Max Possible Damage";
-
+ //
+ // Label9
+ //
this.Label9.Location = new System.Drawing.Point(8, 16);
this.Label9.Name = "Label9";
-
this.Label9.Size = new System.Drawing.Size(499, 56);
this.Label9.TabIndex = 4;
- this.GroupBox6.Controls.Add((System.Windows.Forms.Control)this.Label7);
- this.GroupBox6.Controls.Add((System.Windows.Forms.Control)this.rbPvP);
- this.GroupBox6.Controls.Add((System.Windows.Forms.Control)this.rbPvE);
-
+ //
+ // GroupBox6
+ //
+ this.GroupBox6.Controls.Add(this.Label7);
+ this.GroupBox6.Controls.Add(this.rbPvP);
+ this.GroupBox6.Controls.Add(this.rbPvE);
this.GroupBox6.Location = new System.Drawing.Point(8, 166);
this.GroupBox6.Name = "GroupBox6";
-
this.GroupBox6.Size = new System.Drawing.Size(301, 122);
this.GroupBox6.TabIndex = 1;
this.GroupBox6.TabStop = false;
this.GroupBox6.Text = "Targets:";
-
+ //
+ // Label7
+ //
this.Label7.Location = new System.Drawing.Point(8, 16);
this.Label7.Name = "Label7";
-
this.Label7.Size = new System.Drawing.Size(295, 54);
this.Label7.TabIndex = 2;
- this.Label7.Text = "Some powers have different effects when used against players (Mez effects are a good example of this). Where a power has different effects, which should be displayed?";
-
+ this.Label7.Text = "Some powers have different effects when used against players (Mez effects are a " +
+ "good example of this). Where a power has different effects, which should be disp" +
+ "layed?";
+ //
+ // rbPvP
+ //
this.rbPvP.Location = new System.Drawing.Point(11, 93);
this.rbPvP.Name = "rbPvP";
-
this.rbPvP.Size = new System.Drawing.Size(260, 20);
this.rbPvP.TabIndex = 1;
this.rbPvP.Text = "Show values for Players (PvP)";
+ //
+ // rbPvE
+ //
this.rbPvE.Checked = true;
-
this.rbPvE.Location = new System.Drawing.Point(11, 73);
this.rbPvE.Name = "rbPvE";
-
this.rbPvE.Size = new System.Drawing.Size(260, 20);
this.rbPvE.TabIndex = 0;
this.rbPvE.TabStop = true;
this.rbPvE.Text = "Show values for Critters (PvE)";
- this.TabPage6.Controls.Add((System.Windows.Forms.Control)this.Label6);
- this.TabPage6.Controls.Add((System.Windows.Forms.Control)this.GroupBox13);
- this.TabPage6.Controls.Add((System.Windows.Forms.Control)this.GroupBox10);
- this.TabPage6.Controls.Add((System.Windows.Forms.Control)this.GroupBox4);
-
+ //
+ // TabPage6
+ //
+ this.TabPage6.Controls.Add(this.Label6);
+ this.TabPage6.Controls.Add(this.GroupBox13);
+ this.TabPage6.Controls.Add(this.GroupBox10);
+ this.TabPage6.Controls.Add(this.GroupBox4);
this.TabPage6.Location = new System.Drawing.Point(4, 23);
this.TabPage6.Name = "TabPage6";
-
- this.TabPage6.Size = new System.Drawing.Size(630, 325);
+ this.TabPage6.Size = new System.Drawing.Size(749, 325);
this.TabPage6.TabIndex = 5;
this.TabPage6.Text = "Exemping & Base Values";
this.TabPage6.UseVisualStyleBackColor = true;
-
+ //
+ // Label6
+ //
this.Label6.Location = new System.Drawing.Point(401, 85);
this.Label6.Name = "Label6";
-
- this.Label6.Size = new System.Drawing.Size(169, 119);
+ this.Label6.Size = new System.Drawing.Size(332, 119);
this.Label6.TabIndex = 71;
this.Label6.Text = "Exemplar and level-accurate scaling features will be added in the future!";
this.Label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.GroupBox13.Controls.Add((System.Windows.Forms.Control)this.udForceLevel);
- this.GroupBox13.Controls.Add((System.Windows.Forms.Control)this.Label38);
+ //
+ // GroupBox13
+ //
+ this.GroupBox13.Controls.Add(this.udForceLevel);
+ this.GroupBox13.Controls.Add(this.Label38);
this.GroupBox13.Enabled = false;
-
this.GroupBox13.Location = new System.Drawing.Point(284, 4);
this.GroupBox13.Name = "GroupBox13";
-
this.GroupBox13.Size = new System.Drawing.Size(96, 184);
this.GroupBox13.TabIndex = 70;
this.GroupBox13.TabStop = false;
this.GroupBox13.Text = "Forced Level:";
-
+ //
+ // udForceLevel
+ //
this.udForceLevel.Location = new System.Drawing.Point(8, 124);
- this.udForceLevel.Maximum = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.udForceLevel.Minimum = new System.Decimal(new int[4] { 1, 0, 0, 0 });
+ this.udForceLevel.Maximum = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ this.udForceLevel.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
this.udForceLevel.Name = "udForceLevel";
-
this.udForceLevel.Size = new System.Drawing.Size(80, 20);
this.udForceLevel.TabIndex = 55;
- this.udForceLevel.Value = new System.Decimal(new int[4] { 50, 0, 0, 0 });
-
+ this.udForceLevel.Value = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ //
+ // Label38
+ //
this.Label38.Location = new System.Drawing.Point(4, 16);
this.Label38.Name = "Label38";
-
this.Label38.Size = new System.Drawing.Size(88, 100);
this.Label38.TabIndex = 1;
- this.Label38.Text = "Slots/Powers placed after this level won't be included in stats, and will be dimmed in the build view.";
- this.GroupBox10.Controls.Add((System.Windows.Forms.Control)this.btnBaseReset);
- this.GroupBox10.Controls.Add((System.Windows.Forms.Control)this.Label14);
- this.GroupBox10.Controls.Add((System.Windows.Forms.Control)this.udBaseToHit);
- this.GroupBox10.Controls.Add((System.Windows.Forms.Control)this.Label13);
-
+ this.Label38.Text = "Slots/Powers placed after this level won\'t be included in stats, and will be dimm" +
+ "ed in the build view.";
+ //
+ // GroupBox10
+ //
+ this.GroupBox10.Controls.Add(this.btnBaseReset);
+ this.GroupBox10.Controls.Add(this.Label14);
+ this.GroupBox10.Controls.Add(this.udBaseToHit);
+ this.GroupBox10.Controls.Add(this.Label13);
this.GroupBox10.Location = new System.Drawing.Point(4, 196);
this.GroupBox10.Name = "GroupBox10";
-
this.GroupBox10.Size = new System.Drawing.Size(376, 104);
this.GroupBox10.TabIndex = 69;
this.GroupBox10.TabStop = false;
this.GroupBox10.Text = "Base Values:";
-
+ //
+ // btnBaseReset
+ //
this.btnBaseReset.Location = new System.Drawing.Point(240, 76);
this.btnBaseReset.Name = "btnBaseReset";
-
this.btnBaseReset.Size = new System.Drawing.Size(120, 20);
this.btnBaseReset.TabIndex = 61;
this.btnBaseReset.Text = "Reset Values";
- this.btnBaseReset.Click += new System.EventHandler(btnBaseReset_Click);
-
+ this.btnBaseReset.Click += new System.EventHandler(this.btnBaseReset_Click);
+ //
+ // Label14
+ //
this.Label14.Location = new System.Drawing.Point(147, 39);
this.Label14.Name = "Label14";
-
this.Label14.Size = new System.Drawing.Size(112, 20);
this.Label14.TabIndex = 58;
this.Label14.Text = "Base ToHit:";
this.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // udBaseToHit
+ //
this.udBaseToHit.Location = new System.Drawing.Point(263, 39);
- this.udBaseToHit.Minimum = new System.Decimal(new int[4] { 1, 0, 0, 0 });
+ this.udBaseToHit.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
this.udBaseToHit.Name = "udBaseToHit";
-
this.udBaseToHit.Size = new System.Drawing.Size(88, 20);
this.udBaseToHit.TabIndex = 57;
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.udBaseToHit, "Chance of hitting a foe. Accuracy = (Base ToHit + Buffs) * Enhancements");
- this.udBaseToHit.Value = new System.Decimal(new int[4] { 75, 0, 0, 0 });
-
+ this.myTip.SetToolTip(this.udBaseToHit, "Chance of hitting a foe. Accuracy = (Base ToHit + Buffs) * Enhancements");
+ this.udBaseToHit.Value = new decimal(new int[] {
+ 75,
+ 0,
+ 0,
+ 0});
+ //
+ // Label13
+ //
this.Label13.Location = new System.Drawing.Point(8, 16);
this.Label13.Name = "Label13";
-
this.Label13.Size = new System.Drawing.Size(136, 84);
this.Label13.TabIndex = 0;
- this.Label13.Text = "These values are used as the base for stats calculation. They shouldn't ever need to be changed unless there's a change to the game.";
- this.GroupBox4.Controls.Add((System.Windows.Forms.Control)this.Label12);
- this.GroupBox4.Controls.Add((System.Windows.Forms.Control)this.udExLow);
- this.GroupBox4.Controls.Add((System.Windows.Forms.Control)this.Label11);
- this.GroupBox4.Controls.Add((System.Windows.Forms.Control)this.Label5);
- this.GroupBox4.Controls.Add((System.Windows.Forms.Control)this.udExHigh);
+ this.Label13.Text = "These values are used as the base for stats calculation. They shouldn\'t ever need" +
+ " to be changed unless there\'s a change to the game.";
+ //
+ // GroupBox4
+ //
+ this.GroupBox4.Controls.Add(this.Label12);
+ this.GroupBox4.Controls.Add(this.udExLow);
+ this.GroupBox4.Controls.Add(this.Label11);
+ this.GroupBox4.Controls.Add(this.Label5);
+ this.GroupBox4.Controls.Add(this.udExHigh);
this.GroupBox4.Enabled = false;
-
this.GroupBox4.Location = new System.Drawing.Point(4, 4);
this.GroupBox4.Name = "GroupBox4";
-
this.GroupBox4.Size = new System.Drawing.Size(276, 184);
this.GroupBox4.TabIndex = 68;
this.GroupBox4.TabStop = false;
this.GroupBox4.Text = "Exemplar Level:";
-
+ //
+ // Label12
+ //
this.Label12.Location = new System.Drawing.Point(8, 148);
this.Label12.Name = "Label12";
-
this.Label12.Size = new System.Drawing.Size(160, 20);
this.Label12.TabIndex = 58;
this.Label12.Text = "Exemplared (Lower) Level:";
this.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // udExLow
+ //
this.udExLow.Location = new System.Drawing.Point(172, 148);
- this.udExLow.Maximum = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.udExLow.Minimum = new System.Decimal(new int[4] { 1, 0, 0, 0 });
+ this.udExLow.Maximum = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ this.udExLow.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
this.udExLow.Name = "udExLow";
-
this.udExLow.Size = new System.Drawing.Size(88, 20);
this.udExLow.TabIndex = 57;
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.udExLow, "Set the target exemplar level. Your enhancements will be calculated as though you are exemplared to this level, and their effect will be reduced accordingly");
- this.udExLow.Value = new System.Decimal(new int[4] { 50, 0, 0, 0 });
-
+ this.myTip.SetToolTip(this.udExLow, "Set the target exemplar level. Your enhancements will be calculated as though you" +
+ " are exemplared to this level, and their effect will be reduced accordingly");
+ this.udExLow.Value = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ //
+ // Label11
+ //
this.Label11.Location = new System.Drawing.Point(8, 124);
this.Label11.Name = "Label11";
-
this.Label11.Size = new System.Drawing.Size(160, 20);
this.Label11.TabIndex = 56;
this.Label11.Text = "Starting (Higher) Level:";
this.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // Label5
+ //
this.Label5.Location = new System.Drawing.Point(8, 16);
this.Label5.Name = "Label5";
-
this.Label5.Size = new System.Drawing.Size(264, 96);
this.Label5.TabIndex = 55;
-
+ //
+ // udExHigh
+ //
this.udExHigh.Location = new System.Drawing.Point(172, 124);
- this.udExHigh.Maximum = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.udExHigh.Minimum = new System.Decimal(new int[4] { 1, 0, 0, 0 });
+ this.udExHigh.Maximum = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ this.udExHigh.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
this.udExHigh.Name = "udExHigh";
-
this.udExHigh.Size = new System.Drawing.Size(88, 20);
this.udExHigh.TabIndex = 54;
- this.udExHigh.Value = new System.Decimal(new int[4] { 50, 0, 0, 0 });
- this.TabPage4.Controls.Add((System.Windows.Forms.Control)this.GroupBox12);
- this.TabPage4.Controls.Add((System.Windows.Forms.Control)this.GroupBox11);
-
- this.TabPage4.Location = new System.Drawing.Point(4, 23);
- this.TabPage4.Name = "TabPage4";
-
- this.TabPage4.Size = new System.Drawing.Size(630, 325);
- this.TabPage4.TabIndex = 3;
- this.TabPage4.Text = "Forum Export Settings";
- this.TabPage4.UseVisualStyleBackColor = true;
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcReset);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcSet);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcNotes);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcDelete);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcAdd);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcName);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcWSTab);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcWSSpace);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcUnderlineOff);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcUnderlineOn);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label32);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcItalicOff);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcItalicOn);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label31);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcBoldOff);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcBoldOn);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label30);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcTextOff);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcTextOn);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label29);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label28);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label27);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcColorOff);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcColorOn);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label26);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.fcList);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label25);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label24);
- this.GroupBox12.Controls.Add((System.Windows.Forms.Control)this.Label33);
-
- this.GroupBox12.Location = new System.Drawing.Point(180, 8);
- this.GroupBox12.Name = "GroupBox12";
-
- this.GroupBox12.Size = new System.Drawing.Size(392, 308);
- this.GroupBox12.TabIndex = 1;
- this.GroupBox12.TabStop = false;
- this.GroupBox12.Text = "Formatting Codes:";
-
- this.fcReset.Location = new System.Drawing.Point(16, 280);
- this.fcReset.Name = "fcReset";
-
- this.fcReset.Size = new System.Drawing.Size(124, 24);
- this.fcReset.TabIndex = 18;
- this.fcReset.Text = "Reset To Defaults";
- this.fcReset.Click += new System.EventHandler(fcReset_Click);
-
- this.fcSet.Location = new System.Drawing.Point(8, 200);
- this.fcSet.Name = "fcSet";
-
- this.fcSet.Size = new System.Drawing.Size(136, 20);
- this.fcSet.TabIndex = 4;
- this.fcSet.Text = "Set New Name";
- this.fcSet.Click += new System.EventHandler(fcSet_Click);
-
- this.fcNotes.Location = new System.Drawing.Point(8, 228);
- this.fcNotes.Multiline = true;
- this.fcNotes.Name = "fcNotes";
-
- this.fcNotes.Size = new System.Drawing.Size(136, 48);
- this.fcNotes.TabIndex = 5;
- this.fcNotes.TextChanged += new System.EventHandler(fcNotes_TextChanged);
-
- this.fcDelete.Location = new System.Drawing.Point(8, 148);
- this.fcDelete.Name = "fcDelete";
-
- this.fcDelete.Size = new System.Drawing.Size(64, 20);
- this.fcDelete.TabIndex = 1;
- this.fcDelete.Text = "Delete";
- this.fcDelete.Click += new System.EventHandler(fcDelete_Click);
-
- this.fcAdd.Location = new System.Drawing.Point(80, 148);
- this.fcAdd.Name = "fcAdd";
-
- this.fcAdd.Size = new System.Drawing.Size(64, 20);
- this.fcAdd.TabIndex = 2;
- this.fcAdd.Text = "Add";
- this.fcAdd.Click += new System.EventHandler(fcAdd_Click);
-
- this.fcName.Location = new System.Drawing.Point(8, 176);
- this.fcName.Name = "fcName";
-
- this.fcName.Size = new System.Drawing.Size(136, 20);
- this.fcName.TabIndex = 3;
-
- this.fcWSTab.Location = new System.Drawing.Point(304, 196);
- this.fcWSTab.Name = "fcWSTab";
-
+ this.udExHigh.Value = new decimal(new int[] {
+ 50,
+ 0,
+ 0,
+ 0});
+ //
+ // tabPage7
+ //
+ this.tabPage7.Controls.Add(this.GroupBox20);
+ this.tabPage7.Controls.Add(this.richTextBox3);
+ this.tabPage7.Controls.Add(this.GroupBox19);
+ this.tabPage7.Controls.Add(this.GroupBox18);
+ this.tabPage7.Location = new System.Drawing.Point(4, 23);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(749, 325);
+ this.tabPage7.TabIndex = 7;
+ this.tabPage7.Text = "Discord Export Settings";
+ this.tabPage7.UseVisualStyleBackColor = true;
+ //
+ // GroupBox20
+ //
+ this.GroupBox20.Controls.Add(this.dcChannel);
+ this.GroupBox20.Controls.Add(this.Label17);
+ this.GroupBox20.Location = new System.Drawing.Point(8, 109);
+ this.GroupBox20.Name = "GroupBox20";
+ this.GroupBox20.Size = new System.Drawing.Size(256, 100);
+ this.GroupBox20.TabIndex = 3;
+ this.GroupBox20.TabStop = false;
+ this.GroupBox20.Text = "Discord Channel (case sensitive)";
+ //
+ // dcChannel
+ //
+ this.dcChannel.Location = new System.Drawing.Point(6, 54);
+ this.dcChannel.Name = "dcChannel";
+ this.dcChannel.Size = new System.Drawing.Size(244, 20);
+ this.dcChannel.TabIndex = 2;
+ this.dcChannel.TextChanged += new System.EventHandler(this.dcChannel_TextChanged);
+ //
+ // Label17
+ //
+ this.Label17.AutoSize = true;
+ this.Label17.Location = new System.Drawing.Point(27, 37);
+ this.Label17.Name = "Label17";
+ this.Label17.Size = new System.Drawing.Size(202, 14);
+ this.Label17.TabIndex = 3;
+ this.Label17.Text = "Channel name to Export to without the #:";
+ //
+ // richTextBox3
+ //
+ this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox3.Cursor = System.Windows.Forms.Cursors.Default;
+ this.richTextBox3.Location = new System.Drawing.Point(38, 247);
+ this.richTextBox3.Name = "richTextBox3";
+ this.richTextBox3.Size = new System.Drawing.Size(677, 39);
+ this.richTextBox3.TabIndex = 2;
+ this.richTextBox3.Text = "In order for the Discord export feature to work on your server you must first inv" +
+ "ite the Mids Reborn Discord bot.\n";
+ this.richTextBox3.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox3_LinkClicked);
+ //
+ // GroupBox19
+ //
+ this.GroupBox19.Controls.Add(this.richTextBox4);
+ this.GroupBox19.Controls.Add(this.Label18);
+ this.GroupBox19.Controls.Add(this.dcServerName);
+ this.GroupBox19.Controls.Add(this.dcRemove);
+ this.GroupBox19.Controls.Add(this.dcAdd);
+ this.GroupBox19.Controls.Add(this.richTextBox2);
+ this.GroupBox19.Controls.Add(this.dcExList);
+ this.GroupBox19.Location = new System.Drawing.Point(270, 6);
+ this.GroupBox19.Name = "GroupBox19";
+ this.GroupBox19.Size = new System.Drawing.Size(471, 203);
+ this.GroupBox19.TabIndex = 1;
+ this.GroupBox19.TabStop = false;
+ this.GroupBox19.Text = "Discord Server:";
+ //
+ // richTextBox4
+ //
+ this.richTextBox4.BackColor = System.Drawing.SystemColors.Window;
+ this.richTextBox4.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox4.Cursor = System.Windows.Forms.Cursors.Default;
+ this.richTextBox4.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.richTextBox4.Location = new System.Drawing.Point(289, 127);
+ this.richTextBox4.Name = "richTextBox4";
+ this.richTextBox4.ReadOnly = true;
+ this.richTextBox4.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
+ this.richTextBox4.Size = new System.Drawing.Size(176, 61);
+ this.richTextBox4.TabIndex = 6;
+ this.richTextBox4.Text = "Don\'t forget to select your server from the list after adding it!";
+ //
+ // Label18
+ //
+ this.Label18.AutoSize = true;
+ this.Label18.Location = new System.Drawing.Point(318, 60);
+ this.Label18.Name = "Label18";
+ this.Label18.Size = new System.Drawing.Size(111, 14);
+ this.Label18.TabIndex = 5;
+ this.Label18.Text = "Discord server name:";
+ //
+ // dcServerName
+ //
+ this.dcServerName.Location = new System.Drawing.Point(289, 77);
+ this.dcServerName.Name = "dcServerName";
+ this.dcServerName.Size = new System.Drawing.Size(176, 20);
+ this.dcServerName.TabIndex = 4;
+ //
+ // dcRemove
+ //
+ this.dcRemove.Location = new System.Drawing.Point(169, 136);
+ this.dcRemove.Name = "dcRemove";
+ this.dcRemove.Size = new System.Drawing.Size(75, 23);
+ this.dcRemove.TabIndex = 3;
+ this.dcRemove.Text = "Remove";
+ this.dcRemove.UseVisualStyleBackColor = true;
+ this.dcRemove.Click += new System.EventHandler(this.dcRemove_Click);
+ //
+ // dcAdd
+ //
+ this.dcAdd.Location = new System.Drawing.Point(169, 77);
+ this.dcAdd.Name = "dcAdd";
+ this.dcAdd.Size = new System.Drawing.Size(75, 23);
+ this.dcAdd.TabIndex = 2;
+ this.dcAdd.Text = "Add";
+ this.dcAdd.UseVisualStyleBackColor = true;
+ this.dcAdd.Click += new System.EventHandler(this.dcAdd_Click);
+ //
+ // richTextBox2
+ //
+ this.richTextBox2.BackColor = System.Drawing.SystemColors.Window;
+ this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox2.Cursor = System.Windows.Forms.Cursors.Default;
+ this.richTextBox2.Location = new System.Drawing.Point(76, 19);
+ this.richTextBox2.Name = "richTextBox2";
+ this.richTextBox2.ReadOnly = true;
+ this.richTextBox2.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.richTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
+ this.richTextBox2.Size = new System.Drawing.Size(342, 33);
+ this.richTextBox2.TabIndex = 1;
+ this.richTextBox2.Text = "Select a Discord server to export to below. You can add your own\nDiscord server n" +
+ "ame (case sensitive) to the list below.";
+ //
+ // dcExList
+ //
+ this.dcExList.FormattingEnabled = true;
+ this.dcExList.ItemHeight = 14;
+ this.dcExList.Items.AddRange(new object[] {
+ "Mids Reborn (Default)"});
+ this.dcExList.Location = new System.Drawing.Point(6, 58);
+ this.dcExList.Name = "dcExList";
+ this.dcExList.Size = new System.Drawing.Size(157, 130);
+ this.dcExList.TabIndex = 0;
+ this.dcExList.SelectedIndexChanged += new System.EventHandler(this.dcExList_SelectedIndexChanged);
+ //
+ // GroupBox18
+ //
+ this.GroupBox18.Controls.Add(this.richTextBox1);
+ this.GroupBox18.Controls.Add(this.dcNickName);
+ this.GroupBox18.Location = new System.Drawing.Point(8, 6);
+ this.GroupBox18.Name = "GroupBox18";
+ this.GroupBox18.Size = new System.Drawing.Size(256, 97);
+ this.GroupBox18.TabIndex = 0;
+ this.GroupBox18.TabStop = false;
+ this.GroupBox18.Text = "Discord Nickname (case sensitive):";
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.BackColor = System.Drawing.SystemColors.Window;
+ this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox1.Cursor = System.Windows.Forms.Cursors.Default;
+ this.richTextBox1.Location = new System.Drawing.Point(6, 54);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.ReadOnly = true;
+ this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
+ this.richTextBox1.Size = new System.Drawing.Size(244, 37);
+ this.richTextBox1.TabIndex = 2;
+ this.richTextBox1.Text = "This should be set to the same nickname you use in Discord without the #xxxx. *It" +
+ " will be checked*";
+ //
+ // dcNickName
+ //
+ this.dcNickName.Location = new System.Drawing.Point(6, 28);
+ this.dcNickName.Name = "dcNickName";
+ this.dcNickName.Size = new System.Drawing.Size(244, 20);
+ this.dcNickName.TabIndex = 0;
+ this.dcNickName.TextChanged += new System.EventHandler(this.dcNickName_TextChanged);
+ //
+ // TabPage4
+ //
+ this.TabPage4.Controls.Add(this.GroupBox12);
+ this.TabPage4.Controls.Add(this.GroupBox11);
+ this.TabPage4.Location = new System.Drawing.Point(4, 23);
+ this.TabPage4.Name = "TabPage4";
+ this.TabPage4.Size = new System.Drawing.Size(749, 325);
+ this.TabPage4.TabIndex = 3;
+ this.TabPage4.Text = "Forum Export Settings";
+ this.TabPage4.UseVisualStyleBackColor = true;
+ //
+ // GroupBox12
+ //
+ this.GroupBox12.Controls.Add(this.fcReset);
+ this.GroupBox12.Controls.Add(this.fcSet);
+ this.GroupBox12.Controls.Add(this.fcNotes);
+ this.GroupBox12.Controls.Add(this.fcDelete);
+ this.GroupBox12.Controls.Add(this.fcAdd);
+ this.GroupBox12.Controls.Add(this.fcName);
+ this.GroupBox12.Controls.Add(this.fcWSTab);
+ this.GroupBox12.Controls.Add(this.fcWSSpace);
+ this.GroupBox12.Controls.Add(this.fcUnderlineOff);
+ this.GroupBox12.Controls.Add(this.fcUnderlineOn);
+ this.GroupBox12.Controls.Add(this.Label32);
+ this.GroupBox12.Controls.Add(this.fcItalicOff);
+ this.GroupBox12.Controls.Add(this.fcItalicOn);
+ this.GroupBox12.Controls.Add(this.Label31);
+ this.GroupBox12.Controls.Add(this.fcBoldOff);
+ this.GroupBox12.Controls.Add(this.fcBoldOn);
+ this.GroupBox12.Controls.Add(this.Label30);
+ this.GroupBox12.Controls.Add(this.fcTextOff);
+ this.GroupBox12.Controls.Add(this.fcTextOn);
+ this.GroupBox12.Controls.Add(this.Label29);
+ this.GroupBox12.Controls.Add(this.Label28);
+ this.GroupBox12.Controls.Add(this.Label27);
+ this.GroupBox12.Controls.Add(this.fcColorOff);
+ this.GroupBox12.Controls.Add(this.fcColorOn);
+ this.GroupBox12.Controls.Add(this.Label26);
+ this.GroupBox12.Controls.Add(this.fcList);
+ this.GroupBox12.Controls.Add(this.Label25);
+ this.GroupBox12.Controls.Add(this.Label24);
+ this.GroupBox12.Controls.Add(this.Label33);
+ this.GroupBox12.Location = new System.Drawing.Point(180, 8);
+ this.GroupBox12.Name = "GroupBox12";
+ this.GroupBox12.Size = new System.Drawing.Size(561, 308);
+ this.GroupBox12.TabIndex = 1;
+ this.GroupBox12.TabStop = false;
+ this.GroupBox12.Text = "Formatting Codes:";
+ //
+ // fcReset
+ //
+ this.fcReset.Location = new System.Drawing.Point(16, 280);
+ this.fcReset.Name = "fcReset";
+ this.fcReset.Size = new System.Drawing.Size(124, 24);
+ this.fcReset.TabIndex = 18;
+ this.fcReset.Text = "Reset To Defaults";
+ this.fcReset.Click += new System.EventHandler(this.fcReset_Click);
+ //
+ // fcSet
+ //
+ this.fcSet.Location = new System.Drawing.Point(8, 200);
+ this.fcSet.Name = "fcSet";
+ this.fcSet.Size = new System.Drawing.Size(136, 20);
+ this.fcSet.TabIndex = 4;
+ this.fcSet.Text = "Set New Name";
+ this.fcSet.Click += new System.EventHandler(this.fcSet_Click);
+ //
+ // fcNotes
+ //
+ this.fcNotes.Location = new System.Drawing.Point(8, 228);
+ this.fcNotes.Multiline = true;
+ this.fcNotes.Name = "fcNotes";
+ this.fcNotes.Size = new System.Drawing.Size(136, 48);
+ this.fcNotes.TabIndex = 5;
+ this.fcNotes.TextChanged += new System.EventHandler(this.fcNotes_TextChanged);
+ //
+ // fcDelete
+ //
+ this.fcDelete.Location = new System.Drawing.Point(8, 148);
+ this.fcDelete.Name = "fcDelete";
+ this.fcDelete.Size = new System.Drawing.Size(64, 20);
+ this.fcDelete.TabIndex = 1;
+ this.fcDelete.Text = "Delete";
+ this.fcDelete.Click += new System.EventHandler(this.fcDelete_Click);
+ //
+ // fcAdd
+ //
+ this.fcAdd.Location = new System.Drawing.Point(80, 148);
+ this.fcAdd.Name = "fcAdd";
+ this.fcAdd.Size = new System.Drawing.Size(64, 20);
+ this.fcAdd.TabIndex = 2;
+ this.fcAdd.Text = "Add";
+ this.fcAdd.Click += new System.EventHandler(this.fcAdd_Click);
+ //
+ // fcName
+ //
+ this.fcName.Location = new System.Drawing.Point(8, 176);
+ this.fcName.Name = "fcName";
+ this.fcName.Size = new System.Drawing.Size(136, 20);
+ this.fcName.TabIndex = 3;
+ //
+ // fcWSTab
+ //
+ this.fcWSTab.Location = new System.Drawing.Point(304, 196);
+ this.fcWSTab.Name = "fcWSTab";
this.fcWSTab.Size = new System.Drawing.Size(80, 20);
this.fcWSTab.TabIndex = 17;
this.fcWSTab.Text = "Tab";
- this.fcWSTab.CheckedChanged += new System.EventHandler(fcWSSpace_CheckedChanged);
-
+ this.fcWSTab.CheckedChanged += new System.EventHandler(this.fcWSSpace_CheckedChanged);
+ //
+ // fcWSSpace
+ //
this.fcWSSpace.Location = new System.Drawing.Point(220, 196);
this.fcWSSpace.Name = "fcWSSpace";
-
this.fcWSSpace.Size = new System.Drawing.Size(80, 20);
this.fcWSSpace.TabIndex = 16;
this.fcWSSpace.Text = "Space";
- this.fcWSSpace.CheckedChanged += new System.EventHandler(fcWSSpace_CheckedChanged);
-
+ this.fcWSSpace.CheckedChanged += new System.EventHandler(this.fcWSSpace_CheckedChanged);
+ //
+ // fcUnderlineOff
+ //
this.fcUnderlineOff.Location = new System.Drawing.Point(324, 160);
this.fcUnderlineOff.Name = "fcUnderlineOff";
-
this.fcUnderlineOff.Size = new System.Drawing.Size(60, 20);
this.fcUnderlineOff.TabIndex = 15;
- this.fcUnderlineOff.TextChanged += new System.EventHandler(fcUnderlineOff_TextChanged);
-
+ this.fcUnderlineOff.TextChanged += new System.EventHandler(this.fcUnderlineOff_TextChanged);
+ //
+ // fcUnderlineOn
+ //
this.fcUnderlineOn.Location = new System.Drawing.Point(220, 160);
this.fcUnderlineOn.Name = "fcUnderlineOn";
-
this.fcUnderlineOn.Size = new System.Drawing.Size(100, 20);
this.fcUnderlineOn.TabIndex = 14;
- this.fcUnderlineOn.TextChanged += new System.EventHandler(fcUnderlineOn_TextChanged);
-
+ this.fcUnderlineOn.TextChanged += new System.EventHandler(this.fcUnderlineOn_TextChanged);
+ //
+ // Label32
+ //
this.Label32.Location = new System.Drawing.Point(148, 160);
this.Label32.Name = "Label32";
-
this.Label32.Size = new System.Drawing.Size(68, 20);
this.Label32.TabIndex = 30;
this.Label32.Text = "Underline:";
this.Label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // fcItalicOff
+ //
this.fcItalicOff.Location = new System.Drawing.Point(324, 136);
this.fcItalicOff.Name = "fcItalicOff";
-
this.fcItalicOff.Size = new System.Drawing.Size(60, 20);
this.fcItalicOff.TabIndex = 13;
- this.fcItalicOff.TextChanged += new System.EventHandler(fcItalicOff_TextChanged);
-
+ this.fcItalicOff.TextChanged += new System.EventHandler(this.fcItalicOff_TextChanged);
+ //
+ // fcItalicOn
+ //
this.fcItalicOn.Location = new System.Drawing.Point(220, 136);
this.fcItalicOn.Name = "fcItalicOn";
-
this.fcItalicOn.Size = new System.Drawing.Size(100, 20);
this.fcItalicOn.TabIndex = 12;
- this.fcItalicOn.TextChanged += new System.EventHandler(fcItalicOn_TextChanged);
-
+ this.fcItalicOn.TextChanged += new System.EventHandler(this.fcItalicOn_TextChanged);
+ //
+ // Label31
+ //
this.Label31.Location = new System.Drawing.Point(148, 136);
this.Label31.Name = "Label31";
-
this.Label31.Size = new System.Drawing.Size(68, 20);
this.Label31.TabIndex = 27;
this.Label31.Text = "Italic:";
this.Label31.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // fcBoldOff
+ //
this.fcBoldOff.Location = new System.Drawing.Point(324, 112);
this.fcBoldOff.Name = "fcBoldOff";
-
this.fcBoldOff.Size = new System.Drawing.Size(60, 20);
this.fcBoldOff.TabIndex = 11;
- this.fcBoldOff.TextChanged += new System.EventHandler(fcBoldOff_TextChanged);
-
+ this.fcBoldOff.TextChanged += new System.EventHandler(this.fcBoldOff_TextChanged);
+ //
+ // fcBoldOn
+ //
this.fcBoldOn.Location = new System.Drawing.Point(220, 112);
this.fcBoldOn.Name = "fcBoldOn";
-
this.fcBoldOn.Size = new System.Drawing.Size(100, 20);
this.fcBoldOn.TabIndex = 10;
- this.fcBoldOn.TextChanged += new System.EventHandler(fcBoldOn_TextChanged);
-
+ this.fcBoldOn.TextChanged += new System.EventHandler(this.fcBoldOn_TextChanged);
+ //
+ // Label30
+ //
this.Label30.Location = new System.Drawing.Point(148, 112);
this.Label30.Name = "Label30";
-
this.Label30.Size = new System.Drawing.Size(68, 20);
this.Label30.TabIndex = 24;
this.Label30.Text = "Bold:";
this.Label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // fcTextOff
+ //
this.fcTextOff.Location = new System.Drawing.Point(324, 88);
this.fcTextOff.Name = "fcTextOff";
-
this.fcTextOff.Size = new System.Drawing.Size(60, 20);
this.fcTextOff.TabIndex = 9;
- this.fcTextOff.TextChanged += new System.EventHandler(fcTextOff_TextChanged);
-
+ this.fcTextOff.TextChanged += new System.EventHandler(this.fcTextOff_TextChanged);
+ //
+ // fcTextOn
+ //
this.fcTextOn.Location = new System.Drawing.Point(220, 88);
this.fcTextOn.Name = "fcTextOn";
-
this.fcTextOn.Size = new System.Drawing.Size(100, 20);
this.fcTextOn.TabIndex = 8;
- this.fcTextOn.TextChanged += new System.EventHandler(fcTextOn_TextChanged);
-
+ this.fcTextOn.TextChanged += new System.EventHandler(this.fcTextOn_TextChanged);
+ //
+ // Label29
+ //
this.Label29.Location = new System.Drawing.Point(148, 88);
this.Label29.Name = "Label29";
-
this.Label29.Size = new System.Drawing.Size(68, 20);
this.Label29.TabIndex = 21;
this.Label29.Text = "Code Block:";
this.Label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
-
+ //
+ // Label28
+ //
this.Label28.Location = new System.Drawing.Point(324, 44);
this.Label28.Name = "Label28";
-
this.Label28.Size = new System.Drawing.Size(60, 16);
this.Label28.TabIndex = 20;
this.Label28.Text = "Off";
this.Label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
-
+ //
+ // Label27
+ //
this.Label27.Location = new System.Drawing.Point(220, 44);
this.Label27.Name = "Label27";
-
this.Label27.Size = new System.Drawing.Size(100, 16);
this.Label27.TabIndex = 19;
this.Label27.Text = "On";
this.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
-
+ //
+ // fcColorOff
+ //
this.fcColorOff.Location = new System.Drawing.Point(324, 64);
this.fcColorOff.Name = "fcColorOff";
-
this.fcColorOff.Size = new System.Drawing.Size(60, 20);
this.fcColorOff.TabIndex = 7;
- this.fcColorOff.TextChanged += new System.EventHandler(fcColorOff_TextChanged);
-
+ this.fcColorOff.TextChanged += new System.EventHandler(this.fcColorOff_TextChanged);
+ //
+ // fcColorOn
+ //
this.fcColorOn.Location = new System.Drawing.Point(220, 64);
this.fcColorOn.Name = "fcColorOn";
-
this.fcColorOn.Size = new System.Drawing.Size(100, 20);
this.fcColorOn.TabIndex = 6;
- this.fcColorOn.TextChanged += new System.EventHandler(fcColorOn_TextChanged);
-
+ this.fcColorOn.TextChanged += new System.EventHandler(this.fcColorOn_TextChanged);
+ //
+ // Label26
+ //
this.Label26.Location = new System.Drawing.Point(148, 64);
this.Label26.Name = "Label26";
-
this.Label26.Size = new System.Drawing.Size(68, 20);
this.Label26.TabIndex = 16;
this.Label26.Text = "Color:";
this.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
+ //
+ // fcList
+ //
this.fcList.ItemHeight = 14;
-
this.fcList.Location = new System.Drawing.Point(8, 40);
this.fcList.Name = "fcList";
-
this.fcList.Size = new System.Drawing.Size(136, 102);
this.fcList.TabIndex = 0;
- this.fcList.SelectedIndexChanged += new System.EventHandler(fcList_SelectedIndexChanged);
- this.fcList.KeyPress += new System.Windows.Forms.KeyPressEventHandler(fcList_KeyPress);
-
+ this.fcList.SelectedIndexChanged += new System.EventHandler(this.fcList_SelectedIndexChanged);
+ this.fcList.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.fcList_KeyPress);
+ //
+ // Label25
+ //
this.Label25.Location = new System.Drawing.Point(148, 224);
this.Label25.Name = "Label25";
-
- this.Label25.Size = new System.Drawing.Size(236, 76);
+ this.Label25.Size = new System.Drawing.Size(407, 76);
this.Label25.TabIndex = 14;
- this.Label25.Text = "When defining a formatting code which takes a value, such as a color tag, use %VAL% as a placeholder for the actual value, which will replace it when a build is exported.";
+ this.Label25.Text = "When defining a formatting code which takes a value, such as a color tag, use %VA" +
+ "L% as a placeholder for the actual value, which will replace it when a build is " +
+ "exported.";
this.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
-
+ //
+ // Label24
+ //
this.Label24.Location = new System.Drawing.Point(8, 16);
this.Label24.Name = "Label24";
-
this.Label24.Size = new System.Drawing.Size(344, 20);
this.Label24.TabIndex = 13;
this.Label24.Text = "You can set the formatting codes available for Forum Export here.";
-
+ //
+ // Label33
+ //
this.Label33.Location = new System.Drawing.Point(140, 196);
this.Label33.Name = "Label33";
-
this.Label33.Size = new System.Drawing.Size(76, 20);
this.Label33.TabIndex = 33;
this.Label33.Text = "White Space:";
this.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.GroupBox11.Controls.Add((System.Windows.Forms.Control)this.csReset);
- this.GroupBox11.Controls.Add((System.Windows.Forms.Control)this.csBtnEdit);
- this.GroupBox11.Controls.Add((System.Windows.Forms.Control)this.csDelete);
- this.GroupBox11.Controls.Add((System.Windows.Forms.Control)this.csAdd);
- this.GroupBox11.Controls.Add((System.Windows.Forms.Control)this.csList);
-
+ //
+ // GroupBox11
+ //
+ this.GroupBox11.Controls.Add(this.csReset);
+ this.GroupBox11.Controls.Add(this.csBtnEdit);
+ this.GroupBox11.Controls.Add(this.csDelete);
+ this.GroupBox11.Controls.Add(this.csAdd);
+ this.GroupBox11.Controls.Add(this.csList);
this.GroupBox11.Location = new System.Drawing.Point(12, 8);
this.GroupBox11.Name = "GroupBox11";
-
this.GroupBox11.Size = new System.Drawing.Size(160, 308);
this.GroupBox11.TabIndex = 0;
this.GroupBox11.TabStop = false;
this.GroupBox11.Text = "Color Schemes:";
-
+ //
+ // csReset
+ //
this.csReset.Location = new System.Drawing.Point(8, 280);
this.csReset.Name = "csReset";
-
this.csReset.Size = new System.Drawing.Size(144, 24);
this.csReset.TabIndex = 4;
this.csReset.Text = "Reset To Defaults";
- this.csReset.Click += new System.EventHandler(csReset_Click);
-
+ this.csReset.Click += new System.EventHandler(this.csReset_Click);
+ //
+ // csBtnEdit
+ //
this.csBtnEdit.Location = new System.Drawing.Point(8, 242);
this.csBtnEdit.Name = "csBtnEdit";
-
this.csBtnEdit.Size = new System.Drawing.Size(144, 32);
this.csBtnEdit.TabIndex = 3;
this.csBtnEdit.Text = "Edit...";
- this.csBtnEdit.Click += new System.EventHandler(csBtnEdit_Click);
-
+ this.csBtnEdit.Click += new System.EventHandler(this.csBtnEdit_Click);
+ //
+ // csDelete
+ //
this.csDelete.Location = new System.Drawing.Point(8, 216);
this.csDelete.Name = "csDelete";
-
this.csDelete.Size = new System.Drawing.Size(64, 20);
this.csDelete.TabIndex = 1;
this.csDelete.Text = "Delete";
- this.csDelete.Click += new System.EventHandler(csDelete_Click);
+ this.csDelete.Click += new System.EventHandler(this.csDelete_Click);
+ //
+ // csAdd
+ //
this.csAdd.Location = new System.Drawing.Point(88, 216);
this.csAdd.Name = "csAdd";
-
this.csAdd.Size = new System.Drawing.Size(64, 20);
this.csAdd.TabIndex = 2;
this.csAdd.Text = "Add";
- this.csAdd.Click += new System.EventHandler(csAdd_Click);
+ this.csAdd.Click += new System.EventHandler(this.csAdd_Click);
+ //
+ // csList
+ //
this.csList.ItemHeight = 14;
-
this.csList.Location = new System.Drawing.Point(8, 20);
this.csList.Name = "csList";
-
this.csList.Size = new System.Drawing.Size(144, 186);
this.csList.TabIndex = 0;
- this.csList.KeyPress += new System.Windows.Forms.KeyPressEventHandler(csList_KeyPress);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.btnSaveFolderReset);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.lblSaveFolder);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.btnSaveFolder);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.chkLoadLastFile);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.Label1);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.GroupBox16);
- this.TabPage5.Controls.Add((System.Windows.Forms.Control)this.GroupBox1);
-
+ this.csList.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.csList_KeyPress);
+ //
+ // TabPage5
+ //
+ this.TabPage5.Controls.Add(this.btnSaveFolderReset);
+ this.TabPage5.Controls.Add(this.lblSaveFolder);
+ this.TabPage5.Controls.Add(this.btnSaveFolder);
+ this.TabPage5.Controls.Add(this.chkLoadLastFile);
+ this.TabPage5.Controls.Add(this.Label1);
+ this.TabPage5.Controls.Add(this.GroupBox16);
+ this.TabPage5.Controls.Add(this.GroupBox1);
this.TabPage5.Location = new System.Drawing.Point(4, 23);
this.TabPage5.Name = "TabPage5";
-
- this.TabPage5.Size = new System.Drawing.Size(630, 325);
+ this.TabPage5.Size = new System.Drawing.Size(749, 325);
this.TabPage5.TabIndex = 4;
this.TabPage5.Text = "Updates & Paths";
this.TabPage5.UseVisualStyleBackColor = true;
-
- this.btnSaveFolderReset.Location = new System.Drawing.Point(459, 298);
+ //
+ // btnSaveFolderReset
+ //
+ this.btnSaveFolderReset.Location = new System.Drawing.Point(616, 298);
this.btnSaveFolderReset.Name = "btnSaveFolderReset";
-
this.btnSaveFolderReset.Size = new System.Drawing.Size(105, 22);
this.btnSaveFolderReset.TabIndex = 64;
this.btnSaveFolderReset.Text = "Reset to Default";
this.btnSaveFolderReset.UseVisualStyleBackColor = true;
- this.btnSaveFolderReset.Click += new System.EventHandler(btnSaveFolderReset_Click);
+ this.btnSaveFolderReset.Click += new System.EventHandler(this.btnSaveFolderReset_Click);
+ //
+ // lblSaveFolder
+ //
this.lblSaveFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
-
this.lblSaveFolder.Location = new System.Drawing.Point(17, 270);
this.lblSaveFolder.Name = "lblSaveFolder";
-
- this.lblSaveFolder.Size = new System.Drawing.Size(436, 22);
+ this.lblSaveFolder.Size = new System.Drawing.Size(593, 22);
this.lblSaveFolder.TabIndex = 63;
this.lblSaveFolder.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.lblSaveFolder.UseMnemonic = false;
-
- this.btnSaveFolder.Location = new System.Drawing.Point(459, 270);
+ //
+ // btnSaveFolder
+ //
+ this.btnSaveFolder.Location = new System.Drawing.Point(616, 270);
this.btnSaveFolder.Name = "btnSaveFolder";
-
this.btnSaveFolder.Size = new System.Drawing.Size(105, 22);
this.btnSaveFolder.TabIndex = 62;
this.btnSaveFolder.Text = "Browse...";
this.btnSaveFolder.UseVisualStyleBackColor = true;
- this.btnSaveFolder.Click += new System.EventHandler(btnSaveFolder_Click);
+ this.btnSaveFolder.Click += new System.EventHandler(this.btnSaveFolder_Click);
+ //
+ // chkLoadLastFile
+ //
this.chkLoadLastFile.Location = new System.Drawing.Point(17, 295);
this.chkLoadLastFile.Name = "chkLoadLastFile";
-
this.chkLoadLastFile.Size = new System.Drawing.Size(156, 16);
this.chkLoadLastFile.TabIndex = 61;
- this.chkLoadLastFile.Text = "Load last file at startup";
-
+ this.chkLoadLastFile.Text = "Load last build on startup";
+ //
+ // Label1
+ //
this.Label1.Location = new System.Drawing.Point(5, 246);
this.Label1.Name = "Label1";
-
- this.Label1.Size = new System.Drawing.Size(123, 24);
+ this.Label1.Size = new System.Drawing.Size(168, 24);
this.Label1.TabIndex = 8;
- this.Label1.Text = "Default Save Folder:";
+ this.Label1.Text = "Save Mids Builds To:";
this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.GroupBox16.Controls.Add((System.Windows.Forms.Control)this.Label19);
-
+ //
+ // GroupBox16
+ //
+ this.GroupBox16.Controls.Add(this.button1);
+ this.GroupBox16.Controls.Add(this.Label19);
this.GroupBox16.Location = new System.Drawing.Point(417, 3);
this.GroupBox16.Name = "GroupBox16";
-
- this.GroupBox16.Size = new System.Drawing.Size(153, 240);
+ this.GroupBox16.Size = new System.Drawing.Size(324, 169);
this.GroupBox16.TabIndex = 6;
this.GroupBox16.TabStop = false;
this.GroupBox16.Text = "Panic Button:";
this.GroupBox16.Visible = false;
-
+ //
+ // Label19
+ //
this.Label19.Location = new System.Drawing.Point(5, 21);
this.Label19.Name = "Label19";
-
- this.Label19.Size = new System.Drawing.Size(143, 117);
+ this.Label19.Size = new System.Drawing.Size(313, 117);
this.Label19.TabIndex = 7;
- this.Label19.Text = "If the database is damaged and not working properly, you can force the application to redownload the most recent version.";
+ this.Label19.Text = "If the database is damaged and not working properly, you can force the applicatio" +
+ "n to redownload the most recent version.";
this.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.GroupBox1.Controls.Add((System.Windows.Forms.Control)this.Label2);
- this.GroupBox1.Controls.Add((System.Windows.Forms.Control)this.txtUpdatePath);
- this.GroupBox1.Controls.Add((System.Windows.Forms.Control)this.Label37);
- this.GroupBox1.Controls.Add((System.Windows.Forms.Control)this.Label34);
- this.GroupBox1.Controls.Add((System.Windows.Forms.Control)this.chkUpdates);
-
+ //
+ // GroupBox1
+ //
+ this.GroupBox1.Controls.Add(this.Label37);
+ this.GroupBox1.Controls.Add(this.Label34);
+ this.GroupBox1.Controls.Add(this.chkUpdates);
this.GroupBox1.Location = new System.Drawing.Point(8, 3);
this.GroupBox1.Name = "GroupBox1";
-
- this.GroupBox1.Size = new System.Drawing.Size(403, 240);
+ this.GroupBox1.Size = new System.Drawing.Size(403, 169);
this.GroupBox1.TabIndex = 7;
this.GroupBox1.TabStop = false;
this.GroupBox1.Text = "Automatic Updates:";
-
- this.Label2.Location = new System.Drawing.Point(6, 168);
- this.Label2.Name = "Label2";
-
- this.Label2.Size = new System.Drawing.Size(197, 20);
- this.Label2.TabIndex = 10;
- this.Label2.Text = "Address of update information data:";
- this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
-
- this.txtUpdatePath.Location = new System.Drawing.Point(9, 191);
- this.txtUpdatePath.Name = "txtUpdatePath";
-
- this.txtUpdatePath.Size = new System.Drawing.Size(391, 20);
- this.txtUpdatePath.TabIndex = 9;
-
- this.Label37.Location = new System.Drawing.Point(6, 87);
+ //
+ // Label37
+ //
+ this.Label37.Location = new System.Drawing.Point(13, 108);
this.Label37.Name = "Label37";
-
this.Label37.Size = new System.Drawing.Size(384, 43);
this.Label37.TabIndex = 7;
- this.Label37.Text = "Please note that the availability of automatic updates may vary due to bandwidth use of the hosting site.";
+ this.Label37.Text = "Please note that the availability of automatic updates may vary due to bandwidth " +
+ "use of the hosting site.";
this.Label37.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
-
+ //
+ // Label34
+ //
this.Label34.Location = new System.Drawing.Point(6, 16);
this.Label34.Name = "Label34";
-
this.Label34.Size = new System.Drawing.Size(384, 41);
this.Label34.TabIndex = 5;
- this.Label34.Text = "The hero designer can automatically check for updates and download newer versions when it starts. This feature requires an internet connection.";
+ this.Label34.Text = "Mids Reborn can automatically check for updates and download newer versions when " +
+ "it starts. This feature requires an internet connection.";
this.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
-
- this.chkUpdates.Location = new System.Drawing.Point(9, 60);
+ //
+ // chkUpdates
+ //
+ this.chkUpdates.Location = new System.Drawing.Point(9, 68);
this.chkUpdates.Name = "chkUpdates";
-
this.chkUpdates.Size = new System.Drawing.Size(304, 24);
this.chkUpdates.TabIndex = 6;
this.chkUpdates.Text = "Check for updates on startup";
- this.TabPage1.Controls.Add((System.Windows.Forms.Control)this.Label15);
- this.TabPage1.Controls.Add((System.Windows.Forms.Control)this.Label10);
- this.TabPage1.Controls.Add((System.Windows.Forms.Control)this.cmbAction);
- this.TabPage1.Controls.Add((System.Windows.Forms.Control)this.GroupBox9);
- this.TabPage1.Controls.Add((System.Windows.Forms.Control)this.GroupBox7);
-
+ //
+ // TabPage1
+ //
+ this.TabPage1.Controls.Add(this.Label15);
+ this.TabPage1.Controls.Add(this.Label10);
+ this.TabPage1.Controls.Add(this.cmbAction);
+ this.TabPage1.Controls.Add(this.GroupBox9);
+ this.TabPage1.Controls.Add(this.GroupBox7);
this.TabPage1.Location = new System.Drawing.Point(4, 23);
this.TabPage1.Name = "TabPage1";
-
- this.TabPage1.Size = new System.Drawing.Size(630, 325);
+ this.TabPage1.Size = new System.Drawing.Size(749, 325);
this.TabPage1.TabIndex = 6;
this.TabPage1.Text = "Drag & Drop";
this.TabPage1.UseVisualStyleBackColor = true;
-
+ //
+ // Label15
+ //
this.Label15.Location = new System.Drawing.Point(14, 9);
this.Label15.Name = "Label15";
-
- this.Label15.Size = new System.Drawing.Size(602, 92);
+ this.Label15.Size = new System.Drawing.Size(721, 92);
this.Label15.TabIndex = 4;
+ //
+ // Label10
+ //
this.Label10.AutoSize = true;
- this.Label10.Font = new System.Drawing.Font("Arial", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, (byte)0);
-
+ this.Label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Label10.Location = new System.Drawing.Point(19, 268);
this.Label10.Name = "Label10";
-
this.Label10.Size = new System.Drawing.Size(285, 15);
this.Label10.TabIndex = 3;
this.Label10.Text = "Action to take whenever the above scenario occurs:";
+ //
+ // cmbAction
+ //
this.cmbAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAction.FormattingEnabled = true;
-
this.cmbAction.Location = new System.Drawing.Point(18, 293);
this.cmbAction.Name = "cmbAction";
-
this.cmbAction.Size = new System.Drawing.Size(356, 22);
this.cmbAction.TabIndex = 2;
- this.cmbAction.SelectedIndexChanged += new System.EventHandler(cmbAction_SelectedIndexChanged);
- this.GroupBox9.Controls.Add((System.Windows.Forms.Control)this.lblExample);
-
+ this.cmbAction.SelectedIndexChanged += new System.EventHandler(this.cmbAction_SelectedIndexChanged);
+ //
+ // GroupBox9
+ //
+ this.GroupBox9.Controls.Add(this.lblExample);
this.GroupBox9.Location = new System.Drawing.Point(403, 104);
this.GroupBox9.Name = "GroupBox9";
-
- this.GroupBox9.Size = new System.Drawing.Size(214, 161);
+ this.GroupBox9.Size = new System.Drawing.Size(338, 161);
this.GroupBox9.TabIndex = 1;
this.GroupBox9.TabStop = false;
this.GroupBox9.Text = "Description / Example(s)";
-
+ //
+ // lblExample
+ //
this.lblExample.Location = new System.Drawing.Point(13, 17);
this.lblExample.Name = "lblExample";
-
- this.lblExample.Size = new System.Drawing.Size(188, 130);
+ this.lblExample.Size = new System.Drawing.Size(319, 130);
this.lblExample.TabIndex = 0;
- this.GroupBox7.Controls.Add((System.Windows.Forms.Control)this.listScenarios);
-
+ //
+ // GroupBox7
+ //
+ this.GroupBox7.Controls.Add(this.listScenarios);
this.GroupBox7.Location = new System.Drawing.Point(8, 102);
this.GroupBox7.Name = "GroupBox7";
-
this.GroupBox7.Size = new System.Drawing.Size(380, 163);
this.GroupBox7.TabIndex = 0;
this.GroupBox7.TabStop = false;
this.GroupBox7.Text = "Scenario";
+ //
+ // listScenarios
+ //
this.listScenarios.FormattingEnabled = true;
this.listScenarios.ItemHeight = 14;
- this.listScenarios.Items.AddRange(new object[15]
- {
- "Power is moved or swapped too low",
- "Power is moved too high (some powers will no longer fit)",
- "Power is moved or swapped higher than slots' levels",
- "Power is moved or swapped too high to have # slots",
- "Power being replaced is swapped too low",
- "Power being replaced is swapped higher than slots' levels",
- "Power being replaced is swapped too high to have # slots",
- "Power being shifted down cannot shift to the necessary level",
- "Power being shifted up has slots from lower levels",
- "Power being shifted up has impossible # of slots",
- "There is a gap in a group of powers that are being shifted",
- "A power placed at its minimum level is being shifted up",
- "The power in the destination slot is prevented from being shifted up",
- "Slot being level-swapped is too low for the destination power",
- "Slot being level-swapped is too low for the source power"
- });
-
+ this.listScenarios.Items.AddRange(new object[] {
+ "Power is moved or swapped too low",
+ "Power is moved too high (some powers will no longer fit)",
+ "Power is moved or swapped higher than slots\' levels",
+ "Power is moved or swapped too high to have # slots",
+ "Power being replaced is swapped too low",
+ "Power being replaced is swapped higher than slots\' levels",
+ "Power being replaced is swapped too high to have # slots",
+ "Power being shifted down cannot shift to the necessary level",
+ "Power being shifted up has slots from lower levels",
+ "Power being shifted up has impossible # of slots",
+ "There is a gap in a group of powers that are being shifted",
+ "A power placed at its minimum level is being shifted up",
+ "The power in the destination slot is prevented from being shifted up",
+ "Slot being level-swapped is too low for the destination power",
+ "Slot being level-swapped is too low for the source power"});
this.listScenarios.Location = new System.Drawing.Point(13, 19);
this.listScenarios.Name = "listScenarios";
-
this.listScenarios.Size = new System.Drawing.Size(353, 116);
this.listScenarios.TabIndex = 0;
- this.listScenarios.SelectedIndexChanged += new System.EventHandler(listScenarios_SelectedIndexChanged);
-
- this.chkColourPrint.Location = new System.Drawing.Point(246, 354);
+ this.listScenarios.SelectedIndexChanged += new System.EventHandler(this.listScenarios_SelectedIndexChanged);
+ //
+ // chkColourPrint
+ //
+ this.chkColourPrint.Location = new System.Drawing.Point(246, 367);
this.chkColourPrint.Name = "chkColourPrint";
-
this.chkColourPrint.Size = new System.Drawing.Size(156, 16);
this.chkColourPrint.TabIndex = 2;
this.chkColourPrint.Text = "Print in color";
this.chkColourPrint.Visible = false;
+ //
+ // myTip
+ //
this.myTip.AutoPopDelay = 10000;
this.myTip.InitialDelay = 500;
this.myTip.ReshowDelay = 100;
+ //
+ // cPicker
+ //
this.cPicker.FullOpen = true;
-
- this.TeamSize.Location = new System.Drawing.Point(536, 296);
- this.TeamSize.Maximum = new System.Decimal(new int[4] { 8, 0, 0, 0 });
- this.TeamSize.Minimum = new System.Decimal(new int[4] { 1, 0, 0, 0 });
- this.TeamSize.Name = "TeamSize";
-
- this.TeamSize.Size = new System.Drawing.Size(88, 20);
- this.TeamSize.TabIndex = 70;
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.TeamSize, "Set this to the number of players on your team.");
- this.TeamSize.Value = new System.Decimal(new int[4] { 8, 0, 0, 0 });
-
- this.Label16.Location = new System.Drawing.Point(473, 297);
- this.Label16.Name = "Label16";
-
- this.Label16.Size = new System.Drawing.Size(57, 18);
- this.Label16.TabIndex = 66;
- this.Label16.Text = "Team Size";
-
- this.tabPage7.Controls.Add((System.Windows.Forms.Control)this.GroupBox20);
- this.tabPage7.Controls.Add((System.Windows.Forms.Control)this.richTextBox3);
- this.tabPage7.Controls.Add((System.Windows.Forms.Control)this.GroupBox19);
- this.tabPage7.Controls.Add((System.Windows.Forms.Control)this.GroupBox18);
- this.tabPage7.Location = new System.Drawing.Point(4, 23);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(630, 325);
- this.tabPage7.TabIndex = 7;
- this.tabPage7.Text = "Discord Export Settings";
- this.tabPage7.UseVisualStyleBackColor = true;
-
- this.GroupBox20.Controls.Add((System.Windows.Forms.Control)this.dcChannel);
- this.GroupBox20.Controls.Add((System.Windows.Forms.Control)this.Label17);
- this.GroupBox20.Location = new System.Drawing.Point(8, 109);
- this.GroupBox20.Name = "GroupBox20";
- this.GroupBox20.Size = new System.Drawing.Size(256, 100);
- this.GroupBox20.TabIndex = 3;
- this.GroupBox20.TabStop = false;
- this.GroupBox20.Text = "Discord Channel";
-
- this.dcChannel.Location = new System.Drawing.Point(6, 54);
- this.dcChannel.Name = "dcChannel";
- this.dcChannel.Size = new System.Drawing.Size(250, 20);
- this.dcChannel.TabIndex = 2;
- this.dcChannel.TextChanged += new EventHandler(dcChannel_TextChanged);
-
- this.Label17.AutoSize = true;
- this.Label17.Location = new System.Drawing.Point(55, 37);
- this.Label17.Name = "Label17";
- this.Label17.Size = new System.Drawing.Size(136, 14);
- this.Label17.TabIndex = 3;
- this.Label17.Text = "Channel name to Export to:";
-
- this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox3.Cursor = System.Windows.Forms.Cursors.Default;
- this.richTextBox3.Location = new System.Drawing.Point(232, 254);
- this.richTextBox3.Name = "richTextBox3";
- this.richTextBox3.Size = new System.Drawing.Size(201, 39);
- this.richTextBox3.TabIndex = 2;
- this.richTextBox3.Text = "More Discord settings may be available\nin the future.";
-
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.Label18);
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.dcServerName);
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.dcRemove);
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.dcAdd);
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.richTextBox2);
- this.GroupBox19.Controls.Add((System.Windows.Forms.Control)this.dcExList);
- this.GroupBox19.Location = new System.Drawing.Point(270, 6);
- this.GroupBox19.Name = "GroupBox19";
- this.GroupBox19.Size = new System.Drawing.Size(354, 203);
- this.GroupBox19.TabIndex = 1;
- this.GroupBox19.TabStop = false;
- this.GroupBox19.Text = "Discord Server:";
-
- this.Label18.AutoSize = true;
- this.Label18.Location = new System.Drawing.Point(206, 58);
- this.Label18.Name = "Label18";
- this.Label18.Size = new System.Drawing.Size(111, 14);
- this.Label18.TabIndex = 5;
- this.Label18.Text = "Discord server name:";
-
- this.dcServerName.Location = new System.Drawing.Point(172, 77);
- this.dcServerName.Name = "dcServerName";
- this.dcServerName.Size = new System.Drawing.Size(176, 20);
- this.dcServerName.TabIndex = 4;
-
- this.dcRemove.Location = new System.Drawing.Point(169, 165);
- this.dcRemove.Name = "dcRemove";
- this.dcRemove.Size = new System.Drawing.Size(75, 23);
- this.dcRemove.TabIndex = 3;
- this.dcRemove.Text = "Remove";
- this.dcRemove.UseVisualStyleBackColor = true;
- this.dcRemove.Click += new System.EventHandler(this.dcRemove_Click);
-
- this.dcAdd.Location = new System.Drawing.Point(169, 131);
- this.dcAdd.Name = "dcAdd";
- this.dcAdd.Size = new System.Drawing.Size(75, 23);
- this.dcAdd.TabIndex = 2;
- this.dcAdd.Text = "Add";
- this.dcAdd.UseVisualStyleBackColor = true;
- this.dcAdd.Click += new System.EventHandler(this.dcAdd_Click);
-
- this.richTextBox2.BackColor = System.Drawing.SystemColors.Window;
- this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox2.Cursor = System.Windows.Forms.Cursors.Default;
- this.richTextBox2.Location = new System.Drawing.Point(6, 19);
- this.richTextBox2.Name = "richTextBox2";
- this.richTextBox2.ReadOnly = true;
- this.richTextBox2.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.richTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
- this.richTextBox2.Size = new System.Drawing.Size(342, 33);
- this.richTextBox2.TabIndex = 1;
- this.richTextBox2.Text = "Select a Discord server to export to below. You can add your own\nDiscord server n" +
- "ame to the list below.";
-
- this.dcExList.FormattingEnabled = true;
- this.dcExList.ItemHeight = 14;
- this.dcExList.Items.AddRange(new object[] {
- "Mids Reborn (Default)",
- "CoH: Homecoming"});
- this.dcExList.Location = new System.Drawing.Point(6, 58);
- this.dcExList.Name = "dcExList";
- this.dcExList.Size = new System.Drawing.Size(157, 130);
- this.dcExList.TabIndex = 0;
- this.dcExList.SelectedIndexChanged += new System.EventHandler(this.dcExList_SelectedIndexChanged);
-
- this.GroupBox18.Controls.Add((System.Windows.Forms.Control)this.richTextBox1);
- this.GroupBox18.Controls.Add((System.Windows.Forms.Control)this.dcNickName);
- this.GroupBox18.Location = new System.Drawing.Point(8, 6);
- this.GroupBox18.Name = "GroupBox18";
- this.GroupBox18.Size = new System.Drawing.Size(256, 97);
- this.GroupBox18.TabIndex = 0;
- this.GroupBox18.TabStop = false;
- this.GroupBox18.Text = "Discord Nickname:";
-
- this.richTextBox1.BackColor = System.Drawing.SystemColors.Window;
- this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox1.Cursor = System.Windows.Forms.Cursors.Default;
- this.richTextBox1.Location = new System.Drawing.Point(31, 58);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.ReadOnly = true;
- this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
- this.richTextBox1.Size = new System.Drawing.Size(219, 33);
- this.richTextBox1.TabIndex = 2;
- this.richTextBox1.Text = "This should be set to the same nickname\nyou use in Discord. *It will be checked*";
-
- this.dcNickName.Location = new System.Drawing.Point(6, 32);
- this.dcNickName.Name = "dcNickName";
- this.dcNickName.Size = new System.Drawing.Size(244, 20);
- this.dcNickName.TabIndex = 0;
- this.dcNickName.TextChanged += new EventHandler(this.dcNickName_TextChanged);
-
- this.AcceptButton = (System.Windows.Forms.IButtonControl)this.btnOK;
+ //
+ // button1
+ //
+ this.button1.Enabled = false;
+ this.button1.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button1.Location = new System.Drawing.Point(124, 115);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(80, 23);
+ this.button1.TabIndex = 8;
+ this.button1.Text = "PANIC!";
+ this.button1.UseVisualStyleBackColor = true;
+ //
+ // frmCalcOpt
+ //
+ this.AcceptButton = this.btnOK;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.SystemColors.Control;
- this.CancelButton = (System.Windows.Forms.IButtonControl)this.btnCancel;
-
- this.ClientSize = new System.Drawing.Size(640, 392);
- this.Controls.Add((System.Windows.Forms.Control)this.chkColourPrint);
- this.Controls.Add((System.Windows.Forms.Control)this.TabControl1);
- this.Controls.Add((System.Windows.Forms.Control)this.btnCancel);
- this.Controls.Add((System.Windows.Forms.Control)this.btnOK);
- this.Font = new System.Drawing.Font("Arial", 11f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, (byte)0);
+ this.CancelButton = this.btnCancel;
+ this.ClientSize = new System.Drawing.Size(757, 392);
+ this.Controls.Add(this.chkColourPrint);
+ this.Controls.Add(this.TabControl1);
+ this.Controls.Add(this.btnCancel);
+ this.Controls.Add(this.btnOK);
+ this.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
this.ForeColor = System.Drawing.SystemColors.ControlText;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
+ this.Name = "frmCalcOpt";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Options";
@@ -1619,25 +1909,33 @@ private void InitializeComponent()
this.TabPage3.ResumeLayout(false);
this.GroupBox17.ResumeLayout(false);
this.GroupBox17.PerformLayout();
- this.udStatSize.EndInit();
- this.udRTFSize.EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udStatSize)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udRTFSize)).EndInit();
this.GroupBox5.ResumeLayout(false);
this.GroupBox14.ResumeLayout(false);
- this.udIOLevel.EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udIOLevel)).EndInit();
this.GroupBox3.ResumeLayout(false);
this.TabPage2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.TeamSize)).EndInit();
this.GroupBox2.ResumeLayout(false);
this.GroupBox15.ResumeLayout(false);
this.GroupBox8.ResumeLayout(false);
this.GroupBox6.ResumeLayout(false);
this.TabPage6.ResumeLayout(false);
this.GroupBox13.ResumeLayout(false);
- this.udForceLevel.EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udForceLevel)).EndInit();
this.GroupBox10.ResumeLayout(false);
- this.udBaseToHit.EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udBaseToHit)).EndInit();
this.GroupBox4.ResumeLayout(false);
- this.udExLow.EndInit();
- this.udExHigh.EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udExLow)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.udExHigh)).EndInit();
+ this.tabPage7.ResumeLayout(false);
+ this.GroupBox20.ResumeLayout(false);
+ this.GroupBox20.PerformLayout();
+ this.GroupBox19.ResumeLayout(false);
+ this.GroupBox19.PerformLayout();
+ this.GroupBox18.ResumeLayout(false);
+ this.GroupBox18.PerformLayout();
this.TabPage4.ResumeLayout(false);
this.GroupBox12.ResumeLayout(false);
this.GroupBox12.PerformLayout();
@@ -1645,20 +1943,12 @@ private void InitializeComponent()
this.TabPage5.ResumeLayout(false);
this.GroupBox16.ResumeLayout(false);
this.GroupBox1.ResumeLayout(false);
- this.GroupBox1.PerformLayout();
this.TabPage1.ResumeLayout(false);
this.TabPage1.PerformLayout();
this.GroupBox9.ResumeLayout(false);
this.GroupBox7.ResumeLayout(false);
- this.tabPage7.ResumeLayout(false);
- this.GroupBox20.ResumeLayout(false);
- this.GroupBox20.PerformLayout();
- this.GroupBox19.ResumeLayout(false);
- this.GroupBox19.PerformLayout();
- this.GroupBox18.ResumeLayout(false);
- this.GroupBox18.PerformLayout();
- this.TeamSize.EndInit();
this.ResumeLayout(false);
+
}
#endregion
@@ -1748,7 +2038,7 @@ private void InitializeComponent()
System.Windows.Forms.Label Label17;
System.Windows.Forms.Label Label18;
System.Windows.Forms.Label Label19;
- System.Windows.Forms.Label Label2;
+ //System.Windows.Forms.Label Label2;
System.Windows.Forms.Label Label20;
System.Windows.Forms.Label Label21;
System.Windows.Forms.Label Label22;
@@ -1806,7 +2096,7 @@ private void InitializeComponent()
System.Windows.Forms.TextBox dcChannel;
System.Windows.Forms.TextBox dcNickName;
System.Windows.Forms.TextBox dcServerName;
- System.Windows.Forms.TextBox txtUpdatePath;
+ //System.Windows.Forms.TextBox txtUpdatePath;
System.Windows.Forms.NumericUpDown udBaseToHit;
System.Windows.Forms.NumericUpDown udExHigh;
System.Windows.Forms.NumericUpDown udExLow;
@@ -1814,5 +2104,7 @@ private void InitializeComponent()
System.Windows.Forms.NumericUpDown udIOLevel;
System.Windows.Forms.NumericUpDown udRTFSize;
System.Windows.Forms.NumericUpDown udStatSize;
+ private System.Windows.Forms.RichTextBox richTextBox4;
+ private System.Windows.Forms.Button button1;
}
}
\ No newline at end of file
diff --git a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.cs b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.cs
index 0d6ff68b..86062130 100644
--- a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.cs
+++ b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.cs
@@ -34,22 +34,19 @@ public frmCalcOpt(ref frmMain iParent)
this.defActs = new short[20];
this.InitializeComponent();
this.Name = nameof(frmCalcOpt);
- System.ComponentModel.ComponentResourceManager componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(frmCalcOpt));
- this.optTO.Image = (System.Drawing.Image)componentResourceManager.GetObject("optTO.Image");
- this.optDO.Image = (System.Drawing.Image)componentResourceManager.GetObject("optDO.Image");
- this.optSO.Image = (System.Drawing.Image)componentResourceManager.GetObject("optSO.Image");
+ var componentResourceManager = new ComponentResourceManager(typeof(frmCalcOpt));
+ this.optTO.Image = (Image)componentResourceManager.GetObject("optTO.Image");
+ this.optDO.Image = (Image)componentResourceManager.GetObject("optDO.Image");
+ this.optSO.Image = (Image)componentResourceManager.GetObject("optSO.Image");
this.Label9.Text = componentResourceManager.GetString("Label9.Text");
this.Label5.Text = componentResourceManager.GetString("Label5.Text");
- this.myTip.SetToolTip((System.Windows.Forms.Control)this.udExHigh, componentResourceManager.GetString("udExHigh.ToolTip"));
+ this.myTip.SetToolTip(udExHigh, componentResourceManager.GetString("udExHigh.ToolTip"));
this.Label15.Text = componentResourceManager.GetString("Label15.Text");
- this.Icon = (System.Drawing.Icon)componentResourceManager.GetObject("$this.Icon");
+ this.Icon = (Icon)componentResourceManager.GetObject("reborn_wicon");
this.myParent = iParent;
}
- void btnBaseReset_Click(object sender, EventArgs e)
- {
- this.udBaseToHit.Value = new Decimal(75);
- }
+ void btnBaseReset_Click(object sender, EventArgs e) => this.udBaseToHit.Value = new Decimal(75);
void btnCancel_Click(object sender, EventArgs e)
{
@@ -57,11 +54,7 @@ void btnCancel_Click(object sender, EventArgs e)
this.Hide();
}
- void btnFontColour_Click(object sender, EventArgs e)
-
- {
- int num = (int)new frmColourSettings().ShowDialog();
- }
+ void btnFontColour_Click(object sender, EventArgs e) => new frmColourSettings().ShowDialog();
void btnIOReset_Click(object sender, EventArgs e)
{
@@ -95,10 +88,7 @@ void btnSaveFolderReset_Click(object sender, EventArgs e)
this.lblSaveFolder.Text = MidsContext.Config.GetSaveFolder();
}
- void btnUpdatePathReset_Click(object sender, EventArgs e)
- {
- this.txtUpdatePath.Text = "http://repo.cohtitan.com/mids_updates/";
- }
+ //void btnUpdatePathReset_Click(object sender, EventArgs e) => this.txtUpdatePath.Text = "http://repo.cohtitan.com/mids_updates/";
void clbSuppression_SelectedIndexChanged(object sender, EventArgs e)
{
@@ -109,10 +99,7 @@ void clbSuppression_SelectedIndexChanged(object sender, EventArgs e)
MidsContext.Config.Suppression += values[this.clbSuppression.CheckedIndices[index]];
}
- void cmbAction_SelectedIndexChanged(object sender, EventArgs e)
- {
- this.defActs[this.listScenarios.SelectedIndex] = (short)this.cmbAction.SelectedIndex;
- }
+ void cmbAction_SelectedIndexChanged(object sender, EventArgs e) => this.defActs[this.listScenarios.SelectedIndex] = (short)this.cmbAction.SelectedIndex;
void csAdd_Click(object sender, EventArgs e)
{
@@ -206,7 +193,7 @@ void fcColorOff_TextChanged(object sender, EventArgs e)
void fcColorOn_TextChanged(object sender, EventArgs e)
{
- if (this.fcList.SelectedIndex < 0 | this.fcNoUpdate)
+ if (this.fcList.SelectedIndex < 0 || this.fcNoUpdate)
return;
MidsContext.Config.Export.FormatCode[this.fcList.SelectedIndex].ColourOn = this.fcColorOn.Text;
}
@@ -269,7 +256,7 @@ void fcItalicOff_TextChanged(object sender, EventArgs e)
void fcItalicOn_TextChanged(object sender, EventArgs e)
{
- if (this.fcList.SelectedIndex < 0 | this.fcNoUpdate)
+ if (this.fcList.SelectedIndex < 0 || this.fcNoUpdate)
return;
MidsContext.Config.Export.FormatCode[this.fcList.SelectedIndex].ItalicOn = this.fcItalicOn.Text;
}
@@ -277,9 +264,7 @@ void fcItalicOn_TextChanged(object sender, EventArgs e)
void fcList_KeyPress(object sender, KeyPressEventArgs e)
{
if (Conversions.ToString(e.KeyChar) == "[")
- {
this.forumCodeUp();
- }
else
{
if (!(Conversions.ToString(e.KeyChar) == "]"))
@@ -288,13 +273,16 @@ void fcList_KeyPress(object sender, KeyPressEventArgs e)
}
}
- void fcList_SelectedIndexChanged(object sender, EventArgs e)
+ void fcList_SelectedIndexChanged(object sender, EventArgs e) => this.fcDisplay();
+
+ void dcExList_SelectedIndexChanged(object sender, EventArgs e)
{
- this.fcDisplay();
+ if (dcExList.SelectedIndex != -1 && !string.IsNullOrWhiteSpace(dcExList.SelectedItem.ToString()))
+ {
+ MidsContext.Config.DSelServer = dcExList.SelectedItem.ToString();
+ }
}
- void dcExList_SelectedIndexChanged(object sender, EventArgs e) => MidsContext.Config.DSelServer = dcExList.SelectedItem.ToString();
-
void dcAdd_Click(object sender, EventArgs e)
{
if (!string.IsNullOrWhiteSpace(dcServerName.Text))
@@ -311,7 +299,12 @@ void dcRemove_Click(object sender, EventArgs e)
{
MidsContext.Config.DSelServer = "";
}
+ if (MidsContext.Config.DServers.Contains(dcExList.SelectedItem.ToString()))
+ {
+ MidsContext.Config.DServers.Remove(dcExList.SelectedItem.ToString());
+ }
dcExList.Items.Remove(dcExList.SelectedItem);
+
}
void dcNickName_TextChanged(object sender, EventArgs e)
@@ -330,6 +323,11 @@ void dcChannel_TextChanged(object sender, EventArgs e)
}
}
+ void richTextBox3_LinkClicked(object sender, LinkClickedEventArgs e)
+ {
+ Process.Start(e.LinkText);
+ }
+
void fcNotes_TextChanged(object sender, EventArgs e)
{
if (this.fcList.SelectedIndex < 0 | this.fcNoUpdate)
@@ -541,38 +539,39 @@ void SetControls()
this.rbGraphTwoLine.Checked = config.DataGraphType == Enums.eDDGraph.Both;
this.rbGraphStacked.Checked = config.DataGraphType == Enums.eDDGraph.Stacked;
this.rbGraphSimple.Checked = config.DataGraphType == Enums.eDDGraph.Simple;
- this.rbPvE.Checked = config.Inc.PvE;
- this.rbPvP.Checked = !config.Inc.PvE;
+ this.rbPvE.Checked = !config.Inc.DisablePvE;
+ this.rbPvP.Checked = config.Inc.DisablePvE;
this.rbChanceAverage.Checked = config.DamageMath.Calculate == ConfigData.EDamageMath.Average;
this.rbChanceMax.Checked = config.DamageMath.Calculate == ConfigData.EDamageMath.Max;
this.rbChanceIgnore.Checked = config.DamageMath.Calculate == ConfigData.EDamageMath.Minimum;
this.udBaseToHit.Value = new Decimal(config.BaseAcc * 100f);
- this.chkVillainColour.Checked = config.ShowVillainColours;
+ this.chkVillainColour.Checked = !config.DisableVillainColours;
this.chkUpdates.Checked = config.CheckForUpdates;
this.udIOLevel.Value = Decimal.Compare(new Decimal(config.I9.DefaultIOLevel + 1), this.udIOLevel.Maximum) <= 0 ? new Decimal(config.I9.DefaultIOLevel + 1) : this.udIOLevel.Maximum;
- this.chkIOLevel.Checked = config.I9.DisplayIOLevels;
- this.chkIOEffects.Checked = config.I9.CalculateEnahncementFX;
- this.chkSetBonus.Checked = config.I9.CalculateSetBonusFX;
+ this.chkIOLevel.Checked = !config.I9.HideIOLevels;
+ this.chkIOEffects.Checked = !config.I9.IgnoreEnhFX;
+ this.chkSetBonus.Checked = !config.I9.IgnoreSetBonusFX;
this.chkRelSignOnly.Checked = config.ShowRelSymbols;
- this.chkIOPrintLevels.Checked = config.I9.PrintIOLevels;
+ this.chkIOPrintLevels.Checked = !config.I9.DisablePrintIOLevels;
this.chkColourPrint.Checked = config.PrintInColour;
this.udRTFSize.Value = new decimal(config.RtFont.RTFBase / 2.0);
this.udStatSize.Value = new decimal(config.RtFont.PairedBase);
this.chkTextBold.Checked = config.RtFont.RTFBold;
this.chkStatBold.Checked = config.RtFont.PairedBold;
- this.chkLoadLastFile.Checked = config.LoadLastFileOnStart;
+ this.chkLoadLastFile.Checked = !config.DisableLoadLastFileOnStart;
this.dcNickName.Text = config.DNickName;
this.dcChannel.Text = config.DChannel;
- foreach(var item in config.DServers.Append(config.DSelServer).Where(item => !string.IsNullOrWhiteSpace(item) && !this.dcExList.Items.Contains(config.DSelServer)).Distinct())
+ foreach (var item in config.DServers.Append(config.DSelServer).Where(item => !string.IsNullOrWhiteSpace(item) && !this.dcExList.Items.Contains(config.DSelServer)).Distinct())
this.dcExList.Items.Add(item);
- if(!string.IsNullOrWhiteSpace(config.DSelServer))
- this.dcExList.SelectedItem = config.DSelServer;
+ if (!string.IsNullOrWhiteSpace(config.DSelServer))
+ this.dcExList.SelectedItem = config.DSelServer;
+ this.richTextBox3.AppendText("You can invite the bot by clicking -> " + Clshook.ShrinkTheDatalink("https://discordapp.com/api/oauth2/authorize?client_id=593333282234695701&permissions=18432&redirect_uri=https%3A%2F%2Fmidsreborn.com&scope=bot"));
this.lblSaveFolder.Text = config.GetSaveFolder();
- this.txtUpdatePath.Text = config.UpdatePath;
- this.chkColorInherent.Checked = config.DesaturateInherent;
- this.chkMiddle.Checked = config.ReapeatOnMiddleClick;
+ //this.txtUpdatePath.Text = config.UpdatePath;
+ this.chkColorInherent.Checked = !config.DisableDesaturateInherent;
+ this.chkMiddle.Checked = !config.DisableRepeatOnMiddleClick;
this.chkNoTips.Checked = config.NoToolTips;
- this.chkShowAlphaPopup.Checked = config.ShowAlphaPopup;
+ this.chkShowAlphaPopup.Checked = !config.DisableAlphaPopup;
this.chkUseArcanaTime.Checked = config.UseArcanaTime;
this.TeamSize.Value = new decimal(config.TeamSize);
int index = 0;
@@ -586,119 +585,119 @@ void SetControls()
void setupScenarios()
{
- int index1 = 0;
- this.scenarioExample[index1] = "Swap a travel power with a power taken at level 2.";
- this.scenActs[index1] = new string[4];
- this.scenActs[index1][0] = "Show dialog";
- this.scenActs[index1][1] = "Cancel";
- this.scenActs[index1][2] = "Move/swap power to its lowest possible level";
- this.scenActs[index1][3] = "Allow power to be moved anyway (mark as invalid)";
- int index2 = index1 + 1;
- this.scenarioExample[index2] = "Move a Primary power from level 35 into the level 44 slot of a character with 4 epic powers.";
- this.scenActs[index2] = new string[3];
- this.scenActs[index2][0] = "Show dialog";
- this.scenActs[index2][1] = "Cancel";
- this.scenActs[index2][2] = "Move to the last power that isn't at its min level";
- int index3 = index2 + 1;
- this.scenarioExample[index3] = "Power taken at level 2 with two level 3 slots is swapped with level 4, where there is a power with one slot.";
- this.scenActs[index3] = new string[7];
- this.scenActs[index3][0] = "Show dialog";
- this.scenActs[index3][1] = "Cancel";
- this.scenActs[index3][2] = "Remove slots";
- this.scenActs[index3][3] = "Mark invalid slots";
- this.scenActs[index3][4] = "Swap slot levels if valid; remove invalid ones";
- this.scenActs[index3][5] = "Swap slot levels if valid; mark invalid ones";
- this.scenActs[index3][6] = "Rearrange all slots in build";
- int index4 = index3 + 1;
- this.scenarioExample[index4] = "A 6-slotted power taken at level 41 is moved to level 49.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
- this.scenActs[index4] = new string[4];
- this.scenActs[index4][0] = "Show dialog";
- this.scenActs[index4][1] = "Cancel";
- this.scenActs[index4][2] = "Remove impossible slots";
- this.scenActs[index4][3] = "Allow anyway (Mark slots as invalid)";
- int index5 = index4 + 1;
- this.scenarioExample[index5] = "Power taken at level 4 is swapped with power taken at level 14, which is a travel power.";
- this.scenActs[index5] = new string[4];
- this.scenActs[index5][0] = "Show dialog";
- this.scenActs[index5][1] = "Cancel";
- this.scenActs[index5][2] = "Overwrite rather than swap";
- this.scenActs[index5][3] = "Allow power to be swapped anyway (mark as invalid)";
- int index6 = index5 + 1;
- this.scenarioExample[index6] = "Power taken at level 8 is swapped with power taken at level 2, when the level 2 power has level 3 slots.";
- this.scenActs[index6] = new string[7];
- this.scenActs[index6][0] = "Show dialog";
- this.scenActs[index6][1] = "Cancel";
- this.scenActs[index6][2] = "Remove slots";
- this.scenActs[index6][3] = "Mark invalid slots";
- this.scenActs[index6][4] = "Swap slot levels if valid; remove invalid ones";
- this.scenActs[index6][5] = "Swap slot levels if valid; mark invalid ones";
- this.scenActs[index6][6] = "Rearrange all slots in build";
- int index7 = index6 + 1;
- this.scenarioExample[index7] = "Pool power taken at level 49 is swapped with a 6-slotted power at level 41.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
- this.scenActs[index7] = new string[4];
- this.scenActs[index7][0] = "Show dialog";
- this.scenActs[index7][1] = "Cancel";
- this.scenActs[index7][2] = "Remove impossible slots";
- this.scenActs[index7][3] = "Allow anyway (Mark slots as invalid)";
- int index8 = index7 + 1;
- this.scenarioExample[index8] = "Power taken at level 4 is moved to level 8 when the power taken at level 6 is a pool power.\r\n(Note: If the power in the destination slot fails to shift, the 'Moved or swapped too low' scenario applies.)";
- this.scenActs[index8] = new string[5];
- this.scenActs[index8][0] = "Show dialog";
- this.scenActs[index8][1] = "Cancel";
- this.scenActs[index8][2] = "Shift other powers around it";
- this.scenActs[index8][3] = "Overwrite it; leave previous power slot empty";
- this.scenActs[index8][4] = "Allow anyway (mark as invalid)";
- int index9 = index8 + 1;
- this.scenarioExample[index9] = "Power taken at level 8 has level 9 slots, and a power is being moved from level 12 to level 6, so the power at 8 is shifting up to 10.";
- this.scenActs[index9] = new string[7];
- this.scenActs[index9][0] = "Show dialog";
- this.scenActs[index9][1] = "Cancel";
- this.scenActs[index9][2] = "Remove slots";
- this.scenActs[index9][3] = "Mark invalid slots";
- this.scenActs[index9][4] = "Swap slot levels if valid; remove invalid ones";
- this.scenActs[index9][5] = "Swap slot levels if valid; mark invalid ones";
- this.scenActs[index9][6] = "Rearrange all slots in build";
- int index10 = index9 + 1;
- this.scenarioExample[index10] = "Power taken at level 47 has 6 slots, and a power is being moved from level 49 to level 44, so the power at 47 is shifting to 49.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
- this.scenActs[index10] = new string[4];
- this.scenActs[index10][0] = "Show dialog";
- this.scenActs[index10][1] = "Cancel";
- this.scenActs[index10][2] = "Remove impossible slots";
- this.scenActs[index10][3] = "Allow anyway (Mark slots as invalid)";
- int index11 = index10 + 1;
- this.scenarioExample[index11] = "Power taken at level 8 is being moved to 14, and the level 10 slot is blank.";
- this.scenActs[index11] = new string[4];
- this.scenActs[index11][0] = "Show dialog";
- this.scenActs[index11][1] = "Cancel";
- this.scenActs[index11][2] = "Fill empty slot; don't move powers unnecessarily";
- this.scenActs[index11][3] = "Shift empty slot as if it were a power";
- int index12 = index11 + 1;
- this.scenarioExample[index12] = "Power placed at its minimum level is being shifted up.\r\n(Note: If and only the power in the destination slot fails to shift due to this setting, the next scenario applies.)";
- this.scenActs[index12] = new string[4];
- this.scenActs[index12][0] = "Show dialog";
- this.scenActs[index12][1] = "Cancel";
- this.scenActs[index12][2] = "Shift it along with the other powers";
- this.scenActs[index12][3] = "Shift other powers around it";
- int index13 = index12 + 1;
- this.scenarioExample[index13] = "You chose to shift other powers around ones that are at their minimum levels, but you are moving a power in place of one that is at its minimum level. (This will never occur if you chose 'Cancel' or 'Shift it along with the other powers' from the previous scenario.)";
- this.scenActs[index13] = new string[5];
- this.scenActs[index13][0] = "Show dialog";
- this.scenActs[index13][1] = "Cancel";
- this.scenActs[index13][2] = "Unlock and shift all level-locked powers";
- this.scenActs[index13][3] = "Shift destination power to the first valid and empty slot";
- this.scenActs[index13][4] = "Swap instead of move";
- int index14 = index13 + 1;
- this.scenarioExample[index14] = "Click and drag a level 21 slot from a level 20 power to a level 44 power.";
- this.scenActs[index14] = new string[3];
- this.scenActs[index14][0] = "Show dialog";
- this.scenActs[index14][1] = "Cancel";
- this.scenActs[index14][2] = "Allow swap anyway (mark as invalid)";
- int index15 = index14 + 1;
- this.scenarioExample[index15] = "Click and drag a slot from a level 44 power to a level 20 power in place of a level 21 slot.";
- this.scenActs[index15] = new string[3];
- this.scenActs[index15][0] = "Show dialog";
- this.scenActs[index15][1] = "Cancel";
- this.scenActs[index15][2] = "Allow swap anyway (mark as invalid)";
+ this.scenarioExample[0] = "Swap a travel power with a power taken at level 2.";
+ this.scenActs[0] = new string[] {
+ "Show dialog",
+ "Cancel",
+ "Move/swap power to its lowest possible level",
+ "Allow power to be moved anyway (mark as invalid)"
+ };
+ this.scenarioExample[1] = "Move a Primary power from level 35 into the level 44 slot of a character with 4 epic powers.";
+ this.scenActs[1] = new string[] {
+ "Show dialog",
+ "Cancel",
+ "Move to the last power that isn't at its min level",
+ };
+ this.scenarioExample[2] = "Power taken at level 2 with two level 3 slots is swapped with level 4, where there is a power with one slot.";
+ this.scenActs[2] = new string[] {
+ "Show dialog",
+ "Cancel",
+ "Remove slots",
+ "Mark invalid slots",
+ "Swap slot levels if valid; remove invalid ones",
+ "Swap slot levels if valid; mark invalid ones",
+ "Rearrange all slots in build",
+ };
+ this.scenarioExample[3] = "A 6-slotted power taken at level 41 is moved to level 49.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
+ this.scenActs[3] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Remove impossible slots",
+ "Allow anyway (Mark slots as invalid)",
+ };
+ this.scenarioExample[4] = "Power taken at level 4 is swapped with power taken at level 14, which is a travel power.";
+ this.scenActs[4] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Overwrite rather than swap",
+ "Allow power to be swapped anyway (mark as invalid)",
+ };
+ this.scenarioExample[5] = "Power taken at level 8 is swapped with power taken at level 2, when the level 2 power has level 3 slots.";
+ this.scenActs[5] = new string[7] {
+ "Show dialog",
+ "Cancel",
+ "Remove slots",
+ "Mark invalid slots",
+ "Swap slot levels if valid; remove invalid ones",
+ "Swap slot levels if valid; mark invalid ones",
+ "Rearrange all slots in build",
+ };
+ this.scenarioExample[6] = "Pool power taken at level 49 is swapped with a 6-slotted power at level 41.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
+ this.scenActs[6] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Remove impossible slots",
+ "Allow anyway (Mark slots as invalid)",
+ };
+ this.scenarioExample[7] = "Power taken at level 4 is moved to level 8 when the power taken at level 6 is a pool power.\r\n(Note: If the power in the destination slot fails to shift, the 'Moved or swapped too low' scenario applies.)";
+ this.scenActs[7] = new string[5] {
+ "Show dialog",
+ "Cancel",
+ "Shift other powers around it",
+ "Overwrite it; leave previous power slot empty",
+ "Allow anyway (mark as invalid)",
+ };
+ this.scenarioExample[8] = "Power taken at level 8 has level 9 slots, and a power is being moved from level 12 to level 6, so the power at 8 is shifting up to 10.";
+ this.scenActs[8] = new string[7] {
+ "Show dialog",
+ "Cancel",
+ "Remove slots",
+ "Mark invalid slots",
+ "Swap slot levels if valid; remove invalid ones",
+ "Swap slot levels if valid; mark invalid ones",
+ "Rearrange all slots in build",
+ };
+ this.scenarioExample[9] = "Power taken at level 47 has 6 slots, and a power is being moved from level 49 to level 44, so the power at 47 is shifting to 49.\r\n(Note: if the remaining slots have invalid levels after impossible slots are removed, the action set for that scenario will be taken.)";
+ this.scenActs[9] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Remove impossible slots",
+ "Allow anyway (Mark slots as invalid)",
+ };
+ this.scenarioExample[10] = "Power taken at level 8 is being moved to 14, and the level 10 slot is blank.";
+ this.scenActs[10] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Fill empty slot; don't move powers unnecessarily",
+ "Shift empty slot as if it were a power",
+ };
+ this.scenarioExample[11] = "Power placed at its minimum level is being shifted up.\r\n(Note: If and only the power in the destination slot fails to shift due to this setting, the next scenario applies.)";
+ this.scenActs[11] = new string[4] {
+ "Show dialog",
+ "Cancel",
+ "Shift it along with the other powers",
+ "Shift other powers around it",
+ };
+ this.scenarioExample[12] = "You chose to shift other powers around ones that are at their minimum levels, but you are moving a power in place of one that is at its minimum level. (This will never occur if you chose 'Cancel' or 'Shift it along with the other powers' from the previous scenario.)";
+ this.scenActs[12] = new string[5] {
+ "Show dialog",
+ "Cancel",
+ "Unlock and shift all level-locked powers",
+ "Shift destination power to the first valid and empty slot",
+ "Swap instead of move",
+ };
+ this.scenarioExample[13] = "Click and drag a level 21 slot from a level 20 power to a level 44 power.";
+ this.scenActs[13] = new string[3] {
+ "Show dialog",
+ "Cancel",
+ "Allow swap anyway (mark as invalid)",
+ };
+ this.scenarioExample[14] = "Click and drag a slot from a level 44 power to a level 20 power in place of a level 21 slot.";
+ this.scenActs[14] = new string[3] {
+ "Show dialog",
+ "Cancel",
+ "Allow swap anyway (mark as invalid)",
+ };
}
void StoreControls()
@@ -722,7 +721,7 @@ void StoreControls()
config.DataGraphType = Enums.eDDGraph.Stacked;
else if (this.rbGraphSimple.Checked)
config.DataGraphType = Enums.eDDGraph.Simple;
- config.Inc.PvE = this.rbPvE.Checked;
+ config.Inc.DisablePvE = !this.rbPvE.Checked;
if (this.rbChanceAverage.Checked)
config.DamageMath.Calculate = ConfigData.EDamageMath.Average;
else if (this.rbChanceMax.Checked)
@@ -730,32 +729,32 @@ void StoreControls()
else if (this.rbChanceIgnore.Checked)
config.DamageMath.Calculate = ConfigData.EDamageMath.Minimum;
config.BaseAcc = Convert.ToSingle(decimal.Divide(this.udBaseToHit.Value, new decimal(100)));
- config.ShowVillainColours = this.chkVillainColour.Checked;
+ config.DisableVillainColours = !this.chkVillainColour.Checked;
config.CheckForUpdates = this.chkUpdates.Checked;
config.I9.DefaultIOLevel = Convert.ToInt32(this.udIOLevel.Value) - 1;
- config.I9.DisplayIOLevels = this.chkIOLevel.Checked;
- config.I9.CalculateEnahncementFX = this.chkIOEffects.Checked;
- config.I9.CalculateSetBonusFX = this.chkSetBonus.Checked;
+ config.I9.HideIOLevels = !this.chkIOLevel.Checked;
+ config.I9.IgnoreEnhFX = !this.chkIOEffects.Checked;
+ config.I9.IgnoreSetBonusFX = !this.chkSetBonus.Checked;
config.ShowRelSymbols = this.chkRelSignOnly.Checked;
- config.I9.PrintIOLevels = this.chkIOPrintLevels.Checked;
+ config.I9.DisablePrintIOLevels = !this.chkIOPrintLevels.Checked;
config.PrintInColour = this.chkColourPrint.Checked;
config.RtFont.RTFBase = Convert.ToInt32(decimal.Multiply(this.udRTFSize.Value, new decimal(2)));
config.RtFont.PairedBase = Convert.ToSingle(this.udStatSize.Value);
config.RtFont.RTFBold = this.chkTextBold.Checked;
config.RtFont.PairedBold = this.chkStatBold.Checked;
- config.LoadLastFileOnStart = this.chkLoadLastFile.Checked;
- if (!string.IsNullOrWhiteSpace(config.DefaultSaveFolderOverride) && config.DefaultSaveFolderOverride != this.lblSaveFolder.Text)
+ config.DisableLoadLastFileOnStart = !this.chkLoadLastFile.Checked;
+ if (config.DefaultSaveFolderOverride != this.lblSaveFolder.Text)
{
config.DefaultSaveFolderOverride = this.lblSaveFolder.Text;
this.myParent.DlgOpen.InitialDirectory = config.DefaultSaveFolderOverride;
this.myParent.DlgSave.InitialDirectory = config.DefaultSaveFolderOverride;
}
config.EnhanceVisibility = this.chkHighVis.Checked;
- config.UpdatePath = this.txtUpdatePath.Text;
- config.DesaturateInherent = this.chkColorInherent.Checked;
- config.ReapeatOnMiddleClick = this.chkMiddle.Checked;
+ //config.UpdatePath = this.txtUpdatePath.Text;
+ config.DisableDesaturateInherent = !this.chkColorInherent.Checked;
+ config.DisableRepeatOnMiddleClick = !this.chkMiddle.Checked;
config.NoToolTips = this.chkNoTips.Checked;
- config.ShowAlphaPopup = this.chkShowAlphaPopup.Checked;
+ config.DisableAlphaPopup = !this.chkShowAlphaPopup.Checked;
config.UseArcanaTime = this.chkUseArcanaTime.Checked;
config.TeamSize = Convert.ToInt32(this.TeamSize.Value);
int index = 0;
diff --git a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.resx b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.resx
index 1bd717cc..aeb1f136 100644
--- a/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.resx
+++ b/Hero Designer/Forms/OptionsMenuItems/frmCalcOpt.resx
@@ -117,11 +117,20 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 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
+
+
+ 17, 17
-
- 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
+
+ 102, 17
+
+
+ 192, 17
+
+
+ Swap = two powers are swapped. The powers in between are unaffected by the transition.
+Move = one power is moved to the position of another. The power being replaced, as well as all powers in between, are shifted in the direction of the power being moved.
+Shift = cascading swaps. Shifting down means powers are moved to a lower level, starting with the lowest. Shifting up means powers are moved to a higher level, starting with the highest.
When exemplared below level 32, the game scales your enhancements down. If you want to see the approximate values for your character when exemplared, enter a starting level and exemplar level (Remember that if your build's level is different to the starting level set here, the numbers will be wrong!)
@@ -131,16 +140,442 @@
Note that this also affects how Scrapper damage is displayed when Critical Hit is toggled on.
Where an attack has a chance to do additional damage:
-
- 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
+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
-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
+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
+ RU5ErkJggg==
+
-
- Swap = two powers are swapped. The powers in between are unaffected by the transition.
-Move = one power is moved to the position of another. The power being replaced, as well as all powers in between, are shifted in the direction of the power being moved.
-Shift = cascading swaps. Shifting down means powers are moved to a lower level, starting with the lowest. Shifting up means powers are moved to a higher level, starting with the highest.
+
+
+ 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
+ BwkFEiWPEhYY/xweHP9ucnD/paOb/6eknv+goJr/hoJ8/zg+RP8TQm3/bJC1/42x1v9upN7/c6Te/2mg
+ 3P9jndv/XJPM/0p3pv8mSGj/VVpb/6Gclf+MioP/cnFp/0VFPv8vMS7/ESM7uwINHUsBBAoRCgYKGSsY
+ FhWDQDIWuFdCIcZiTC6pV0U9l1dJQJ1yaSepqakSZmZmE01NTRA+Pj4IAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAEBAAABAQAAAQEAAAAAAAAAAAAAAQEDAAAAAHvZ+gB72foAgt3+AFmhvwBZpsIAAQYMMQEL
+ EEYBBg0vAQULIAMNGUggM0vaV11j/2ZkYP9FQ0L/JCMj/2BfX/+ysrP/v8DA/8vLy//Oy8f/i4R9/0tQ
+ Vf8rOkb/JTE+/3qn2P8sgdD/KERe/z5LVf9naWr/u7Ww/97e3v/f39//39/f/5eXmP8pKSj/cG9v/2pl
+ Xf82O0D/DiI4vRATHThMKSUmez0wNqtUQEGtWEVUl1VGZX9ZUmRdiaOVa5yuUU1NTSRAQEAaMTExCgAA
+ AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwAAAwMAAAMDAAAAAAAAAAAAAAMDDA4GBQ8GBwgsAw4RTAwK
+ Di7bfGcDBA8YVwIkMaoCEiJxAQgSLwcWK4hATF3/V1FK/2pmZP+BgYH/k5OT/4CAgP8tLS3/ODg4/6Cg
+ oP/a2tr/2dnZ/9bW1//b2tj/xcG+/0pCPf95pdf/G3TH/2tsav/b2tT/29vb/9vb2//c3Nz/3d3d/4eH
+ hv8pKSn/kZGR/93d3f+9vLz/nZqY/3lwav87QVH4Nik1goRFOl2bUkNznFhJf5VfU39YXnG7W5ez2EhQ
+ U1A6Ojo3NDQ0IygoKAwAAAABAAEBAQAAAAAAAAAAAAAAAAAAAAAAAwQAAAMEAAADBQAAAAAAAAAAAAAE
+ BRsGBgcjOBwWFBYWF1IQLDajFDA9pQxCVdEPLEO6FhchQxAdNqhMTVD/cWxn/2JiYf+EhYX/sK6w/8DA
+ wP/Jycn/u7u7/1lZWP8cHBz/SUlJ/52dnf+/v7//v7+//7e3t/9HREL/eKPW/xl2yP9kZmn/x8TC/8HB
+ wf/Dw8P/oKCg/0hISf86Ojv/rKyt/93d3f/e3t7/39/f/+Hh4f/g3t7/zMS9/4t9ff9kRUvOj1RLo5Re
+ VKFiU1q+QXOX/lV8jbw2NjZcLy8vRCMjIzAMEhMwAAcJIQADBQwAAAACAAAAAAAAAAAAAAAAAAMFAAAD
+ BQAAAwUAAAAAAAAAAAAAAQIGDw4ROlIoHxzFX0kYUCwnUSROX9kgb4j2KDhRuC4rO3UiNFjnLjAy/0ZE
+ Qv9UVVX/RURE/2VlZv+Xlpf/v7+//8zMzP/U1NT/sLCw/1xcXP80NDT/Q0ND/6ysrP/ExMP/RkRC/4Wo
+ 1P8geMf/YmZp/9XT0f+BgoL/T09R/0RFRf95enr/xMTE/9ra2v/S0tL/v7+//4uKiv9yb3D/dGxs/5GF
+ gv+DaF//dFtm9YZgYM9kW2LVKjVV/nS/3vI0QEesLS0taRwfImsNGB1tBQwQNwADBhQAAgMGAAAAAQAA
+ AAEAAAAAAAAAAAADBQAAAwQAAAMFAAABAgIAAgQMDQYIERQQF0IwHSJbgD0wPqNSQUpPQUq8OIuj/TtZ
+ guY8RWrHMVKC2hkwTP9MRUD/sLSz/4WKiP9kZ2b/VFVV/1VUVf98fHz/urq6/9fX1//W1tb/zc7N/y8w
+ Mf+xsrL/2NjY/0xLS/+dudj/VpTT/3R3ev/Z2dn/cHBw/3p7e//X19f/1tbW/8HBwf9ubm//Q0JC/0pL
+ S/9fX1//enh2/6unpf+qm5X/aEA4/31vhPBiZXDvICxF/lGw1f9ki5/kJykqnRwgJZkQHyaYExYZPDIy
+ MgUAAAAAAAAAAAABAQAAAAAAAAAAAAAAAAAAAwUAAAMFAAADBRcACQ9MABQehQElNbYINk3PHThTzEYx
+ PadxQz6aXVFXz1F+lfxSga79Tmyj9UhsrfQyU4b/WlZP/8/V1f+9wcH/tru5/5WamP9WV1X/Ojk4/0tK
+ S/+FhYX/paSl/4mFiP81LzT/OzQ6/zErL/8YFBj/GBIX/xkUF/8eFxz/NzA0/zMsM/9JQUj/gXyB/3Fx
+ cf9DREP/LSws/0JDRP93enj/pael/768uf/Oy8j/uaaf/3tUUf9qdoz7HSk7/y6Wuf9/w+L8Pk9b1h0j
+ LL8TKzfKFBsgZTExMQ8AAAADAAAAAAABAQEAAQEEAAABAQAAAQAAAAEAAAECAAABAgAAAQIHAAMDEgEF
+ CSMEDhRTDyQymyFMYd46a4f2W1588EhNXfYzOUv9SmqE/1l5pv5nj9H+RlV7/11aU//U2tr/sbWz/4OE
+ g/95eHf/k5KR/5yamv9sZ2n/NS0z/x8ZHf8hHB//KiIn/y4pLf80LTL/OTI2/zszOP87NDj/OTI3/zcw
+ Nf8yLDH/LSYr/yQeI/8jHCL/Rz9G/2xlav90cXD/Z2Be/3NlYf+ej4r/zcPA/7mjnf9rWln/GSYz/zWE
+ n/9tvd7/eaK6+CIsPNgXM0XmEys4vBcbIEkODxEUAAAAAQAAAAAABAUWAAMDDAAAAQEAAAEAAAABAAAB
+ AgAAAQIAAAECAAAAAAAAAQIDAQIEC00oIhhQLi5fSVVo2lyWr/5df5f+ExMf/wsQJP8XIzX/MUda/0Va
+ Yf9/io3/qq+x/4iKif+fn5//rKur/4N7f/9PSEz/NzM3/zo0Of9JQUPxWk1P3G5eW9V5ZmbVgm9o2Yhu
+ bOCNdHDhjnhw4Y1ybdmDb23Ue2hl0WhaWs5WSUzVRDs/8DUtM/8uJin/Tz5C/4BqbP+WgHv/lXZw/6mQ
+ h/+TjY3/HSsz/zxxhP9ou9r/g7nU/1dxkPUeN1PwFERY7hElO6oJFipvBhspZwESHFYADBJCAAkNMgAD
+ AwsAAwMBAAIDAAACAwAAAQMAAAEDAAABAwAAAQMIAQUMLQILGlYRESBeQCgycF0/Uq9nao7vcJi1/iY1
+ R/8EFir/ARsx/wYeMv8MITL/FCQx/yxCSv9rdnv/jpKW/3Jydf9fXWD/YFpd/HVpauOHeHbgkXp27IFq
+ ZPB7XVTwc1RI7m9NRO9vSUPvcExE73JPRfJwTUXyc1BK8nZTUPR+W1r2h25n9I54dOt8aGfTalRU2GNK
+ S/prSUb/j2hm/6yMiP+Mf3v/IDE2/0Flcf9wutP/dK7J/4+10f80TXf5Gktj+hVBY+wOKk+9Bi5KrgEo
+ OpkBGSRvAQ0TQQAFBxcAAQEDAAEBAAABAQAAAQEAAAABAAAAAQABBAkAAQUMJwEXMJACLFLICDJg1CQ4
+ ZdVMR3XcalyN7YKLvvxQbob/CBMm/wAgNv8AKkH/ADJG/wYzQ/8NLjn/ECcw/xcoLv8vPkT/XGdr+4CF
+ ifiLiIf8iXBs+nhaVPhuTUj4bEdA+G1EQPZsQT/2bEI+9m5BPvprQD/4az8/+Go+PfprQD34aj86+ms/
+ Ofp3Tkb8jGhe/aaDef6sh4DpoXZv6Zpzb/58ZGL/KTQ4/z9XYP90qLr/dK7G/5C60/9qe4T/IkFd/xtd
+ e/wXQXXsD0Bs0gU7WLkDHTJ6AgkTMwEDBxEAAQIDAAABAQAAAQAAAAEAAAABAAAAAQEAAAEAAQQIIgEe
+ LpwBNkrEA0Nd1QhYefEagaz8PY/E/WZ9vvt+gMT+UVlj/wkSJv8AHjX/AChA/wAxR/8IOEr/Gj9M/yhD
+ Tf8wRU3/LEFH/yE4Pv8WND3/Mlhm/3+Cgf5wWFT9Z0ZD/GdAPvxqPj77bTs7/G08PvttOz36bDw/+207
+ P/tqOzz6aTw8+2g7N/xsPTj8dEQ6/oRPRP6WXVP+sH9y/8CZkf+fiIP3Jiwv/khZYP9xlJ//fLLH/4my
+ yf+hwtb/XmRm/xcYF/8WPln+H0yS8RFbkuMKSXTGBSA8ggMNG0oBBgsgAQMFEQABAgUAAAEBAAABAAAA
+ AQAAAAECAAABAAEJD0YCEx5pAgwUMhMrQ9YcJCv/DSQy/ypDTv9LTmP/YEZN/0U/Qf8KGCv/AB81/wAo
+ P/8ANkv/C0BR/x5GVP8tS1f/OE9Y/z9VXP9DXmb/N1tm/1SBlf9/nJz/aVRT/mJAP/5mPT39ajs6/m86
+ O/1vOzz8bjk9/W46PfxwOj/8bjlA/Gw4PvxtPD38dUI+/INNQv6WWUz/omNW/69yZP6gfnf+LzM2/01Z
+ Xv9vho//f62+/461yP+XuM3/lam1/2NnZv8/Pz7/DQ0N/wkVLP8DJT/9ASI5/QYVJP8SIC/1AgsWPQED
+ CBUBAQMMAAABAgAAAQEAAAEBAAABAQABAQQBBgsqAgcQKw4fNaZhYWL/Lygk/ywjIP9YRkD/Zk9D/4t2
+ bP+empj/FSAt/wEiOP8AKT//ADlO/xJGWP8mT17/NlVg/0JbY/9HYGj/Smdx/0pmcP9Vd4n/qM3b/2pa
+ VP5dPTz+ZDs8/mo6PP5wOzv+cTg7/nA5PP5vOD79cDg//W83QP1yO0L8eT9D/oZJR/6UVU3/omZX/610
+ ZP+fenH/MTQ2/0xWWv9ufoT/f52o/5W6yv+XtMX/psDS/3uFiv8/Pz//X2Ji/2FkYv8xLij/NDAs/z05
+ NP8RDQn/Liki/xEfMOABBQwbAQMFEAABAgYAAAECAAABAQAAAQEBAgMJAgQJGQUQHVxmb3n/t7Ov/19h
+ Yv9laWj/rK+u/7WysP/Rz87/q6Ge/zc5P/8FJDv/ACxC/wE7UP8WTF3/LFVk/z1daP9JZG7/Umtz/1dw
+ ef9edoD/Vm58/5zC2f9+eG//Wjw9/mE7PP5qOz3+cjs9/nY6PP5yOT7+cDk9/nM7QP10PUH9e0FG/opL
+ TP6YVVP+o2NZ/q5yZv+eeXD/MTU3/0lUWP9vfIH/fJKa/5m7x/+ct8X/nbLD/6m/zP5VUlf/Q0JC/z5A
+ QP+Ch4f/mp+f/5Wamv+Zn57/OT0//2FgYP9OSkT/CxgorwEDBQUBAQMLAAABAQAAAQIBAQMIAgQJTAIE
+ ChkdMUzXsaui/768vf9sb3L/bnJy/7i8uv+/v77/rqek/6CQjf9ycHD/DCM2/wEzR/8HP1P/HVJj/zRd
+ bP9GZnL/U213/1t0ff9feIL/ZoCL/193g/+Eq8T/kp+d/15CQv9fPT3+ajw9/nQ8P/51Oz3+dDo9/nY7
+ P/55PUD+gUJF/o1LTP6bWFX+pmRg/rBya/+cdm/+NDk8/0NQVf9seX7/eouQ/5ixu/+iucT/n7G+/6i7
+ yf+Yn6b2Pzk9/UZBRf9PUE//TlFR/5ufn/+qsK//pKqp/0dNTv9tbm//amll/zEzNv8DChQ5AQMHFQEB
+ AxUAAAEBAQIEFQMFC0wEDRxZYGt1/7i0sP+5ubr/goGC/1dbWf+xtrb/qKim/4V6dv+/tbT/lYiI/x0p
+ Nf8DNkr/DEFT/yRWZ/87ZXT/T3B8/1x3gf9lfof/Z4GM/2uHk/9sh5X/cZat/6LAyP9oT0r/YTw+/mw8
+ Pv52PT/+ejs+/n07QP57PUH+hUNF/o9MTP6cVVT+p2Re/rFzav6heXX+MDY6/z1OVf9od33/doaM/5Km
+ rv+iuML/pbW+/5+rt/+3xtL/gnp7/kc+P+k6Mzn/XVld/0pKSv9mbGv/qK6t/5CVlP9IS0v/f39//3Ry
+ c/9XVE7/DBknzgEDCBEBAgQfAAECBQECBA8CAwcQBxox6D86NP+vsLD/vb6+/6ampv9PUE//qrCu/3p5
+ d/+QhoT/urCv/4lvcf9OSUz6CTJF/xVGV/8pWGj/RG17/1l5g/9mgIr/boeQ/2+Mlv9xj5z/dJSj/2qO
+ ov+ezOb/e21m/2E9Pv5rPkD+dT9B/no9Qf59PT7+g0JC/pBMS/6eVlL+p2Rd/rFzav6Xc23+O0FI/zJK
+ U/9gdHz/boOJ/4qepf+gtb3/pLS7/6Gstf+mr7n/rK+1/2dUUP1ZSkj4TEFD3lZLVf9jYmH/R0lJ/5Sa
+ mf96f3//Wlpa/5SUlP9/f3//R0ZF/woLCf8DDBhhAAECAAABAgYBAgQNAwgUPkNNVP8yLiv/Z2dn/8DA
+ wP/Dw8P/Xl5e/36Dg/9pZ2f/rKWk/4p0df+FaGb4inh09RAuPv8cSlr/Llpp/0lygP9ggY3/b4qU/3eQ
+ mf94lZ//eJek/3qcqv9ylqj/jb/e/4uNh/9hP0D+aT5B/nQ+Qv58PUT+g0JD/o5KR/6cV1H+p2Rb/q9y
+ aP6La2D+IyEs/ylKV/9VcXv/ZH6I/3+YoP+Vq7P/n7C3/6Sutf+doqn/tr3I/46Cg/5ZQD79ZVFN/W5Z
+ Vt9TRE3va2Rq/1BQUP9rbm7/XF9f/4GBgf+fn5//dXV1/x4eHv9DPzf/CxcorgABAQAAAQIIAQIEBAoU
+ Kp57fHj/eXh4/x8fH/+lpaf/zMzM/4KCgv80Nzf/f318/5yXlv9nS07/nXl14rWXk/gjLzj/HUhY/zRe
+ bf9PdoT/aYmV/3mTnf+BmaP/gp6o/3+hrf99pLL/eaKz/3+xz/+XrLD/ZEhF/2pCQv50REP+hUpK/pFN
+ Sf6cWE/+qmVZ/rJ0Z/+acmb/Jyo1/x9KXP9HbHn/VnuI/3OTn/+IpK3/l62z/5+qsP+hpKr/oaGn/7zC
+ x/9qUEz/Vjk0/21NSP2KbGn8bldZx19QXf9oaWj/PkBA/0VGRv+np6f/p6en/z8/P/8uLy7/gH55/xwl
+ MOMBAgUFAAECBQECBAITHDPgfHpz/7Kysv9CQkL/T09Q/8/Pzv+5ubn/ODs8/4+Qj/9uZGj/ZklO87aL
+ g+LInZX3VkxN/htDU/86YW7/UXeF/26Pm/+Am6X/iaKr/4ulr/+GqLT/gaq6/32qvP92qMX/l8fh/3Nb
+ Vf9tR0b+f05M/phXWP6kXVb+rGZd/rRzaf6gdWr+Mi46/w5DWv85ZnX/RXWG/2GMnf94nav/iaav/5Sm
+ rf+dpKn/m5me/7Cvtf+poaT/X0A8/1w6Nv5xRT/+kWpk/I5tZt1fTFnrcm1x/zM1Nf92d3f/wsLC/42N
+ jf8dHR3/iImJ/5aTkv8oKy7/AgUNKQAAAQACBAgVHSk//4uHgf+zsrP/o6Oj/x8gIP+jo6P/1NTU/3h4
+ eP9ub27/TkFI/3hXV9a8kIXoyJOM9qKAevwVNUL/P2Rx/1R5hf9zk5//h6Ks/5KrtP+Trrj/jK+7/4aw
+ v/+CssX/d6rB/4rH7P+HgHf/elJR/pFeX/6ra2j+sm1m/rd2bP6oeW/+NS88/wc9WP8rYXP/Mm+E/0yG
+ mv9jlKb/dZ2q/4SgqP+QnqT/mpyg/5mSlv/HydD/hmxx/189PP9nPTz+e0ZC/pFeVv2cd2/9dltexmte
+ av9HSEf/urq6/8nJyf9AQED/VFRT/8HBwf+cm5r/QUA9/wQJF2QAAQEAAwcTOAodNP9xcWv/vLy7/9PT
+ 0/9QUFD/VFRU/9jY2P+7u7v/Ojo6/0IxOv+NaGHNuIh/6cmRhPbDkYn8MjtA/z5hb/9WeIP/dJSf/4yp
+ sv+Ysbr/mbS+/5K1wf+ItcT/g7TI/3iuxP97v+f/j6Ok/4xgYf+vdnb/uHl3/rx7dv6zgXn+Sj1H/wk6
+ V/8cWm//H2eA/zV9lv9MjaP/X5Sn/3CXpP9/lqH/jpid/5SPkv+knJ//uK+2/29JTf9gOTv/dkJB/oZM
+ SP2RVkz8oXdv+45tZtFgS1z/bm5u/9jY2P+qq6v/ICAh/7Gxr//Kysr/oqGh/y4sJf8EDSKaAAEBAAgN
+ H1gdUH//KDA0/8O/vf/X19f/oaGh/ycnJ//Pz8//yMjI/01KTf9PPEPlmnRs2rR+de3HiH32z5aJ+2lZ
+ V/4yUV7/XHuG/3WSnf+QrLb/nbbA/565w/+Xusb/jLfH/4K1yv98tMz/aa3Q/4vA1v+ienn+zJCU/sSK
+ iv6genP+OC88/wk1Vf8TV2//DmB9/x10kf8yg5//R4uj/1iOof9qkJv/e4+Y/42Rlv+Qhof/xMTJ/6SM
+ jf9vR0z/bj9E/4VJSf6RTkv+l1NL/qBrZv6edG72dFhm35CLjv/Y2Nj/b29v/0RERP/Y2Nj/19fX/354
+ dP8VKjr/HDFSywECBAcNFSt8V6LZ/wMzZP+IgHv/1dbU/8fHx/9HR0f/XFxc/5aXl/9WTlP/YUdMz55y
+ bNyzenHvxoZ69dKUh/umgHb+Iz5K/116hf9yjpf/kau0/6G7xP+ivsj/m73J/466yv+Btsr/eLTM/2Gn
+ x/90xu//pJCM/s2YnP6afHT/JCEw/wYwUv8IVG3/AFt8/wltj/8aepv/LYKf/z+Fnf9Rhpn/ZIeU/3qJ
+ kf+KhYf/nZOZ/9DMyv+EYV//b0hL/35KTv+UT1L+oFNO/qFWTP6kZ1v+p3lw/IRiashxZm//hYaG/zQ0
+ NP+QkJD/1NTV/8bEwP8yO0D/PHu1/zpVeuwCBg4tHC5PxIi42f83erb/Rk9W/9PPzP/CwsP/gYGB/01N
+ Tf9MTUz/Oi84/3VUVcaic2zfsXhs8ceEdvjXlIP81JyP/jhCRv9Tbnv/c42W/46osf+ju8T/pL/J/5y+
+ yv+Nusr/frbK/3Gxyv9grcr/R6rZ/5SMjv7Ek5b+MzE8/wYuUv8CVXH/AFh6/wBmjf8DcZf/Enea/yR7
+ mf82fJT/Sn6P/2KAjf98hYz/hHh5/7m2w/+rmZL/fFla/3NNTv+PV1j/olpa/6VZVf+mWFL+qGFW/qp6
+ cvyTamvFXEdW/1NVVP9dXV3/qqqq/9LR0f+clo//Hj1Z/2+n0/9Nb5r/DRYjaUBcgvN+qtj/YZvU/yRA
+ Wf/Px8D/y8rK/9TU1P/W1tb/ubm5/08/S/+HYF7JqHRs5bV2avPGgnP41pGD+t2ekf19amX/QFlm/3OL
+ lP+In6f/n7jA/6S/yf+cvsr/jbnJ/3qzyP9oq8T/WqrI/zOcx/82Rln/SEBI/ww9Z/8BYIH/AFd8/wBf
+ if8AbJb/AG6W/wlwlP8bcpD/LXSM/0R2iP9ge4b/enuA/4l7f//Lyc//iG5q/3hXVv+DWVn/oWNk/6xh
+ Yv+rXln/qlpR/qhgVv6xenP8nnNv0IRqfv/W1tb/19fX/8fIyP/Y2Nj/fnt2/ydSff93qdT/Yoy8/yIy
+ RrpRcpn8c6HX/1yb1/8TPWL/aWBX/2xraP95dnP/hIKA/3p7eP9NO0n/m21n1K14cOy0dGj0wntu+9SO
+ gv3enpL9vpOJ/i9ETf9ug43/gpee/5uzu/+jvsf/m7zI/4q2xv92sMT/YKfA/0mhv/82nb//BjFd/wY2
+ Z/8Cc5n/AF+J/wBei/8AZJP/AGiV/wBokv8Aao7/E2uJ/ydshP9CcYH/Y3WA/3dwc/+imaL/tami/39i
+ X/9yVFL/lGZk/6lta/+yamj/sWNh/69hVf6uYFb+s35z/q14cOOGZn3/g4B5/3p0bv9oY13/a2Zf/y4q
+ I/8zXon/dKbU/2OOvv8oO1PPWnmf/W2d1P5pndX/U4C0/118o/9ae6T/V3ih/1Z3n/9MaYn/VD9Q/6h1
+ b96xfXTys3Rq9755bfzPjH393Z2Q/tmnm/5JTEz/X3V//3uQl/+SqbH/nrnB/5a4xP+EscL/b6q+/1ig
+ uv89l7X/IYqu/wd7o/8Ad6H/AGiV/wBhkf8AX5D/AGCQ/wBhjv8AYYv/AGGG/wxjgv8iZn7/Q2t8/2dy
+ fP92aWz/wsHM/5N+df94XVn/gmFa/6Fwa/+ydHD/tm1r/7RmY/+vYlv+sWJY/rV8c/6zfHb0lG+M/0Bb
+ dv9GX3r/SWF9/09ngv9GX3v/VYW6/26d0v9ijLz/Kj1U0WiAnvxun9X/ianW/6K/1/+bvdf/mLzX/5m8
+ 1/+ZvNf/h6S2/1xGVf+tfXXmsH519LJ0aPq4fHD9yYl9/teajv7cqZ3+gXJr/0ZaZP93i5L/iJ6l/5ew
+ uf+Qsr3/gKy7/2iit/9QmbP/NZCt/xiCp/8Hfqj/AG+d/wBklP8AX5L/AFqO/wBZiv8AWIf/AFmE/wBa
+ f/8GXHv/H2B4/0doeP9maXH/hHyE/8bAwf+BZmP/cldV/41oYv+pdm7/tXlz/7R1bf+ybmT/smZf/rBm
+ Wv6yfHX+toJ6/J95lf+Zw9b/msDW/5rB1/+av9f/nMDX/3mn1/9nls3/X4q8/yk8U89rfpf8o7zY/oCo
+ 2P9BaZP/XnOM/193lP9edpP/XnWS/1Jofv9aRlf/r3944bOCe/Sydm/6uHtw/caJff7Vm47+26md/qaL
+ g/4vQEn/b4KK/3yQl/+Opq//iqu3/3eltP9im6//SJGq/y2Ipv8SfaD/AHGa/wBplf8AYJH/AFmM/wBT
+ h/8AUYP/AFGA/wBRfP8AVHj/AlZ2/yBdc/9LaHb/Y2Bl/6ant/+unZP/fWFe/3xdW/+dc23/s3x3/7p+
+ dv+5eXD+tXJq/7NuYv+wa2H/s392/rqFgPKVdJD/TmV//1Bmfv9TZ4P/V2qE/1Bmf/9djcX/gafR/26P
+ uP8mOE7IWW2G9sXQ2P+FrdX/KkBU/7Spnv+5tK7/w764/8bCvf+trKX/Y1Bd/62Beta1iIH2s3xy+7Z/
+ df3Cin3/0pqR/t2sof7Cn5b+OD9B/1xveP91iI7/gpuj/4Girv9ynaz/WZOn/z+Jof8kfp3/CXOY/wBp
+ k/8AYY7/AFmK/wBShf8ATYH/AEp8/wBLev8ATXb/AE90/wNTcf8iXHL/TGJw/2hmcP+/wcn/h3Rv/3pe
+ XP+LaGT/qXt1/7uFe/+/g3n/u39y/7l3bP+3c2b+s3Jn/rCCff23i4bhnn+V/8fFvv/JxL7/sKul/7+6
+ tP+alI3/Q26d/4+y0P96lLP/Hy9DuDlLauTJ19n/dpzD/1hhaf/Z19X/xcXG/7+/v//ExMX/tLa1/2dZ
+ ZP+lfXnNuI2G9rKAefu2f3f+vYl//s2akP7braD+4Lev/25kX/9FWGP/b4CH/3SMlP94l6P/aZSj/1KL
+ n/83gZn/HXaV/wJskP8AYYr/AFmG/wBRgv8ASn7/AEd6/wBEd/8ARXT/AEhy/wBMcP8EUnD/I1xz/0JZ
+ Zv+Fk6P/vLGn/39sav9/Y1//m3Vw/7ODfP/BioD/v4Z9/71/dv+8enD/uXds/rR2bv+6jYX+vo2KzY13
+ iP+goqH/pqam/729vv/Mzc3/x8O//09nf/95o8v/UnOe/xUhMJMWIj+tutPa/0Jqkf+Miob/2djX/8LD
+ w/9LS0v/YmNl/3Z3eP9QRkz/mXZ1yL+Ui/KxhH76toF5/rqJg/7GmI/+2Kmg/uG2rv+ZhXv/Lz9G/2Jz
+ e/9pf4f/bIqW/1+KmP9Jgpf/L3mS/xVtjP8AZIf/AFmD/wBRfv8ASXv/AER4/wBBdP8AQXL/AEJx/wBG
+ cP8AS3D/A1Jw/yJccv8+Wmj/ipys/7iupv9/bmv/lXVx/6qCff+9jIX/xpCG/8OJgP+/gnn/v39z/7t8
+ bv+yfHb+v5KM/b+Tk8FnWWT/W15f/zAwMP+Ghob/zMzM/9ra2v99gYP/S3um/0RigvsKEBtYBAoaT0V9
+ tP9fcoH/0szI/9jZ2f+Pj4//U1NT/83MzP/AwMH/SEJH/41xdM3CnJTxtI2F/LaGff63i4P+xZeO/9ao
+ nv7iua//y6ui/zQ8Pf9SZG7/XnN5/19+iP9XgI//QnqN/yhwiP8OZoT/AF2A/wBUfP8AS3j/AER1/wA/
+ c/8APnH/AD5w/wBAb/8ARXD/AExw/wJScv8fX3f/RGt6/2R3gf+SmqT/koB8/6aHhP+4kIr/xJSN/8qU
+ jP/GjYP/wYV7/8CDeP+7gHT/sYR+/sWdlP3Bm6LGfXd7/83Oz/+UlZX/RUVF/8/Pz//S0dL/zsvG/yxK
+ ZP8aMEnTAwUKHgIFDSQWNVn/x8O6/9vb2//Y2Nj/MTEx/4uLi//Z2dn/kZGR/z08Pv99aXLiw6CZ5biV
+ jvq0h4H8tIyD/r6Sjf7Po5v/5Lqv/+vEvv+IeXP/PU1W/1Rnbf9Tb3j/TXWE/zpzhf8haID/Bl99/wBW
+ ef8BTnb/AUd0/wI/cf8COWv/Aj1w/wI+cP8BQW//AUdy/wBRdf8CWHj/H2N9/0Jwgf9ee4b/coSN/4iJ
+ kf+tlJD/wZqU/8mblP/NmZL/yZKJ/8eKgf/Fhn3/t4R5/7OOiP/Np5/4uJqq3js7O//AwMD/0dHR/y0t
+ Lf+QkJD/3Nzc/8vJx/+Gh4P/CRIjiwABAQACAwgVTVRj/tzc2f/c3Nz/fX19/0NCQv/Qz8//y8zL/0VE
+ Q/+SkpH/aFxk/7GSjsu/npb2souF/LOOiP66k4v+zKCX/uCzrf/uw7z/y62n/jtFS/9LXWT/R2Fq/0Rq
+ eP8zan3/GmJ6/wJad/8AUXX/Akpy/wRBbf8GRXX/CVqM/wk8bv8GPG3/A0d1/wFMd/8AVnv/Al9//yFq
+ g/9Bdoj/Wn6N/3KLlf+Ooaf/i5Oc/66XlP/JoZr/zp2V/8yWjv/Ijob/xYqD/7OGfv++mpb+yqejy6iX
+ pP8xMDD/fn+A/9ra2v+IiIj/IyMj/8bGxv/GxMP/kY6K/woPHGAAAAEAAQIDAzU/WuHd3d3/o6Gi/2Rj
+ Y//Ix8f/1NPT/4N/gP89ODj/xMTC/3Rrb/+fiIzOzKqn8baVkfyzj4r+t5KM/8edlf7drqn+6763/+TA
+ uf5UVFX/P1BZ/0JbY/8+Y3H/LWV4/xhedP8AVXL/AE1x/wJIcP8IQ3D/DURz/xI4aP8RR3z/Cz5x/wNJ
+ dv8AU33/AFp+/wllhP8mcIv/QnqO/1uEk/9tipb/fJKa/5GlrP99j53/mY6P/8qgmf/Mm5P/ypSN/8KP
+ iP+yjIr/zqun/smsssOXj5X/TE1N/ykpKf/BwML/09PT/1tbW/84ODn/vLu4/3B0d/8DBw4sAAABAAAC
+ AgQRHDKZent2/1ZUVP/Pzs7/3t3d/8fFxf9NQ0H/W1JP/7Wwrv+ppaT/iniB8M6yrtvGpaL5uZeR/LiU
+ jP/Fm5b+2qyj/+i5sv/qwrj/em5n/y1BTf87VVz/Nl1q/y1hc/8ZXHL/A1Rx/wJLb/8FR2//DUZy/xZI
+ d/8hF0P/K2GL/x6Wy/8KSHf/AFV+/wBghP8Qaon/K3eQ/0WAlf9ch5f/b42Y/3mPl/98kJj/h5+m/26N
+ m/+LiY7/xZ6W/8Oakv+1j4f/vKCa/9G2stq1oa3qh4eH/1JTU/8bHR3/goOD/9fX1//d3d3/VVVW/zg1
+ Mf88RFDlAQIFAwABAgYAAQIACBAhiT4/Of+xsK//4N/f/+Df3/+6tbT/YlRQ/4d9ef+TiIX/0M3M/4t9
+ gv/Drq7S5sjD+MCfmv7CnJb+yKCZ/9uso//ourL/7sO8/6CLf/46Tlz/Q19q/yVNW/8aTmD/EVBl/wlP
+ bP8ITnH/C0x0/xRLdv8gSnj/M2OV/4qUkf+dvcP/HZzR/wJVfP8AYIP/FW2L/y97lP9Ig5j/XoeY/2yM
+ mP93j5j/eo+W/3OLlP94l5//ZIyd/3+GjP+1l5H/r5aR/861sf7Lt7jJnpWb/29vb/9RVFP/UlVV/0lI
+ Sv/W1tf/3d3d/9HR0f9MSUb/EBQc6gEBAwEAAAEBAQEDEAIDCycqO07szsjD/97d3f/k4uL/vLa1/314
+ d/98jJT/c25w/7CsrP+zraz/opWa9OPNy97kxMD9y6uf/tOspf7nuK7/78K4//vQxv/Psqr/kJGJ/7PI
+ 0f+awdT/X5Or/yRkgP8MSWn/C0Nk/w5Fa/8ZTnj/Jk96/zh0qP+KqrL/1L28/mSswv8MZI//AV9//xVq
+ iP8veJL/R4KX/1yImP9pi5f/dI2V/3eMlP9xiJD/ZYKM/2KIlf9NfpL/XnqI/6+gnP+/srLhr6Or8oyM
+ jP9TU1P/aGtr/4+Wlf81Nzf/vb2+/9nZ2f+4tbP/WV5i/wMJE04BAQMKAAECBgABAwsBAwYXBxUidqKk
+ pv/Y1dL/5eTk/6agnv+dlpT/f4qU/zc3S/9NWWr/f5Kc/4KDi//CuLzk++Lg9drBu//Ur6z/7cK5//XL
+ v///1cz+/+Tb/+7d1v/X0MX/0dDG/8XOyv+q1eP/crrX/zuXvf8Ybpz/HViC/ydNeP8yUID/W73p/660
+ q/7cxb/+J0lq/wxjgv8XZH//LnSN/0WBlv9Yh5b/ZoiU/2+Ikf9xh4//bIOL/2F9hv9RdYL/RHSF/zRx
+ iv9qjJv+qKCj55SQk/9vb2//TE9O/4yRkP+pr6//MjQ0/5CPkv/Ozs7/o56Z/yQwPMcBAgMCAQEDDgAA
+ AQEAAQEFAQIFFgEFCyQyQVjq39vU/9LS0f+MhoT/v7m3/8/Myv+DjZX/ICA4/xMoRv8bMkz/VWFx/6Wo
+ rO3l1dT9zrm3/tS4tP7xysL//NfP///d1v//5d7///Hp//f27v7j493+0NHJ/8DNx/+ryMn/l83g/3e+
+ 2v9Eqtb/MHir/zSb0/+bu7b//+Ld/m5scP8JTnD/GWN9/yluhv9BfZH/U4GS/2GDjv9pg4z/aoCI/2R7
+ hP9ad4D/Sm58/zdmeP8gW2//MXeY/2eOm/9/f37/UlJS/2dqav+gpqX/rrOy/01QUP9zdXj/vb25/2ls
+ b/8DCxNAAQMFDgABAgUAAAECAAABAgEBAxIBBAghAwoWUXmGk//Rzsv/f31//8fGxv/b29v/1NbU/3uR
+ mv8bUWv/B0dk/ws7Vv8eQVX/RFhm+1xob/9UYWj/bnF0/7Glpf/jysX/59DM/unVz/735d3///bv//j1
+ 7P7z8+v/7+/p/uvr5v7l5OD9xdDS/oLF2/88sOj/kLnG//vc1f6WiYT+C0Bh/xlhev8kaYH/PXiN/099
+ jf9bfYj/YnyF/2N5gf9ddH3/UW55/0JndP8wX3H/HVZq/xdGYv9apcX/YnF3/1RUVP+Kj47/jpOS/5Wb
+ mv9fZWT/e3x8/6Sinv8QHiyTAQMHDAECAw0AAQEDAAABAQAAAQMAAQIIAQMGGQEFCygJGy+gh4WE/3dy
+ bP99fHj/kIyK/7e2tf/e4+H/epag/xheef8EQ2D/AkZg/xNPZv8aS1v/HEBM/x03Qf8cLzb/N0NH/1hf
+ Y/9YanX/hYyL/9/HwP7/5t3//+nj/v/r5v7/7+f9/+/p/f/w6/356uf90c3K/sa7uf7szcr+Q0JO/wdG
+ Yv8SWnP/IGZ9/zhzh/9Jd4b/VHaC/1x1fv9ccXn/VWx1/0pmcf84Xmz/JVdo/xtTaP8cNk7/M3iZ/2um
+ u/9wbGv/XmBg/zMwK/8zMSz/ODcz/29sZ/8lLz7VAQQKFwEDBxQAAQMIAAABAQAAAQEAAAEBAAABAgEC
+ BBUBBQsmAgYPLQ0ZNNcnMTb/GB4e/x8bGf8uIx7/kI2J/97j4v96mqX/IGmC/wQ7Vf8AOVH/E0xg/ytZ
+ af86Xmr/RF9o/0VaY/86T1b/J0BJ/yZHWP8uT13/XGhv/3t7gP+kl5n+wKyq/sWyrf7TvLj+7NHL/u7Q
+ yv7Js6/+XVVf/w0vS/8DUWv/CFVv/xxkfP8wbYD/QG9//01ve/9Vbnf/VWpy/09lbf9CX2n/MVdl/x5P
+ Yf8SSl//I0BW/zRBXP96t9H/Z19h/xkbIP8THDj9DBY29QoSK/AVITTSAQkTVAEECR4BAQMIAAEBAwAA
+ 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
+ AQAAAQEAAAEBAAAAAAAAAAAAAAAAAAAAAAAABhE4ABcxrAEEDTUBAQQLAgYPNQMjOq4CM1zUFiVI8ndw
+ Yv+dnJv/p6en/8XFxf/c3Nz/3t7e/97e3v/b29v/p6em/1RUVf9OTk7/hISE/5iYmP+3t7f/wb+//36D
+ hf+OrsL/f6/I/4q2xv+Oy+L/gsXf/3vA2/95utT/eK3C/3yktf+HoK3/oa63/7jBx/+/wb7/qKeg/5yb
+ lP+VlIz/ZGNe/yksL/8ZMD7pGyAophMmN7IKPFDLBTNFvCQkJQcAAwMMAAcJJAADAwgAAQEDAAEDBQAB
+ AQIAAQEAAAEBAAABAQAAAQEAAAEBAAABAQAAAAAAAAAAAAAAAAAAAAAAABEecwAjMrVwze4AAAEDCAEE
+ CSECChVOACxEygMWL5dLV23/v7qu/8rEwf/b2tr/4ODg/9/f3//e3t7/nZ2d/0dHR/99fX3/xsbG/87O
+ zv/Ozs7/y8zM/9DQ0P96env/iqDB/3WXwP+Ojo//s7e4/660tv+qsrX/qbW5/4iVmv98iY//l6Km/6qv
+ sv+cnqD/ioqK/4KCgv98enn/bmtn/zc8RvoaIy/JFCs3zxgeJHcQGyVyCBghXwEvPasBCBM+AAAAAAAB
+ AgUAAgMFAAABAQABAwEAAAABAAAAAAAAAAAAAAAAAAEBAAABAQAAAQEAAAAAAAAAAAAAAAAAAAEBAQAQ
+ Gm0AHyqrAAIEAgADBx8ABAksAQIGFwEXI5oBDBpwAgoYViY5UupzeoT/rqee/8LAvf/T09P/hYWG/1JT
+ U//Hx8f/3d3d/9fX1//d3d3/2dfT/6+ppP+blZD/WVZU/4mjx/9ymcf/aWlp/56alP+sqKT/wL6+/7q6
+ uv+0tLT/k5OS/0xMTP84ODn/aGho/4OCgf9/e3j/bmxs/y45SOYhJSp7GyAnchAfKJAYGh47ChIWPQoO
+ ERsADRZIABEaXgACAwYAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQAAAQEAAAEBAAAA
+ AAAAAAAAAAAAAAABAgsABQkpABYekwAQGHQACAxFAAMFFgABAwcABQgpAQQKKgEECysBBQ4xAg4fcSE6
+ Vu5namz/QTsz/zYzLv+ysbD/3t7e/97e3v/d3d3/sKql/0NLU/8dPFf/HEpz/yxbif94pNf/daPY/1V3
+ nf9Oaov/S11x/2dlY/+lop7/oqGi/52cnP+Uk5L/YWBe/1dWVP9ub27/P0lV+BkjMZ0hIydJHiAkPhUa
+ H0gLERQ4HR4fEgwPEBYAAQEEAAAAAAAICy0ABAccAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAECAAAAAAADBRkABQgtAAEDCAAAAAAAAAECAAEBBAAB
+ AwoAAgQUAQMIJAEECy4ABQ0sAxAjjgocMfFNWWf/oaOi/724sP+/vLX/bWtm/xQzTP9DgLb/ibfc/5S7
+ 3f+QuN3/eqXa/3Oh1v94qNr/d6fW/3Kj0f85YYj/Iiw0/1hUTf9oZF//VVVT/05SV/8sMTX/Ehwtlhke
+ JDoaHCApGBkeIxMWFxsMDxAWGBkaCwABAQQAAAAAAAAAAAAAAAAAAQEBAAECBQABAQIAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAQIAAAECAAEBBQABAwoBAwYjAQQKQAEECi4BBAojAQkUTgcWKZ4bLEPaGCpB+gki
+ P/85aZz/h6K4/7jFzP+5x9D/qL7Q/4mrzv94osz/b5nH/2qTv/9rkrb/WYSs/xc/afoGFyvbCRktvQcV
+ JooGDhpNBgsVQwkMESAKDRIbAAMGFQABAwsAAQIFAAEBAgAAAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAQEAAAMFAAAFCAAAAQMAAAMEAAAAAQAAAAEAAAABAQABAQEAAAEDAAEBBAABAw0AAQQUAAEFFgAC
+ BhoAAgUXAAEGFwACCSIBAw43AQQSSgQJGm4SHDa7OEdi9Utbdf9KXHj/R1t38D9Sb+wnOVnWEyJCtQUN
+ I2gBAw0lAAIJFAABBw4AAgYRAAIFDgABBAwAAQMLAAEDBwABAgUAAAECAAABAgABAQEAAAEAAAEBAAAD
+ BAAAAQIAAAEBAAABAQAAAQIAAAEBAAABAQAAAQEAAAEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAEBAAADBQAABQgAAAEDAAADBAAAAAEAAAABAAAAAQEAAAEBAAABAwAA
+ AQQAAAEEAAEBBgABAwsAAQMOAAEDEgABBBUAAQUWAAEFFQABBRYAAQUTAAEFEAEDDC0DBRJGAwcTTQMH
+ FTgDBxIyAQMKGAABBQcAAQMIAAEFDgABBRIAAQUQAAEEDgABAwoAAQMIAAECBgAAAQMAAAEDAAABAgAA
+ AQEAAQEBAAABAAABAQAAAwQAAAECAAABAQAAAQEAAAECAAABAQAAAQEAAAEBAAABAQAAAAAAAAAAAAAA
+ AAAAAAAA////////gP///wIAAOAAP//8AAAAAAAf//gAAAAAAB/78AAAAAAAH/gAAAAAAAAP+AAAAAAA
+ AAf4AAAAAAAAA+AAAAAAAAA/wAAAAAAAACPAAAAAAAAAI/AAAAAAAAAD4AAAAAAAAAfgAAAAAAAAB0AA
+ AAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAA
+ AAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAC+AAAAAAAAAPwAAAAAAA
+ AB/IAAAAAAAAf4IAAAAAAAA/wAAAAAAAAB/IAAAAAAAAB/4AAAAAAAAH/kAAAAAAAQf8AAAAAAAA3/wA
+ AAAAAAR//RAAAAAAHH/9+AAAAAA////8AAAAAH////wAAAAAf/8=
+
Set this to the level of your character. This setting will not reduce the number of slots/powers placed to match the level. Powers available after the level set ehre will still be calculated unless you disable them.
diff --git a/Hero Designer/Forms/WindowMenuItems/frmSetViewer.cs b/Hero Designer/Forms/WindowMenuItems/frmSetViewer.cs
index 72a10849..279b97ba 100644
--- a/Hero Designer/Forms/WindowMenuItems/frmSetViewer.cs
+++ b/Hero Designer/Forms/WindowMenuItems/frmSetViewer.cs
@@ -135,7 +135,7 @@ void FillEffectView()
int num3 = enhancementSet.Bonus.Length - 1;
for (int index4 = 0; index4 <= num3; ++index4)
{
- if (setInfo[index3].SlottedCount >= enhancementSet.Bonus[index4].Slotted & (enhancementSet.Bonus[index4].PvMode == Enums.ePvX.Any | enhancementSet.Bonus[index4].PvMode == Enums.ePvX.PvE & MidsContext.Config.Inc.PvE | enhancementSet.Bonus[index4].PvMode == Enums.ePvX.PvP & !MidsContext.Config.Inc.PvE))
+ if (setInfo[index3].SlottedCount >= enhancementSet.Bonus[index4].Slotted & (enhancementSet.Bonus[index4].PvMode == Enums.ePvX.Any | enhancementSet.Bonus[index4].PvMode == Enums.ePvX.PvE & !MidsContext.Config.Inc.DisablePvE | enhancementSet.Bonus[index4].PvMode == Enums.ePvX.PvP & MidsContext.Config.Inc.DisablePvE))
{
if (str4 != "")
str4 += RTF.Crlf();
diff --git a/Hero Designer/Forms/frmEnhData.cs b/Hero Designer/Forms/frmEnhData.cs
index ffb5a74c..002daa3a 100644
--- a/Hero Designer/Forms/frmEnhData.cs
+++ b/Hero Designer/Forms/frmEnhData.cs
@@ -560,7 +560,7 @@ public void DrawClasses()
int enhPadding1 = this.EnhPadding;
int enhPadding2 = this.EnhPadding;
int num1 = 0;
- this.bxClass.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxClass.ClipRect);
+ this.bxClass.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxClass.ClipRect);
int num2 = this.myEnh.ClassID.Length - 1;
for (int index = 0; index <= num2; ++index)
{
@@ -584,7 +584,7 @@ public void DrawClassList()
int enhPadding1 = this.EnhPadding;
int enhPadding2 = this.EnhPadding;
int num1 = 0;
- this.bxClassList.Graphics.FillRectangle((Brush)new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxClassList.ClipRect);
+ this.bxClassList.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, 0, 0)), this.bxClassList.ClipRect);
int num2 = DatabaseAPI.Database.EnhancementClasses.Length - 1;
for (int index = 0; index <= num2; ++index)
{
diff --git a/Hero Designer/Forms/frmMain.cs b/Hero Designer/Forms/frmMain.cs
index 0fba4973..f9f1f9ff 100644
--- a/Hero Designer/Forms/frmMain.cs
+++ b/Hero Designer/Forms/frmMain.cs
@@ -1,4 +1,4 @@
-
+using AutoUpdaterDotNET;
using System;
using System.Collections.Generic;
using System.Drawing;
@@ -27,7 +27,8 @@ public partial class frmMain : Form
Rectangle ActivePopupBounds;
bool DataViewLocked;
- readonly short[] ddsa;
+ // dragdrop scenario action
+ readonly short[] dragdropScenarioAction;
ExtendedBitmap dmBuffer;
bool DoneDblClick;
int dragFinishPower;
@@ -147,7 +148,7 @@ public frmMain()
this.FlipSlotState = Array.Empty();
this.dragStartPower = -1;
this.dragStartSlot = -1;
- this.ddsa = new short[20];
+ this.dragdropScenarioAction = new short[20];
this.DoneDblClick = false;
}
this.InitializeComponent();
@@ -206,22 +207,17 @@ void frmMain_Load(object sender, EventArgs e)
this.myDataView = this.dvAnchored;
this.pnlGFX.BackColor = this.BackColor;
this.NoUpdate = true;
- clsXMLUpdate.eCheckResponse? chkResult = null;
- string chkResultFailMsg = null;
- if (!this.IsInDesignMode() && MidsContext.Config.CheckForUpdates)
- {
- clsXMLUpdate clsXmlUpdate = new clsXMLUpdate(); // "https://www.dropbox.com/sh/amsfzb91s88dvzh/AAB6AkjTgHto4neEmkWwLWQEa?dl=0");
- (chkResult, chkResultFailMsg) = clsXmlUpdate.UpdateCheck();
- }
- if (!this.IsInDesignMode() && MidsContext.Config.FreshInstall)
+ AutoUpdater.ApplicationExitEvent += AutoUpdater_ApplicationExitEvent;
+ AutoUpdater.CheckForUpdateEvent += AutoUpdaterOnCheckForUpdateEvent;
+ if (!this.IsInDesignMode() && !MidsContext.Config.IsInitialized)
{
MidsContext.Config.CheckForUpdates = false;
- //MessageBox.Show(("Welcome to Mid's Reborn Hero Designer "
+ //MessageBox.Show(("Welcome to Mids' Reborn : Hero Designer "
//+ MidsContext.AppVersion
//+ "! Please check the Readme/Help for quick instructions.\r\n\r\nMids' Hero Designer is able to check for and download updates automatically when it starts.\r\nIt's recommended that you turn on automatic updating. Do you want to?\r\n\r\n(If you don't, you can manually check from the 'Updates' tab in the options.)"), MessageBoxButtons.YesNo | MessageBoxIcon.Question, "Welcome!") == DialogResult.Yes;
MidsContext.Config.DefaultSaveFolderOverride = null;
MidsContext.Config.CreateDefaultSaveFolder();
- MidsContext.Config.FreshInstall = false;
+ MidsContext.Config.IsInitialized = true;
}
string args = string.Join(" ", Environment.GetCommandLineArgs().Skip(1));
if (args.IndexOf("RECOVERY", StringComparison.OrdinalIgnoreCase) > -1)
@@ -285,7 +281,7 @@ void frmMain_Load(object sender, EventArgs e)
this.tsView2Col.Checked = MidsContext.Config.Columns == 2;
this.tsView3Col.Checked = MidsContext.Config.Columns == 3;
this.tsView4Col.Checked = MidsContext.Config.Columns == 4;
- this.tsViewIOLevels.Checked = MidsContext.Config.I9.DisplayIOLevels;
+ this.tsViewIOLevels.Checked = !MidsContext.Config.I9.HideIOLevels;
this.tsViewSlotLevels.Checked = MidsContext.Config.ShowSlotLevels;
this.tsIODefault.Text = "Default (" + (MidsContext.Config.I9.DefaultIOLevel + 1) + ")";
this.SetDamageMenuCheckMarks();
@@ -298,7 +294,7 @@ void frmMain_Load(object sender, EventArgs e)
this.tsViewSlotLevels.Checked = MidsContext.Config.ShowSlotLevels;
this.ibSlotLevels.Checked = MidsContext.Config.ShowSlotLevels;
this.tsViewRelative.Checked = MidsContext.Config.ShowEnhRel;
- this.ibPopup.Checked = MidsContext.Config.ShowPopup;
+ this.ibPopup.Checked = !MidsContext.Config.DisableShowPopup;
this.ibRecipe.Checked = MidsContext.Config.PopupRecipes;
string rtfRelPath = Path.Combine(Files.FPathAppData, Files.PatchRtf);
if (File.Exists(rtfRelPath))
@@ -327,7 +323,7 @@ void frmMain_Load(object sender, EventArgs e)
}
}
- if (!loadedFromArgs && MidsContext.Config.LoadLastFileOnStart && !this.DoOpen(MidsContext.Config.LastFileName))
+ if (!loadedFromArgs && !MidsContext.Config.DisableLoadLastFileOnStart && !this.DoOpen(MidsContext.Config.LastFileName))
this.PowerModified(markModified: true);
if (MidsContext.Config.MasterMode)
{
@@ -352,32 +348,8 @@ void frmMain_Load(object sender, EventArgs e)
this.PriSec_ExpandChanged(true);
if (!this.IsInDesignMode())
{
- if (chkResult == clsXMLUpdate.eCheckResponse.FailedWithMessage && !string.IsNullOrEmpty(chkResultFailMsg))
- {
- if (MessageBox.Show(chkResultFailMsg + "\r\nCheck again at next startup?", "Update check failed", MessageBoxButtons.YesNo, MessageBoxIcon.Error) == DialogResult.No)
- {
- MidsContext.Config.CheckForUpdates = false;
- }
- }
- else if (chkResult == clsXMLUpdate.eCheckResponse.Updates)
- {
- MessageBox.Show("Update available");
- }
- var exePath = typeof(frmMain).Assembly.Location;
- if (!MidsContext.Config.DoNotUpdateFileAssociation && !FileAssocation.GetIsAssociated(exePath))
- {
- if (MessageBox.Show("Associate .mhd and .mxd files with this application?", "File Assocation Setup", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- var associationResult = FileAssocation.AddToOpenWithLists(exePath);
- if (associationResult == FileAssocation.AddToOpenResult.Unauthorized)
- {
- if (MessageBox.Show("Unable to associate application with build files, turn off future attempts?", "Assocation Failure", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- MidsContext.Config.DoNotUpdateFileAssociation = true;
- }
- }
- }
- }
+ if (MidsContext.Config.CheckForUpdates)
+ TryUpdate();
}
}
catch (Exception ex)
@@ -550,7 +522,7 @@ void cbAT_DrawItem(object sender, DrawItemEventArgs e)
int index = ArchetypeIndirectToIndex(e.Index);
RectangleF destRect = new RectangleF(e.Bounds.X + 1, e.Bounds.Y, 16f, 16f);
RectangleF srcRect = new RectangleF(index * 16, 0.0f, 16f, 16f);
- e.Graphics.DrawImage(I9Gfx.Archetypes.Bitmap, destRect, srcRect, System.Drawing.GraphicsUnit.Pixel);
+ e.Graphics.DrawImage(I9Gfx.Archetypes.Bitmap, destRect, srcRect, GraphicsUnit.Pixel);
StringFormat format = new StringFormat(StringFormatFlags.NoWrap)
{
LineAlignment = StringAlignment.Center
@@ -636,7 +608,7 @@ void cbOrigin_DrawItem(object sender, DrawItemEventArgs e)
LineAlignment = StringAlignment.Center
};
RectangleF layoutRectangle = new RectangleF((float)e.Bounds.X + destRect.X + destRect.Width, (float)e.Bounds.Y, (float)e.Bounds.Width - (destRect.X + destRect.Width), (float)e.Bounds.Height);
- e.Graphics.DrawString(cmbOrigin[e.Index], e.Font, (Brush)solidBrush, layoutRectangle, format);
+ e.Graphics.DrawString(cmbOrigin[e.Index], e.Font, solidBrush, layoutRectangle, format);
}
e.DrawFocusRectangle();
}
@@ -1998,11 +1970,11 @@ void ibMode_ButtonClicked()
this.pbDynMode.Refresh();
}
- void ibPopup_ButtonClicked() => MidsContext.Config.ShowPopup = this.ibPopup.Checked;
+ void ibPopup_ButtonClicked() => MidsContext.Config.DisableShowPopup = !this.ibPopup.Checked;
void ibPvX_ButtonClicked()
{
- MidsContext.Config.Inc.PvE = !this.ibPvX.Checked;
+ MidsContext.Config.Inc.DisablePvE = this.ibPvX.Checked;
this.RefreshInfo();
}
@@ -2731,13 +2703,14 @@ void pnlGFX_MouseUp(object sender, MouseEventArgs e)
// adding a slot by itself doesn't really change the build substantially without an enh going into it
this.PowerModified(markModified: false);
this.LastClickPlacedSlot = true;
- MidsContext.Config.Tips.Show(Tips.TipType.FirstEnh);
+ /* Disabled until can find why it is not saving
+ MidsContext.Config.Tips.Show(Tips.TipType.FirstEnh);*/
return;
}
this.LastClickPlacedSlot = false;
}
}
- if (e.Button == MouseButtons.Middle & slotID > -1 & MidsContext.Config.ReapeatOnMiddleClick)
+ if (e.Button == MouseButtons.Middle & slotID > -1 & !MidsContext.Config.DisableRepeatOnMiddleClick)
{
this.EnhancingSlot = slotID;
this.EnhancingPower = hIDPower;
@@ -2756,7 +2729,7 @@ void pnlGFX_MouseUp(object sender, MouseEventArgs e)
this.I9Picker.SetData(-1, ref MidsContext.Character.CurrentBuild.Powers[hIDPower].Slots[slotID].Enhancement, ref this.drawing, enhancements);
- var point = new System.Drawing.Point((int)Math.Round((double)(this.pnlGFXFlow.Left - this.pnlGFXFlow.HorizontalScroll.Value + e.X) - (double)this.I9Picker.Width / 2.0), (int)Math.Round((double)(this.pnlGFXFlow.Top - this.pnlGFXFlow.VerticalScroll.Value + e.Y) - (double)this.I9Picker.Height / 2.0));
+ var point = new System.Drawing.Point((int)Math.Round(this.pnlGFXFlow.Left - this.pnlGFXFlow.HorizontalScroll.Value + e.X - I9Picker.Width / 2.0), (int)Math.Round(this.pnlGFXFlow.Top - this.pnlGFXFlow.VerticalScroll.Value + e.Y - I9Picker.Height / 2.0));
if (point.Y < this.MenuBar.Height)
point.Y = this.MenuBar.Height;
Size clientSize;
@@ -2830,50 +2803,60 @@ internal void PowerModified(bool markModified)
this.pbDynMode.Refresh();
}
- int PowerMove(PowerEntry[] tp, params int[] pow)
+ bool? CheckInitDdsaValue(int index, int? defaultOpt, string descript, params string[] options)
{
- if (tp[pow[0]].NIDPower != -1 && DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 > tp[pow[1]].Level)
+ if (this.dragdropScenarioAction[index] != 0) return null;
+ var (result, remember) = frmOptionListDlg.ShowWithOptions(AllowRemember: true, DefaultOption: defaultOpt ?? 1, descript, options);
+ this.dragdropScenarioAction[index] = (short)result;
+ if (remember == true)
+ MidsContext.Config.DragDropScenarioAction[index] = this.dragdropScenarioAction[index];
+ return remember;
+ }
+
+ int PowerMove(PowerEntry[] tp, int start, int finish)
+ {
+ if (tp[start].NIDPower != -1 && DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 > tp[finish].Level)
{
- if (this.ddsa[0] == (short)0)
+ if (this.dragdropScenarioAction[0] == 0)
{
- var canOverride = DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 == tp[pow[0]].Level;
+ var canOverride = DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 == tp[start].Level;
var (result, remember) = canOverride ? frmOptionListDlg.ShowWithOptions(true, 0, "Power is moved or swapped too low", "Allow power to be moved anyway (mark as invalid)") : frmOptionListDlg.ShowWithOptions(true, 1, "Power is moved or swapped too low", "Move/swap power to its lowest possible level", "Allow power to be moved anyway (mark as invalid)");
- this.ddsa[0] = (short)result;
+ this.dragdropScenarioAction[0] = (short)result;
if (canOverride)
{
- if (this.ddsa[0] == 2)
- this.ddsa[0] = 3;
+ if (this.dragdropScenarioAction[0] == 2)
+ this.dragdropScenarioAction[0] = 3;
}
if (remember == true)
- MidsContext.Config.DragDropScenarioAction[0] = this.ddsa[0];
+ MidsContext.Config.DragDropScenarioAction[0] = this.dragdropScenarioAction[0];
}
- if (this.ddsa[0] == 1)
+ if (this.dragdropScenarioAction[0] == 1)
return 0;
- if (this.ddsa[0] == 2)
+ if (this.dragdropScenarioAction[0] == 2)
{
- if (DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 == tp[pow[0]].Level)
+ if (DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 == tp[start].Level)
{
MessageBox.Show("You have chosen to always swap a power with its minimum level when attempting to move it too low, but the power you are trying to swap is already at its minimum level. Visit the Drag & Drop tab of the configuration window to change this setting.", null, MessageBoxButtons.OK);
return 0;
}
- int num1 = DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1;
+ int lvl = DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1;
int index = 0;
- while (tp[index].Level != num1)
+ while (tp[index].Level != lvl)
{
++index;
if (index > 23)
- return this.PowerMove(tp, pow[0], num1);
+ return this.PowerMove(tp, start, lvl);
}
}
}
- bool flag1 = pow[0] < pow[1];
+ bool flag1 = start < finish;
bool[] flagArray = new bool[tp.Length - 1 + 1];
if (flag1)
{
- flagArray[pow[0]] = true;
- int level = tp[pow[0]].Level;
- int num = pow[1];
- for (int index = pow[0] + 1; index <= num; ++index)
+ flagArray[start] = true;
+ int level = tp[start].Level;
+ int num = finish;
+ for (int index = start + 1; index <= num; ++index)
{
if (tp[index].NIDPower < 0)
{
@@ -2891,54 +2874,49 @@ int PowerMove(PowerEntry[] tp, params int[] pow)
flagArray[index] = false;
}
}
- if (flag1 & !flagArray[pow[1]])
+ if (flag1 & !flagArray[finish])
{
- if (this.ddsa[1] == (short)0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "Power is moved too high (some powers will no longer fit)", "Move to the last power slot that can be shifted");
- this.ddsa[1] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[1] = this.ddsa[1];
- }
- if (this.ddsa[1] == 1)
+
+ CheckInitDdsaValue(1, null, "Power is moved too high (some powers will no longer fit)", "Move to the last power slot that can be shifted");
+ if (this.dragdropScenarioAction[1] == 1)
return 0;
- if (this.ddsa[1] == 2)
+ if (this.dragdropScenarioAction[1] == 2)
{
- int num1 = pow[0] + 1;
+ int num1 = start + 1;
int index;
- for (index = pow[1]; index >= num1; index += -1)
+ for (index = finish; index >= num1; index += -1)
{
if (flagArray[index])
{
- pow[1] = index;
+ finish = index;
break;
}
}
- if (pow[1] != index)
+ if (finish != index)
{
MessageBox.Show("None of the powers can be shifted, so the power was not moved.", null, MessageBoxButtons.OK);
return 0;
}
}
}
- PowerEntry powerEntry = tp[pow[0]].NIDPower != -1 ? new PowerEntry(DatabaseAPI.Database.Power[tp[pow[0]].NIDPower]) : new PowerEntry(-1, null, false);
- powerEntry.Slots = (SlotEntry[])tp[pow[0]].Slots.Clone();
- powerEntry.Level = tp[pow[0]].Level;
- this.clearPower(tp, pow[0]);
+ PowerEntry powerEntry = tp[start].NIDPower != -1 ? new PowerEntry(DatabaseAPI.Database.Power[tp[start].NIDPower]) : new PowerEntry(-1, null, false);
+ powerEntry.Slots = (SlotEntry[])tp[start].Slots.Clone();
+ powerEntry.Level = tp[start].Level;
+ this.clearPower(tp, start);
bool flag2 = false;
int num3;
int num4;
int num5;
if (flag1)
{
- num3 = pow[1];
- num4 = pow[0] + 1;
+ num3 = finish;
+ num4 = start + 1;
num5 = -1;
}
else
{
- num3 = pow[0] + 1;
- num4 = pow[1];
+ num3 = start + 1;
+ num4 = finish;
num5 = 1;
}
int num6 = num4;
@@ -2947,21 +2925,14 @@ int PowerMove(PowerEntry[] tp, params int[] pow)
{
if (tp[index].NIDPower != -1 && flag1 && !flagArray[index])
{
- if (this.ddsa[7] == 0)
- {
- var frmOptionListDlg = new frmOptionListDlg();
- frmOptionListDlg.ShowWithOptions(true, 1, "Power being shifted down cannot shift to the necessary level", "Shift other powers around it", "Overwrite it; leave previous power slot empty", "Allow anyway (mark as invalid)");
- this.ddsa[7] = (short)frmOptionListDlg.DialogResult;
- if (frmOptionListDlg.remember == true)
- MidsContext.Config.DragDropScenarioAction[7] = this.ddsa[7];
- }
- if (this.ddsa[7] == 1)
+ CheckInitDdsaValue(7, null, "Power being shifted down cannot shift to the necessary level", "Shift other powers around it", "Overwrite it; leave previous power slot empty", "Allow anyway (mark as invalid)");
+ if (this.dragdropScenarioAction[7] == 1)
return 0;
- if (this.ddsa[7] == 3)
+ if (this.dragdropScenarioAction[7] == 3)
{
if (!flag2)
{
- pow[0] = index;
+ start = index;
break;
}
break;
@@ -2969,32 +2940,25 @@ int PowerMove(PowerEntry[] tp, params int[] pow)
}
if (!flag2 & tp[index].NIDPower < 0)
{
- if (this.ddsa[10] == 0)
- {
- var frmOptionListDlg = new frmOptionListDlg();
- frmOptionListDlg.ShowWithOptions(true, 1, "There is a gap in a group of powers that are being shifted", "Fill empty slot; don't move powers unnecessarily", "Shift empty slot as if it were a power");
- this.ddsa[10] = (short)frmOptionListDlg.DialogResult;
- if (frmOptionListDlg.remember == true)
- MidsContext.Config.DragDropScenarioAction[10] = this.ddsa[10];
- }
- if (this.ddsa[10] == 1)
+ CheckInitDdsaValue(10, null, "There is a gap in a group of powers that are being shifted", "Fill empty slot; don't move powers unnecessarily", "Shift empty slot as if it were a power");
+ if (this.dragdropScenarioAction[10] == 1)
return 0;
- if (this.ddsa[10] == 2)
+ if (this.dragdropScenarioAction[10] == 2)
{
- if (tp[pow[1]].NIDPower < 0)
+ if (tp[finish].NIDPower < 0)
{
- powerEntry.Level = tp[pow[0]].Level;
- tp[pow[0]] = powerEntry;
- return this.PowerSwap(1, ref tp, pow[0], pow[1]) == 0 ? 0 : -1;
+ powerEntry.Level = tp[start].Level;
+ tp[start] = powerEntry;
+ return this.PowerSwap(1, ref tp, start, finish) == 0 ? 0 : -1;
}
- pow[0] = index;
+ start = index;
}
flag2 = true;
}
}
- int index1 = pow[0];
+ int index1 = start;
int num8 = !flag1 ? index1 - 1 : index1 + 1;
- while (num8 != pow[1])
+ while (num8 != finish)
{
switch (this.PowerSwap(2, ref tp, index1, num8))
{
@@ -3025,36 +2989,31 @@ int PowerMove(PowerEntry[] tp, params int[] pow)
}
powerEntry.Level = tp[index1].Level;
tp[index1] = powerEntry;
- int num10;
switch (this.PowerSwap(1, ref tp, index1, num8))
{
case 0:
- num10 = 0;
- break;
+ return 0;
case 3:
this.PowerSwapByUser(this.dragStartPower, this.dragFinishPower);
- num10 = 0;
- break;
+ return 0;
default:
- num10 = -1;
- break;
+ return -1;
}
- return num10;
}
- void PowerMoveByUser(params int[] pow)
+ void PowerMoveByUser(int dragStart, int dragFinish)
{
- if (pow[0] < 0 || pow[0] > 23 || pow[1] < 0 || pow[1] > 23 || pow[0] == pow[1])
+ if (dragStart < 0 || dragStart > 23 || dragFinish < 0 || dragFinish > 23 || dragStart == dragFinish)
return;
int index = 0;
do
{
- this.ddsa[index] = MidsContext.Config.DragDropScenarioAction[index];
+ this.dragdropScenarioAction[index] = MidsContext.Config.DragDropScenarioAction[index];
++index;
}
while (index <= 19);
PowerEntry[] powerEntryArray = frmMain.DeepCopyPowerList();
- if (this.PowerMove(powerEntryArray, pow) != 0)
+ if (this.PowerMove(powerEntryArray, dragStart, dragFinish) != 0)
{
this.ShallowCopyPowerList(powerEntryArray);
this.PowerModified(markModified: true);
@@ -3066,334 +3025,281 @@ void PowerPicked(Enums.PowersetType SetID, int nIDPower)
{
MainModule.MidsController.Toon.BuildPower(MidsContext.Character.Powersets[(int)SetID].nID, nIDPower, false);
this.PowerModified(markModified: true);
- MidsContext.Config.Tips.Show(Tips.TipType.FirstPower);
+ /* Disabled
+ * MidsContext.Config.Tips.Show(Tips.TipType.FirstPower);
+ */
}
void PowerPicked(int nIDPowerset, int nIDPower)
{
MainModule.MidsController.Toon.BuildPower(nIDPowerset, nIDPower, false);
this.PowerModified(markModified: true);
- MidsContext.Config.Tips.Show(Tips.TipType.FirstPower);
+ /* Disabled
+ * MidsContext.Config.Tips.Show(Tips.TipType.FirstPower);
+ */
this.DoRedraw();
}
- int PowerSwap(int mode, ref PowerEntry[] tp, params int[] pow)
+ int PowerSwap(int mode, ref PowerEntry[] tp, int start, int finish)
{
int num1;
- if (pow[0] < 0 || pow[0] > 23 || pow[1] < 0 || pow[1] > 23 || pow[0] == pow[1])
- {
- num1 = 0;
- }
- else
+ if (start < 0 || start > 23 || finish < 0 || finish > 23 || start == finish)
+ return 0;
+
+ if (tp[start].NIDPower == -1 || DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 <= tp[finish].Level)
{
- if (tp[pow[0]].NIDPower == -1 || DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 <= tp[pow[1]].Level)
+ if (tp[finish].NIDPower != -1 && DatabaseAPI.Database.Power[tp[finish].NIDPower].Level - 1 > tp[start].Level)
{
- if (tp[pow[1]].NIDPower != -1 && DatabaseAPI.Database.Power[tp[pow[1]].NIDPower].Level - 1 > tp[pow[0]].Level)
+ switch (mode)
{
- int num2;
- switch (mode)
- {
- case 0:
- if (this.ddsa[4] == 0)
- {
- var frmOptionListDlg = new frmOptionListDlg();
- frmOptionListDlg.ShowWithOptions(true, 1, "Power being replaced is swapped too low", "Overwrite rather than swap", "Allow power to be swapped anyway (mark as invalid)");
- this.ddsa[4] = (short)frmOptionListDlg.DialogResult;
- if (frmOptionListDlg.remember == true)
- MidsContext.Config.DragDropScenarioAction[4] = this.ddsa[4];
- }
- if (this.ddsa[4] == 1)
- return 0;
- if (this.ddsa[4] == 2)
- {
- tp[pow[1]].NIDPower = -1;
- tp[pow[1]].NIDPowerset = -1;
- tp[pow[1]].IDXPower = -1;
- tp[pow[1]].StatInclude = false;
- tp[pow[1]].VariableValue = 0;
- tp[pow[1]].Slots = new SlotEntry[0];
- goto label_18;
- }
- else if (this.ddsa[4] != 3)
- goto label_18;
- else
- goto label_18;
- case 2:
- num2 = this.ddsa[7] != 2 ? 1 : 0;
- break;
- default:
- num2 = 1;
- break;
- }
- if (num2 == 0)
- return 1;
- label_18:;
+ case 0:
+ CheckInitDdsaValue(4, null, "Power being replaced is swapped too low", "Overwrite rather than swap", "Allow power to be swapped anyway (mark as invalid)");
+ if (this.dragdropScenarioAction[4] == 1) return 0;
+ if (this.dragdropScenarioAction[4] == 2)
+ {
+ tp[finish].NIDPower = -1;
+ tp[finish].NIDPowerset = -1;
+ tp[finish].IDXPower = -1;
+ tp[finish].StatInclude = false;
+ tp[finish].VariableValue = 0;
+ tp[finish].Slots = new SlotEntry[0];
+ }
+ break;
+ case 2:
+ if (this.dragdropScenarioAction[7] == 2)
+ return 1;
+ break;
+ default:
+ break;
}
}
- else if (mode == 0)
+ }
+ else if (mode == 0)
+ {
+ if (this.dragdropScenarioAction[0] == 0)
{
- if (this.ddsa[0] == 0)
+ if (DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 == tp[start].Level)
{
- var frmOptionListDlg = new frmOptionListDlg();
- if (DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 == tp[pow[0]].Level)
+ var remember = CheckInitDdsaValue(0, null, "Power is moved or swapped too low", "Allow power to be moved anyway (mark as invalid)");
+ if (this.dragdropScenarioAction[0] == 2)
{
- frmOptionListDlg.ShowWithOptions(true, 0, "Power is moved or swapped too low", "Allow power to be moved anyway (mark as invalid)");
- this.ddsa[0] = (short)frmOptionListDlg.DialogResult;
- if (this.ddsa[0] == 2)
- this.ddsa[0] = 3;
- }
- else
- {
- frmOptionListDlg.ShowWithOptions(true, 1, "Power is moved or swapped too low", "Move/swap power to its lowest possible level", "Allow power to be moved anyway (mark as invalid)");
- this.ddsa[0] = (short)frmOptionListDlg.DialogResult;
- }
- if (frmOptionListDlg.remember == true)
- MidsContext.Config.DragDropScenarioAction[0] = this.ddsa[0];
- }
- if (this.ddsa[0] == 1)
- return 0;
- if (this.ddsa[0] == 2)
- {
- if (DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1 == tp[pow[0]].Level)
- {
- MessageBox.Show("You have chosen to always swap a power with its minimum level when attempting to swap it too low, but the power you are trying to swap is already at its minimum level. Visit the Drag & Drop tab of the configuration window to change this setting.", null, MessageBoxButtons.OK);
- return 0;
- }
- int num3 = DatabaseAPI.Database.Power[tp[pow[0]].NIDPower].Level - 1;
- int index = 0;
- while (tp[index].Level != num3)
- {
- ++index;
- if (index > 23)
- return this.PowerSwap(mode, ref tp, pow[0], num3);
+ this.dragdropScenarioAction[0] = 3;
+ if (remember == true)
+ MidsContext.Config.DragDropScenarioAction[0] = this.dragdropScenarioAction[0];
}
- int num4 = index;
- return this.PowerSwap(mode, ref tp, pow[0], num4);
}
+ else
+ CheckInitDdsaValue(0, 0, "Power is moved or swapped too low", "Move/swap power to its lowest possible level", "Allow power to be moved anyway (mark as invalid)");
}
- if (mode == 1 || mode == 2 && tp[pow[1]].NIDPower != -1 && DatabaseAPI.Database.Power[tp[pow[1]].NIDPower].Level - 1 == tp[pow[1]].Level)
+ if (this.dragdropScenarioAction[0] == 1)
+ return 0;
+
+ if (this.dragdropScenarioAction[0] == 2)
{
- if (mode == 1)
+ if (DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1 == tp[start].Level)
{
- if (this.ddsa[12] == 0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "The power in the destination slot is prevented from being shifted up", "Unlock and shift all level-locked powers", "Shift destination power to the first valid and empty slot", "Swap instead of move");
- this.ddsa[12] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[12] = this.ddsa[12];
- }
- if (this.ddsa[12] == 1)
- return 0;
- if (this.ddsa[12] == 2)
- {
- this.ddsa[11] = 2;
- return 2;
- }
- if (this.ddsa[12] != 3 && this.ddsa[12] == 4)
- return 3;
+ MessageBox.Show("You have chosen to always swap a power with its minimum level when attempting to swap it too low, but the power you are trying to swap is already at its minimum level. Visit the Drag & Drop tab of the configuration window to change this setting.", null, MessageBoxButtons.OK);
+ return 0;
}
- else if (mode == 2)
+ int lvl = DatabaseAPI.Database.Power[tp[start].NIDPower].Level - 1;
+ int index = 0;
+ while (tp[index].Level != lvl)
{
- if (this.ddsa[11] == 0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "A power placed at its minimum level is being shifted up", "Shift it along with the other powers", "Shift other powers around it");
- this.ddsa[11] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[11] = this.ddsa[11];
- }
- if (this.ddsa[11] == 1)
- return 0;
- if (this.ddsa[11] != 2 && this.ddsa[11] == 3)
- return 1;
+ ++index;
+ if (index > 23)
+ return this.PowerSwap(mode, ref tp, start, lvl);
}
+ int num4 = index;
+ return this.PowerSwap(mode, ref tp, start, num4);
}
- int num5 = tp[22].SlotCount + tp[23].SlotCount;
- int num6 = -1;
- if (pow[0] == 22 && pow[1] < 22 && num5 <= 8 && tp[pow[1]].SlotCount + tp[23].SlotCount > 8 || pow[0] == 23 && pow[1] < 22 && tp[pow[0]].SlotCount <= 4 && tp[pow[1]].SlotCount > 4 || pow[0] == 23 && pow[1] < 22 && num5 <= 8 && tp[22].SlotCount + tp[pow[1]].SlotCount > 8 || pow[0] == 23 && pow[1] == 22 && tp[pow[1]].SlotCount > 4)
+ }
+ if (mode == 1 || mode == 2 && tp[finish].NIDPower != -1 && DatabaseAPI.Database.Power[tp[finish].NIDPower].Level - 1 == tp[finish].Level)
+ {
+ if (mode == 1)
{
- if (mode < 2 & this.ddsa[6] == 0)
+ CheckInitDdsaValue(12, null, "The power in the destination slot is prevented from being shifted up", "Unlock and shift all level-locked powers", "Shift destination power to the first valid and empty slot", "Swap instead of move");
+ if (this.dragdropScenarioAction[12] == 1)
+ return 0;
+ if (this.dragdropScenarioAction[12] == 2)
{
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "Power being replaced is swapped too high to have # slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
- this.ddsa[6] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[6] = this.ddsa[6];
+ this.dragdropScenarioAction[11] = 2;
+ return 2;
}
- num6 = 6;
+ if (this.dragdropScenarioAction[12] != 3 && this.dragdropScenarioAction[12] == 4)
+ return 3;
}
- else if (pow[0] < 22 & pow[1] == 22 & num5 <= 8 & tp[pow[0]].SlotCount + tp[23].SlotCount > 8 || pow[0] < 22 & pow[1] == 23 & tp[pow[1]].SlotCount <= 4 & tp[pow[0]].SlotCount > 4 || pow[0] < 22 & pow[1] == 23 & num5 <= 8 & tp[22].SlotCount + tp[pow[0]].SlotCount > 8 || pow[0] == 22 & pow[1] == 23 & tp[pow[0]].SlotCount > 4)
+ else if (mode == 2)
{
- if (mode < 2 & this.ddsa[3] == 0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "Power is moved or swapped too high to have # slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
- this.ddsa[3] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[3] = this.ddsa[3];
- }
- num6 = 3;
+ CheckInitDdsaValue(11, null, "A power placed at its minimum level is being shifted up", "Shift it along with the other powers", "Shift other powers around it");
+ if (this.dragdropScenarioAction[11] == 1)
+ return 0;
+ if (this.dragdropScenarioAction[11] != 2 && this.dragdropScenarioAction[11] == 3)
+ return 1;
}
- if (num6 != -1 && mode == 2)
+ }
+ int num5 = tp[22].SlotCount + tp[23].SlotCount;
+ int num6 = -1;
+ if (start == 22 && finish < 22 && num5 <= 8 && tp[finish].SlotCount + tp[23].SlotCount > 8 || start == 23 && finish < 22 && tp[start].SlotCount <= 4 && tp[finish].SlotCount > 4 || start == 23 && finish < 22 && num5 <= 8 && tp[22].SlotCount + tp[finish].SlotCount > 8 || start == 23 && finish == 22 && tp[finish].SlotCount > 4)
+ {
+ if (mode < 2)
+ CheckInitDdsaValue(6, null, "Power being replaced is swapped too high to have # slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
+ num6 = 6;
+ }
+ else if (start < 22 & finish == 22 & num5 <= 8 & tp[start].SlotCount + tp[23].SlotCount > 8 || start < 22 & finish == 23 & tp[finish].SlotCount <= 4 & tp[start].SlotCount > 4 || start < 22 & finish == 23 & num5 <= 8 & tp[22].SlotCount + tp[start].SlotCount > 8 || start == 22 & finish == 23 & tp[start].SlotCount > 4)
+ {
+ if (mode < 2)
+ CheckInitDdsaValue(3, null, "Power is moved or swapped too high to have # slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
+ num6 = 3;
+ }
+ if (num6 != -1 && mode == 2)
+ {
+ CheckInitDdsaValue(9, null, "Power being shifted up has impossible # of slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
+ num6 = 9;
+ }
+ if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[6] == 1 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[3] == 1 ? 1 : 0)) != 0 || num6 == 9 && this.dragdropScenarioAction[9] == 1)
+ {
+ num1 = 0;
+ }
+ else
+ {
+ if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[6] == 2 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[3] == 2 ? 1 : 0)) != 0 || num6 == 9 && this.dragdropScenarioAction[9] == 2)
{
- if (this.ddsa[9] == 0)
+ int index;
+ int num2;
+ if (start > finish)
{
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 1, "Power being shifted up has impossible # of slots", "Remove impossible slots", "Allow anyway (Mark slots as invalid)");
- this.ddsa[9] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[9] = this.ddsa[9];
+ index = finish;
+ num2 = start;
}
- num6 = 9;
- }
- if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[6] == (short)1 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[3] == (short)1 ? 1 : 0)) != 0 || num6 == 9 && this.ddsa[9] == (short)1)
- {
- num1 = 0;
+ else
+ {
+ index = start;
+ num2 = finish;
+ }
+ //int integer1 = Conversions.ToInteger(Interaction.IIf(num2 == 22, index, RuntimeHelpers.GetObjectValue(Interaction.IIf(index == 22, num2, 22))));
+ int integer1 = num2 == 22 ? index : index == 22 ? num2 : 22;
+ int integer2 = num2 == 23 ? index : 23;
+ while (tp[integer1].SlotCount + tp[integer2].SlotCount > 8 || tp[index].SlotCount > 4 && integer2 != 23)
+ tp[index].Slots = tp[index].Slots.RemoveLast(); // (SlotEntry[])Utils.CopyArray(tp[index].Slots, (Array)new SlotEntry[tp[index].SlotCount - 2 + 1]);
}
- else
+ else if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[6] == (short)3 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.dragdropScenarioAction[3] == (short)3 ? 1 : 0)) != 0 || num6 == 9 && this.dragdropScenarioAction[9] == (short)3)
{
- if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[6] == 2 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[3] == 2 ? 1 : 0)) != 0 || num6 == 9 && this.ddsa[9] == 2)
+ int index1 = start <= finish ? start : finish;
+ if (start == 23 | finish == 23)
{
- int index;
- int num2;
- if (pow[0] > pow[1])
+ for (int index2 = tp[index1].SlotCount - 1; index2 >= 1; index2 += -1)
{
- index = pow[1];
- num2 = pow[0];
+ if (index2 + tp[22].SlotCount > 7 | index2 > 3)
+ tp[index1].Slots[index2].Level = 50;
}
- else
- {
- index = pow[0];
- num2 = pow[1];
- }
- //int integer1 = Conversions.ToInteger(Interaction.IIf(num2 == 22, index, RuntimeHelpers.GetObjectValue(Interaction.IIf(index == 22, num2, 22))));
- int integer1 = num2 == 22 ? index : index == 22 ? num2 : 22;
- int integer2 = num2 == 23 ? index : 23;
- while (tp[integer1].SlotCount + tp[integer2].SlotCount > 8 || tp[index].SlotCount > 4 && integer2 != 23)
- tp[index].Slots = tp[index].Slots.RemoveLast(); // (SlotEntry[])Utils.CopyArray(tp[index].Slots, (Array)new SlotEntry[tp[index].SlotCount - 2 + 1]);
}
- else if (((num6 != 6 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[6] == (short)3 ? 1 : 0)) != 0 || ((num6 != 3 ? 0 : (mode < 2 ? 1 : 0)) & (this.ddsa[3] == (short)3 ? 1 : 0)) != 0 || num6 == 9 && this.ddsa[9] == (short)3)
+ else
{
- int index1 = pow[0] <= pow[1] ? pow[0] : pow[1];
- if (pow[0] == 23 | pow[1] == 23)
- {
- for (int index2 = tp[index1].SlotCount - 1; index2 >= 1; index2 += -1)
- {
- if (index2 + tp[22].SlotCount > 7 | index2 > 3)
- tp[index1].Slots[index2].Level = 50;
- }
- }
- else
+ for (int index2 = tp[index1].SlotCount - 1; index2 >= 1; index2 += -1)
{
- for (int index2 = tp[index1].SlotCount - 1; index2 >= 1; index2 += -1)
- {
- if (index2 + tp[22].SlotCount > 7)
- tp[index1].Slots[index2].Level = 50;
- }
+ if (index2 + tp[22].SlotCount > 7)
+ tp[index1].Slots[index2].Level = 50;
}
}
- PowerEntry powerEntry = tp[pow[0]];
- tp[pow[0]] = tp[pow[1]];
- tp[pow[1]] = powerEntry;
- int level1 = tp[pow[0]].Level;
- tp[pow[0]].Level = tp[pow[1]].Level;
- tp[pow[1]].Level = level1;
- int num3 = pow[0];
- pow[0] = pow[1];
- pow[1] = num3;
- int index3 = 0;
- do
+ }
+ PowerEntry powerEntry = tp[start];
+ tp[start] = tp[finish];
+ tp[finish] = powerEntry;
+ int level1 = tp[start].Level;
+ tp[start].Level = tp[finish].Level;
+ tp[finish].Level = level1;
+ // swapping start and finish values
+ int tmpSwap = start;
+ start = finish;
+ finish = tmpSwap;
+ int index3 = 0;
+ do
+ {
+ if (tp[index3 == 0 ? start : finish].SlotCount > 0)
{
- if (tp[pow[index3]].SlotCount > 0)
+ tp[index3 == 0 ? start : finish].Slots[0].Level = tp[index3 == 0 ? start : finish].Level;
+ int num2 = tp[index3 == 0 ? start : finish].SlotCount - 1;
+ int slotIDX = 1;
+ while (true)
{
- tp[pow[index3]].Slots[0].Level = tp[pow[index3]].Level;
- int num2 = tp[pow[index3]].SlotCount - 1;
- int slotIDX = 1;
- while (true)
+ if (slotIDX <= num2 && slotIDX <= tp[index3 == 0 ? start : finish].SlotCount - 1)
{
- if (slotIDX <= num2 && slotIDX <= tp[pow[index3]].SlotCount - 1)
+ if (tp[index3 == 0 ? start : finish].Slots[slotIDX].Level < tp[index3 == 0 ? start : finish].Level)
{
- if (tp[pow[index3]].Slots[slotIDX].Level < tp[pow[index3]].Level)
+ if (mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 0)
{
- if (mode < 2 & index3 == 0 & this.ddsa[2] == (short)0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 3, "Power is moved or swapped higher than slots' levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
- this.ddsa[2] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[2] = this.ddsa[2];
- }
- else if (mode == 0 & index3 == 1 & this.ddsa[5] == (short)0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 3, "Power being replaced is swapped higher than slots' levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
- this.ddsa[5] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[5] = this.ddsa[5];
- }
- else if (mode == 2 & this.ddsa[8] == (short)0)
+ CheckInitDdsaValue(2, 3, "Power is moved or swapped higher than slots' levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
+ }
+ else if (mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 0)
+ {
+ CheckInitDdsaValue(5, 3, "Power being replaced is swapped higher than slots' levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
+ }
+ else if (mode == 2 & this.dragdropScenarioAction[8] == 0)
+ {
+ CheckInitDdsaValue(8, 3, "Power being shifted up has slots from lower levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
+ }
+ if (!(mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 1 || mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 1 || mode == 2 & this.dragdropScenarioAction[8] == 1))
+ {
+ var value = 1 - index3 == 0 ? start : finish;
+ if (mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 2 || mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 2 || mode == 2 & this.dragdropScenarioAction[8] == 2)
{
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 3, "Power being shifted up has slots from lower levels", "Remove slots", "Mark invalid slots", "Swap slot levels if valid; remove invalid ones", "Swap slot levels if valid; mark invalid ones", "Rearrange all slots in build");
- this.ddsa[8] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[8] = this.ddsa[8];
+ this.RemoveSlotFromTempList(tp[index3 == 0 ? start : finish], slotIDX);
+ --slotIDX;
}
- if (!(mode < 2 & index3 == 0 & this.ddsa[2] == 1 || mode == 0 & index3 == 1 & this.ddsa[5] == 1 || mode == 2 & this.ddsa[8] == 1))
+ else if (mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 4 || mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 4 || mode == 2 & this.dragdropScenarioAction[8] == 4)
{
- if (mode < 2 & index3 == 0 & this.ddsa[2] == 2 || mode == 0 & index3 == 1 & this.ddsa[5] == 2 || mode == 2 & this.ddsa[8] == 2)
+ if (tp[value].SlotCount > slotIDX)
{
- this.RemoveSlotFromTempList(tp[pow[index3]], slotIDX);
- --slotIDX;
+ int level2 = tp[value].Slots[slotIDX].Level;
+ tp[value].Slots[slotIDX].Level = tp[index3 == 0 ? start : finish].Slots[slotIDX].Level;
+ tp[index3 == 0 ? start : finish].Slots[slotIDX].Level = level2;
}
- else if (mode < 2 & index3 == 0 & this.ddsa[2] == 4 || mode == 0 & index3 == 1 & this.ddsa[5] == 4 || mode == 2 & this.ddsa[8] == 4)
+ else
{
- if (tp[pow[1 - index3]].SlotCount > slotIDX)
- {
- int level2 = tp[pow[1 - index3]].Slots[slotIDX].Level;
- tp[pow[1 - index3]].Slots[slotIDX].Level = tp[pow[index3]].Slots[slotIDX].Level;
- tp[pow[index3]].Slots[slotIDX].Level = level2;
- }
- else
- {
- this.RemoveSlotFromTempList(tp[pow[index3]], slotIDX);
- --slotIDX;
- }
+ this.RemoveSlotFromTempList(tp[index3 == 0 ? start : finish], slotIDX);
+ --slotIDX;
}
- else if (mode < 2 & index3 == 0 & this.ddsa[2] == 5 || mode == 0 & index3 == 1 & this.ddsa[5] == 5 || mode == 2 & this.ddsa[8] == 5)
+ }
+ else if (mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 5 || mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 5 || mode == 2 & this.dragdropScenarioAction[8] == 5)
+ {
+ if (tp[value].SlotCount > slotIDX)
{
- if (tp[pow[1 - index3]].SlotCount > slotIDX)
- {
- int level2 = tp[pow[1 - index3]].Slots[slotIDX].Level;
- tp[pow[1 - index3]].Slots[slotIDX].Level = tp[pow[index3]].Slots[slotIDX].Level;
- tp[pow[index3]].Slots[slotIDX].Level = level2;
- }
+ int level2 = tp[value].Slots[slotIDX].Level;
+ tp[value].Slots[slotIDX].Level = tp[index3 == 0 ? start : finish].Slots[slotIDX].Level;
+ tp[index3 == 0 ? start : finish].Slots[slotIDX].Level = level2;
}
- else if (mode < 2 & index3 == 0 & this.ddsa[2] == 6 || mode == 0 & index3 == 1 & this.ddsa[5] == 6 || mode == 2 & this.ddsa[8] == 6)
- this.RearrangeAllSlotsInBuild(tp, true);
}
- else
- return 0;
+ else if (mode < 2 & index3 == 0 & this.dragdropScenarioAction[2] == 6 || mode == 0 & index3 == 1 & this.dragdropScenarioAction[5] == 6 || mode == 2 & this.dragdropScenarioAction[8] == 6)
+ this.RearrangeAllSlotsInBuild(tp, true);
}
- ++slotIDX;
+ else
+ return 0;
}
- else
- break;
+ ++slotIDX;
}
+ else
+ break;
}
- ++index3;
}
- while (index3 <= 1);
- num1 = -1;
+ ++index3;
}
+ while (index3 <= 1);
+ num1 = -1;
}
return num1;
}
- void PowerSwapByUser(params int[] pow)
+ void PowerSwapByUser(int start, int finish)
{
int index = 0;
do
{
- this.ddsa[index] = MidsContext.Config.DragDropScenarioAction[index];
+ this.dragdropScenarioAction[index] = MidsContext.Config.DragDropScenarioAction[index];
++index;
}
while (index <= 19);
PowerEntry[] tp = frmMain.DeepCopyPowerList();
- if (this.PowerSwap(0, ref tp, pow) != -1)
+ if (this.PowerSwap(0, ref tp, start, finish) != -1)
return;
this.ShallowCopyPowerList(tp);
this.PowerModified(markModified: true);
@@ -3841,7 +3747,9 @@ internal void SetDataViewTab(int index)
{
this.drawing.InterfaceMode = Enums.eInterfaceMode.PowerToggle;
this.DoRedraw();
- MidsContext.Config.Tips.Show(Tips.TipType.TotalsTab);
+ /* Disabled
+ * MidsContext.Config.Tips.Show(Tips.TipType.TotalsTab);
+ */
}
else
{
@@ -4073,7 +3981,7 @@ internal void ShowAnchoredDataView()
void ShowPopup(int nIDPowerset, int nIDClass, Rectangle rBounds, string ExtraString = "")
{
- if (!MidsContext.Config.ShowPopup)
+ if (MidsContext.Config.DisableShowPopup)
{
this.HidePopup();
}
@@ -4118,7 +4026,7 @@ void ShowPopup(
I9Slot eSlot = null,
int setIDX = -1)
{
- if (!MidsContext.Config.ShowPopup)
+ if (MidsContext.Config.DisableShowPopup)
{
this.HidePopup();
}
@@ -4211,32 +4119,20 @@ void SlotLevelSwap(int sourcePower, int sourceSlot, int destPower, int destSlot)
int index = 0;
do
{
- this.ddsa[index] = MidsContext.Config.DragDropScenarioAction[index];
+ this.dragdropScenarioAction[index] = MidsContext.Config.DragDropScenarioAction[index];
++index;
}
while (index <= 19);
if (MidsContext.Character.CurrentBuild.Powers[sourcePower].Slots[sourceSlot].Level < MidsContext.Character.CurrentBuild.Powers[destPower].Level & !DatabaseAPI.Database.Power[MidsContext.Character.CurrentBuild.Powers[destPower].NIDPower].AllowFrontLoading)
{
- if (this.ddsa[13] == (short)0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 0, "Slot being level-swapped is too low for the destination power", "Allow swap anyway (mark as invalid)");
- this.ddsa[13] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[13] = this.ddsa[13];
- }
- if (this.ddsa[13] == (short)1)
+ CheckInitDdsaValue(13, 0, "Slot being level-swapped is too low for the destination power", "Allow swap anyway (mark as invalid)");
+ if (this.dragdropScenarioAction[13] == 1)
return;
}
if (MidsContext.Character.CurrentBuild.Powers[destPower].Slots[destSlot].Level < MidsContext.Character.CurrentBuild.Powers[sourcePower].Level & !DatabaseAPI.Database.Power[MidsContext.Character.CurrentBuild.Powers[sourcePower].NIDPower].AllowFrontLoading)
{
- if (this.ddsa[14] == (short)0)
- {
- var (result, remember) = frmOptionListDlg.ShowWithOptions(true, 0, "Slot being level-swapped is too low for the source power", "Allow swap anyway (mark as invalid)");
- this.ddsa[14] = (short)result;
- if (remember == true)
- MidsContext.Config.DragDropScenarioAction[14] = this.ddsa[14];
- }
- if (this.ddsa[14] == (short)1)
+ CheckInitDdsaValue(14, 0, "Slot being level-swapped is too low for the source power", "Allow swap anyway (mark as invalid)");
+ if (this.dragdropScenarioAction[14] == (short)1)
return;
}
int level = MidsContext.Character.CurrentBuild.Powers[sourcePower].Slots[sourceSlot].Level;
@@ -4246,28 +4142,21 @@ void SlotLevelSwap(int sourcePower, int sourceSlot, int destPower, int destSlot)
this.DoRedraw();
}
- internal void smlRespecLong(int iLevel, bool Mode2)
+ internal void smlRespecLong(int iLevel, bool mode2)
{
- if (Mode2)
- this.SetMiniList(MidsContext.Character.CurrentBuild.GetRespecHelper2(true, iLevel), "Respec Helper", 5096);
- else
- this.SetMiniList(MidsContext.Character.CurrentBuild.GetRespecHelper(true, iLevel), "Respec Helper", 4072);
+ this.SetMiniList(MidsContext.Character.CurrentBuild.GetRespecHelper2(true, iLevel), "Respec Helper", mode2 ? 5096 : 4072);
this.fMini.Width = 350;
this.fMini.SizeMe();
}
- internal void smlRespecShort(int iLevel, bool Mode2)
+ internal void smlRespecShort(int iLevel, bool mode2)
{
- if (Mode2)
- {
- this.SetMiniList(MidsContext.Character.CurrentBuild.GetRespecHelper2(false, iLevel), "Respec Helper", 4072);
- this.fMini.Width = 300;
- }
+ var helper = MidsContext.Character.CurrentBuild.GetRespecHelper2(false, iLevel);
+ if (mode2)
+ this.SetMiniList(helper, "Respec Helper", 4072);
else
- {
- this.SetMiniList(MidsContext.Character.CurrentBuild.GetRespecHelper(false, iLevel), "Respec Helper", 2048);
- this.fMini.Width = 250;
- }
+ this.SetMiniList(helper, "Respec Helper");
+ this.fMini.Width = mode2 ? 300 : 250;
this.fMini.SizeMe();
}
@@ -4281,7 +4170,7 @@ void StartFlip(int iPowerIndex)
MainModule.MidsController.Toon.FlipSlots(iPowerIndex);
this.RefreshInfo();
this.FlipPowerID = iPowerIndex;
- this.FlipSlotState = new int[MidsContext.Character.CurrentBuild.Powers[iPowerIndex].Slots.Length - 1 + 1];
+ this.FlipSlotState = new int[MidsContext.Character.CurrentBuild.Powers[iPowerIndex].Slots.Length];
int num = this.FlipSlotState.Length - 1;
for (int index = 0; index <= num; ++index)
this.FlipSlotState[index] = -(this.FlipStepDelay * index);
@@ -4298,7 +4187,7 @@ void StartFlip(int iPowerIndex)
void TemporaryPowersWindowToolStripMenuItem_Click(object sender, EventArgs e)
{
- this.tempPowersButton_MouseDown(RuntimeHelpers.GetObjectValue(sender), new MouseEventArgs(MouseButtons.Left, 2, 0, 0, 0));
+ this.tempPowersButton_MouseDown(sender, new MouseEventArgs(MouseButtons.Left, 2, 0, 0, 0));
this.tempPowersButton.Checked = true;
}
@@ -4310,12 +4199,7 @@ void tempPowersButton_MouseDown(object sender, MouseEventArgs e)
if (e.Clicks != 2)
return;
this.tempPowersButton.Checked = false;
- bool flag = false;
- if (this.fTemp == null)
- flag = true;
- else if (this.fTemp.IsDisposed)
- flag = true;
- if (flag)
+ if (this.fTemp == null || this.fTemp.IsDisposed)
{
IPower power = DatabaseAPI.Database.Power[DatabaseAPI.NidFromStaticIndexPower(3259)];
List iPowers = new List();
@@ -4337,67 +4221,56 @@ void tlsDPA_Click(object sender, EventArgs e)
void tmrGfx_Tick(object sender, EventArgs e)
{
- if (!this.FlipActive)
- return;
- this.doFlipStep();
+ if (this.FlipActive)
+ this.doFlipStep();
}
bool ToggleClicked(int hID, int iX, int iY)
{
Rectangle rectangle1 = new Rectangle();
- bool flag;
if (hID < 0)
- flag = false;
- else if (MidsContext.Character.CurrentBuild.Powers[hID].IDXPower < 0)
- {
- flag = false;
- }
- else
+ return false;
+ if (MidsContext.Character.CurrentBuild.Powers[hID].IDXPower < 0)
+ return false;
+ Rectangle rectangle2 = new Rectangle()
{
- Rectangle rectangle2 = new Rectangle()
- {
- Location = this.drawing.PowerPosition(MidsContext.Character.CurrentBuild.Powers[hID], -1),
- Size = this.drawing.bxPower[0].Size
- };
- rectangle1.Height = 15;
- rectangle1.Width = rectangle1.Height;
- rectangle1.Y = (int)Math.Round((double)rectangle2.Top + (double)(rectangle2.Height - rectangle1.Height) / 2.0);
- rectangle1.X = (int)Math.Round((double)rectangle2.Right - ((double)rectangle1.Width + (double)(rectangle2.Height - rectangle1.Height) / 2.0));
- flag = iX > rectangle1.X & iX < rectangle1.Right & iY > rectangle1.Top & iY < rectangle1.Bottom;
- }
- return flag;
+ Location = this.drawing.PowerPosition(MidsContext.Character.CurrentBuild.Powers[hID], -1),
+ Size = this.drawing.bxPower[0].Size
+ };
+ rectangle1.Height = 15;
+ rectangle1.Width = rectangle1.Height;
+ rectangle1.Y = (int)Math.Round(rectangle2.Top + ((rectangle2.Height - rectangle1.Height) / 2.0));
+ rectangle1.X = (int)Math.Round(rectangle2.Right - (rectangle1.Width + (rectangle2.Height - rectangle1.Height) / 2.0));
+ return iX > rectangle1.X & iX < rectangle1.Right & iY > rectangle1.Top & iY < rectangle1.Bottom;
}
void tsAdvDBEdit_Click(object sender, EventArgs e)
{
this.FloatTop(false);
- int num = (int)new frmDBEdit().ShowDialog((IWin32Window)this);
+ new frmDBEdit().ShowDialog(this);
this.FloatTop(true);
}
void tsAdvFreshInstall_Click(object sender, EventArgs e)
{
this.FloatTop(false);
- if (MidsContext.Config.FreshInstall)
+ if (!MidsContext.Config.IsInitialized)
{
- MidsContext.Config.FreshInstall = false;
+ MidsContext.Config.IsInitialized = true;
MidsContext.Config.SaveFolderChecked = true;
- int num = (int)MessageBox.Show("Fresh Install flag has been unset!", null, MessageBoxButtons.OK);
+ MessageBox.Show("Fresh Install flag has been unset!", null, MessageBoxButtons.OK);
}
else
{
- MidsContext.Config.FreshInstall = true;
+ MidsContext.Config.IsInitialized = false;
MidsContext.Config.SaveFolderChecked = false;
- int num = (int)MessageBox.Show("Fresh Install flag has been set!", null, MessageBoxButtons.OK);
+ MessageBox.Show("Fresh Install flag has been set!", null, MessageBoxButtons.OK);
}
- this.tsAdvFreshInstall.Checked = MidsContext.Config.FreshInstall;
+ this.tsAdvFreshInstall.Checked = !MidsContext.Config.IsInitialized;
this.FloatTop(true);
}
- void tsAdvResetTips_Click(object sender, EventArgs e)
- {
- MidsContext.Config.Tips = new Tips();
- }
+ void tsAdvResetTips_Click(object sender, EventArgs e) => MidsContext.Config.Tips = new Tips();
void tsBug_Click(object sender, EventArgs e)
{
@@ -4419,11 +4292,9 @@ void tsClearAllEnh_Click(object sender, EventArgs e)
this.FloatTop(false);
if (MessageBox.Show("Really clear all slotted enhancements?\r\nThis will not clear the alternate slotting, only the currently active slots.", "Are you sure?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
- int num1 = MidsContext.Character.CurrentBuild.Powers.Count - 1;
- for (int index1 = 0; index1 <= num1; ++index1)
+ for (int index1 = 0; index1 <= MidsContext.Character.CurrentBuild.Powers.Count - 1; ++index1)
{
- int num2 = MidsContext.Character.CurrentBuild.Powers[index1].Slots.Length - 1;
- for (int index2 = 0; index2 <= num2; ++index2)
+ for (int index2 = 0; index2 <= MidsContext.Character.CurrentBuild.Powers[index1].Slots.Length - 1; ++index2)
MidsContext.Character.CurrentBuild.Powers[index1].Slots[index2].Enhancement.Enh = -1;
}
this.DoRedraw();
@@ -4437,7 +4308,7 @@ void tsConfig_Click(object sender, EventArgs e)
this.FloatTop(false);
frmMain iParent = this;
frmCalcOpt frmCalcOpt = new frmCalcOpt(ref iParent);
- if (frmCalcOpt.ShowDialog((IWin32Window)this) == DialogResult.OK)
+ if (frmCalcOpt.ShowDialog(this) == DialogResult.OK)
{
this.UpdateControls(false);
this.UpdateOtherFormsFonts();
@@ -4447,10 +4318,7 @@ void tsConfig_Click(object sender, EventArgs e)
this.FloatTop(true);
}
- void tsDonate_Click(object sender, EventArgs e)
- {
- clsXMLUpdate.Donate();
- }
+ void tsDonate_Click(object sender, EventArgs e) => clsXMLUpdate.Donate();
void tsDynamic_Click(object sender, EventArgs e)
{
@@ -4461,152 +4329,74 @@ void tsDynamic_Click(object sender, EventArgs e)
this.PowerModified(markModified: false);
}
- void tsEnhToDO_Click(object sender, EventArgs e)
- {
- if (MidsContext.Character == null)
- return;
- if (MidsContext.Character.CurrentBuild.SetEnhGrades(Enums.eEnhGrade.DualO))
- this.I9Picker.UI.Initial.GradeID = Enums.eEnhGrade.DualO;
- this.info_Totals();
- this.DoRedraw();
- }
-
- void tsEnhToEven_Click(object sender, EventArgs e)
+ void OnRelativeClick(Enums.eEnhRelative newVal)
{
if (MainModule.MidsController.Toon == null)
return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.Even;
if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
this.I9Picker.UI.Initial.RelLevel = newVal;
this.info_Totals();
this.DoRedraw();
}
+ void tsEnhToEven_Click(object sender, EventArgs e)
+ => OnRelativeClick(Enums.eEnhRelative.Even);
+
void tsEnhToMinus1_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.MinusOne;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.MinusOne);
void tsEnhToMinus2_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.MinusTwo;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.MinusTwo);
void tsEnhToMinus3_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.MinusThree;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.MinusThree);
void tsEnhToNone_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.None;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.None);
void tsEnhToPlus1_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.PlusOne;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.PlusOne);
void tsEnhToPlus2_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.PlusTwo;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.PlusTwo);
void tsEnhToPlus3_Click(object sender, EventArgs e)
- {
- if (MidsContext.Character == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.PlusThree;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.PlusThree);
void tsEnhToPlus4_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.PlusFour;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.PlusFour);
void tsEnhToPlus5_Click(object sender, EventArgs e)
- {
- if (MainModule.MidsController.Toon == null)
- return;
- Enums.eEnhRelative newVal = Enums.eEnhRelative.PlusFive;
- if (MidsContext.Character.CurrentBuild.SetEnhRelativelevels(newVal))
- this.I9Picker.UI.Initial.RelLevel = newVal;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnRelativeClick(Enums.eEnhRelative.PlusFive);
- void tsEnhToSO_Click(object sender, EventArgs e)
+ void OnGradePick(Enums.eEnhGrade grade)
{
if (MidsContext.Character == null)
return;
- if (MidsContext.Character.CurrentBuild.SetEnhGrades(Enums.eEnhGrade.SingleO))
- this.I9Picker.UI.Initial.GradeID = Enums.eEnhGrade.SingleO;
+ if (MidsContext.Character.CurrentBuild.SetEnhGrades(grade))
+ this.I9Picker.UI.Initial.GradeID = grade;
this.info_Totals();
this.DoRedraw();
}
+ void tsEnhToDO_Click(object sender, EventArgs e)
+ => OnGradePick(Enums.eEnhGrade.DualO);
+
+
+ void tsEnhToSO_Click(object sender, EventArgs e)
+ => OnGradePick(Enums.eEnhGrade.SingleO);
+
void tsEnhToTO_Click(object sender, EventArgs e)
- {
- if (MidsContext.Character == null)
- return;
- if (MidsContext.Character.CurrentBuild.SetEnhGrades(Enums.eEnhGrade.TrainingO))
- this.I9Picker.UI.Initial.GradeID = Enums.eEnhGrade.TrainingO;
- this.info_Totals();
- this.DoRedraw();
- }
+ => OnGradePick(Enums.eEnhGrade.TrainingO);
void tsExport_Click(object sender, EventArgs e)
{
this.FloatTop(false);
MidsContext.Config.LongExport = false;
- var frmForum1 = new frmForum();
- frmForum1.BackColor = this.BackColor;
+ var frmForum1 = new frmForum
+ {
+ BackColor = this.BackColor
+ };
frmForum1.IBCancel.IA = this.drawing.pImageAttributes;
frmForum1.IBCancel.ImageOff = this.drawing.bxPower[2].Bitmap;
frmForum1.IBCancel.ImageOn = this.drawing.bxPower[3].Bitmap;
@@ -4623,10 +4413,17 @@ void tsExportDataLink_Click(object sender, EventArgs e)
MessageBox.Show("The data link has been placed on the clipboard and is ready to paste.", "Export Done", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
- public void tsExportDiscord_Click(object sender, EventArgs e)
+ bool exportDiscordInProgress;
+
+ public async void tsExportDiscord_Click(object sender, EventArgs e)
{
void ShowConfigError(string field)
=> MessageBox.Show($"{field} must be filled out in configuration before discord exports will function", "Discord is not configured");
+ if (exportDiscordInProgress)
+ {
+ MessageBox.Show("Another discord export is in progress, might be stuck");
+ return;
+ }
if (string.IsNullOrWhiteSpace(MidsContext.Config.DSelServer))
{
@@ -4635,6 +4432,8 @@ void ShowConfigError(string field)
}
if (string.IsNullOrWhiteSpace(MidsContext.Config.DChannel))
{
+ // tired of typing this
+ if (System.Diagnostics.Debugger.IsAttached) MidsContext.Config.DChannel = "feature-testing";
ShowConfigError("Channel");
return;
}
@@ -4643,38 +4442,41 @@ void ShowConfigError(string field)
ShowConfigError("NickName");
return;
}
+ exportDiscordInProgress = true;
try
{
- Clshook.DiscordExport();
+ await Clshook.DiscordExport();
}
catch (Exception exception)
{
MessageBox.Show(exception.Message);
}
+ finally
+ {
+ exportDiscordInProgress = false;
+ }
}
void tsExportLong_Click(object sender, EventArgs e)
{
this.FloatTop(false);
MidsContext.Config.LongExport = true;
- frmForum frmForum1 = new frmForum();
- frmForum1.BackColor = this.BackColor;
- frmForum frmForum2 = frmForum1;
- frmForum2.IBCancel.IA = this.drawing.pImageAttributes;
- frmForum2.IBCancel.ImageOff = this.drawing.bxPower[2].Bitmap;
- frmForum2.IBCancel.ImageOn = this.drawing.bxPower[3].Bitmap;
- frmForum2.IBExport.IA = this.drawing.pImageAttributes;
- frmForum2.IBExport.ImageOff = this.drawing.bxPower[2].Bitmap;
- frmForum2.IBExport.ImageOn = this.drawing.bxPower[3].Bitmap;
- frmForum2.ShowDialog(this);
+ frmForum frmForum1 = new frmForum
+ {
+ BackColor = this.BackColor
+ };
+ frmForum1.IBCancel.IA = this.drawing.pImageAttributes;
+ frmForum1.IBCancel.ImageOff = this.drawing.bxPower[2].Bitmap;
+ frmForum1.IBCancel.ImageOn = this.drawing.bxPower[3].Bitmap;
+ frmForum1.IBExport.IA = this.drawing.pImageAttributes;
+ frmForum1.IBExport.ImageOff = this.drawing.bxPower[2].Bitmap;
+ frmForum1.IBExport.ImageOn = this.drawing.bxPower[3].Bitmap;
+ frmForum1.ShowDialog(this);
this.FloatTop(true);
MidsContext.Config.LongExport = false;
}
- void tsFileNew_Click(object sender, EventArgs e)
- {
- this.command_New();
- }
+ void tsFileNew_Click(object sender, EventArgs e) => this.command_New();
void tsFileOpen_Click(object sender, EventArgs e)
{
@@ -4723,45 +4525,24 @@ void tsHelp_Click(object sender, EventArgs e)
}
};
this.FloatTop(false);
- frmReadme.ShowDialog((IWin32Window)this);
+ frmReadme.ShowDialog(this);
this.FloatTop(true);
}
- void tsHelperLong_Click(object sender, EventArgs e)
- {
- frmMain iParent = this;
- new FrmInputLevel(ref iParent, true, false).ShowDialog((IWin32Window)this);
- }
+ void tsHelperLong_Click(object sender, EventArgs e) => new FrmInputLevel(this, true, false).ShowDialog(this);
- void tsHelperLong2_Click(object sender, EventArgs e)
- {
- frmMain iParent = this;
- int num = (int)new FrmInputLevel(ref iParent, true, true).ShowDialog((IWin32Window)this);
- }
+ void tsHelperLong2_Click(object sender, EventArgs e) => new FrmInputLevel(this, true, true).ShowDialog(this);
- void tsHelperShort_Click(object sender, EventArgs e)
- {
- frmMain iParent = this;
- int num = (int)new FrmInputLevel(ref iParent, false, false).ShowDialog((IWin32Window)this);
- }
+ void tsHelperShort_Click(object sender, EventArgs e) => new FrmInputLevel(this, false, false).ShowDialog(this);
- void tsHelperShort2_Click(object sender, EventArgs e)
- {
- frmMain iParent = this;
- int num = (int)new FrmInputLevel(ref iParent, false, true).ShowDialog((IWin32Window)this);
- }
+ void tsHelperShort2_Click(object sender, EventArgs e) => new FrmInputLevel(this, false, true).ShowDialog(this);
- void tsImport_Click(object sender, EventArgs e)
- {
- this.command_ForumImport();
- }
+ void tsImport_Click(object sender, EventArgs e) => this.command_ForumImport();
void tsIODefault_Click(object sender, EventArgs e)
{
if (MidsContext.Character.CurrentBuild.SetIOLevels(MidsContext.Config.I9.DefaultIOLevel, false, false))
this.I9Picker.LastLevel = MidsContext.Config.I9.DefaultIOLevel + 1;
- if (this.drawing == null)
- return;
this.DoRedraw();
}
@@ -4769,8 +4550,6 @@ void tsIOMax_Click(object sender, EventArgs e)
{
if (MidsContext.Character.CurrentBuild.SetIOLevels(MidsContext.Config.I9.DefaultIOLevel, false, true))
this.I9Picker.LastLevel = 50;
- if (this.drawing == null)
- return;
this.DoRedraw();
}
@@ -4778,8 +4557,6 @@ void tsIOMin_Click(object sender, EventArgs e)
{
if (MidsContext.Character.CurrentBuild.SetIOLevels(MidsContext.Config.I9.DefaultIOLevel, true, false))
this.I9Picker.LastLevel = 10;
- if (this.drawing == null)
- return;
this.DoRedraw();
}
@@ -4817,23 +4594,16 @@ void tsPatchNotes_Click(object sender, EventArgs e)
}
}
- void tsRecipeViewer_Click(object sender, EventArgs e)
- {
- this.FloatRecipe(true);
- }
+ void tsRecipeViewer_Click(object sender, EventArgs e) => this.FloatRecipe(true);
- void tsDPSCalc_Click(object sender, EventArgs e)
- {
- this.FloatDPSCalc(true);
- }
+ void tsDPSCalc_Click(object sender, EventArgs e) => this.FloatDPSCalc(true);
void tsRemoveAllSlots_Click(object sender, EventArgs e)
{
this.FloatTop(false);
if (MessageBox.Show("Really remove all slots?\r\nThis will not remove the slots granted automatically with powers, but will remove all the slots you placed manually.", "Are you sure?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
- int num = MidsContext.Character.CurrentBuild.Powers.Count - 1;
- for (int index = 0; index <= num; ++index)
+ for (int index = 0; index <= MidsContext.Character.CurrentBuild.Powers.Count - 1; ++index)
{
if (MidsContext.Character.CurrentBuild.Powers[index].SlotCount > 1)
MidsContext.Character.CurrentBuild.Powers[index].Slots = MidsContext.Character.CurrentBuild.Powers[index].Slots.Take(1).ToArray();
@@ -4856,46 +4626,103 @@ void tsForumLink(object sender, EventArgs e)
void tsPlannerLink(object sender, EventArgs e)
=> clsXMLUpdate.GoToCoHPlanner();
- [MethodImpl(MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
- void tsUpdateCheck_Click(object sender, EventArgs e)
+ private void AutoUpdater_ApplicationExitEvent()
{
- clsXMLUpdate clsXmlUpdate = new clsXMLUpdate(); //"http://repo.cohtitan.com/mids_updates/");
- var (eCheckResponse, msg) = clsXmlUpdate.UpdateCheck();
- if (eCheckResponse != clsXMLUpdate.eCheckResponse.Updates & eCheckResponse != clsXMLUpdate.eCheckResponse.FailedWithMessage)
- {
- MessageBox.Show("No Updates.", "Update Check", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- if (eCheckResponse == clsXMLUpdate.eCheckResponse.Updates)
+ Text = @"Closing application...";
+ Thread.Sleep(5000);
+ Application.Exit();
+ }
+
+ private void AutoUpdaterOnCheckForUpdateEvent(UpdateInfoEventArgs args)
+ {
+ if (args != null)
{
- if (clsXmlUpdate.RestartNeeded && MessageBox.Show("Exit Now?", "Update Downloaded", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes && !this.CloseCommand())
+ if (args.IsUpdateAvailable)
{
- Application.Exit();
- return;
+ DialogResult dialogResult;
+ if (args.Mandatory)
+ {
+ dialogResult =
+ MessageBox.Show(
+ $@"Update Detected! Version {args.CurrentVersion}. You are using version {
+ args.InstalledVersion
+ }. This is a mandatory update. Press OK to begin the update.",
+ @"Update Available",
+ MessageBoxButtons.OK,
+ MessageBoxIcon.Information);
+ }
+ else
+ {
+ dialogResult =
+ MessageBox.Show(
+ $@"Update Detected! Version {args.CurrentVersion} is available. You are using version {
+ args.InstalledVersion
+ }. Would you like to update now?", @"Update Available",
+ MessageBoxButtons.YesNo,
+ MessageBoxIcon.Information);
+ }
+
+
+ if (dialogResult.Equals(DialogResult.Yes) || dialogResult.Equals(DialogResult.OK))
+ {
+ try
+ {
+ if (AutoUpdater.DownloadUpdate())
+ {
+ Application.Exit();
+ }
+ }
+ catch (Exception exception)
+ {
+ MessageBox.Show(exception.Message, exception.GetType().ToString(), MessageBoxButtons.OK,
+ MessageBoxIcon.Error);
+ }
+ }
}
- }
- if (eCheckResponse == clsXMLUpdate.eCheckResponse.FailedWithMessage)
- {
- if (!string.IsNullOrWhiteSpace(msg))
+ else
{
- frmLoading.ShowLinkDialog("Check failed", $"{msg}, click here to open site in browser", MidsContext.DownloadUrl);
+ MessageBox.Show(@"There aren't any update(s) available at this time. Please try again later.", @"Update Unavailable",
+ MessageBoxButtons.OK, MessageBoxIcon.Information);
}
- else
+ }
+ else
+ {
+ MessageBox.Show(
+ @"There was a problem attempting to reach the update server. Please check your internet connection and try again later.",
+ @"Update Check Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+ void TryUpdate()
+ {
+ try
+ {
+ var path = ConfigData.UpdatePath;
+ if (string.IsNullOrWhiteSpace(path))
{
- frmLoading.ShowLinkDialog("Error", "Unknown error checking for updates, check failed, click here to open site in browser", MidsContext.DownloadUrl);
+ MessageBox.Show("Unable to check for updates, no update path found");
return;
}
+ // prove it is also a valid URI
+ if (Uri.TryCreate(path, UriKind.Absolute, out var _))
+ AutoUpdater.Start(path);
+ else
+ MessageBox.Show("Unable to check for updates, bad update path found : " + path);
}
- this.RefreshInfo();
+ catch (Exception ex)
+ {
+ MessageBox.Show(ex.Message);
+
+ }
+
}
- void tsView2Col_Click(object sender, EventArgs e)
- => this.setColumns(2);
+ void tsUpdateCheck_Click(object sender, EventArgs e) => TryUpdate();
- void tsView3Col_Click(object sender, EventArgs e)
- => this.setColumns(3);
+ void tsView2Col_Click(object sender, EventArgs e) => this.setColumns(2);
- void tsView4Col_Click(object sender, EventArgs e)
- => this.setColumns(4);
+ void tsView3Col_Click(object sender, EventArgs e) => this.setColumns(3);
+
+ void tsView4Col_Click(object sender, EventArgs e) => this.setColumns(4);
void tsViewActualDamage_New_Click(object sender, EventArgs e)
{
@@ -4904,8 +4731,7 @@ void tsViewActualDamage_New_Click(object sender, EventArgs e)
this.DisplayFormatChanged();
}
- void tsViewData_Click(object sender, EventArgs e)
- => this.FloatData(true);
+ void tsViewData_Click(object sender, EventArgs e) => this.FloatData(true);
void tsViewDPS_New_Click(object sender, EventArgs e)
{
@@ -4914,13 +4740,12 @@ void tsViewDPS_New_Click(object sender, EventArgs e)
this.DisplayFormatChanged();
}
- void tsViewGraphs_Click(object sender, EventArgs e)
- => this.FloatStatGraph(true);
+ void tsViewGraphs_Click(object sender, EventArgs e) => this.FloatStatGraph(true);
void tsViewIOLevels_Click(object sender, EventArgs e)
{
- MidsContext.Config.I9.DisplayIOLevels = !MidsContext.Config.I9.DisplayIOLevels;
- this.tsViewIOLevels.Checked = MidsContext.Config.I9.DisplayIOLevels;
+ MidsContext.Config.I9.HideIOLevels = !MidsContext.Config.I9.HideIOLevels;
+ this.tsViewIOLevels.Checked = !MidsContext.Config.I9.HideIOLevels;
this.DoRedraw();
}
@@ -4949,8 +4774,7 @@ void tsViewSlotLevels_Click(object sender, EventArgs e)
this.DoRedraw();
}
- void tsViewTotals_Click(object sender, EventArgs e)
- => this.FloatTotals(true);
+ void tsViewTotals_Click(object sender, EventArgs e) => this.FloatTotals(true);
void txtName_TextChanged(object sender, EventArgs e)
{
@@ -4971,86 +4795,75 @@ internal void UnSetMiniList()
void UpdateColours(bool skipDraw = false)
{
this.myDataView.DrawVillain = !MidsContext.Character.IsHero();
- bool flag;
+ bool draw;
if (this.myDataView.DrawVillain)
{
- flag = this.I9Picker.ForeColor.R != byte.MaxValue;
- this.BackColor = System.Drawing.Color.FromArgb(0, 0, 0);
- this.lblATLocked.BackColor = System.Drawing.Color.FromArgb((int)byte.MaxValue, 128, 128);
- this.I9Picker.ForeColor = System.Drawing.Color.FromArgb((int)byte.MaxValue, 0, 0);
+ draw = this.I9Picker.ForeColor.R != byte.MaxValue;
+ this.BackColor = Color.FromArgb(0, 0, 0);
+ this.lblATLocked.BackColor = Color.FromArgb((int)byte.MaxValue, 128, 128);
+ this.I9Picker.ForeColor = Color.FromArgb((int)byte.MaxValue, 0, 0);
}
else
{
- flag = this.I9Picker.ForeColor.R != (byte)96;
- this.BackColor = System.Drawing.Color.FromArgb(0, 0, 0);
- this.lblATLocked.BackColor = System.Drawing.Color.FromArgb(128, 128, (int)byte.MaxValue);
- this.I9Picker.ForeColor = System.Drawing.Color.FromArgb(96, 48, (int)byte.MaxValue);
+ draw = this.I9Picker.ForeColor.R != (byte)96;
+ this.BackColor = Color.FromArgb(0, 0, 0);
+ this.lblATLocked.BackColor = Color.FromArgb(128, 128, (int)byte.MaxValue);
+ this.I9Picker.ForeColor = Color.FromArgb(96, 48, (int)byte.MaxValue);
}
this.I9Picker.BackColor = this.BackColor;
this.I9Popup.BackColor = System.Drawing.Color.Black;
this.I9Popup.ForeColor = this.I9Picker.ForeColor;
this.myDataView.BackColor = this.BackColor;
- this.llPrimary.BackColor = this.BackColor;
- this.llSecondary.BackColor = this.BackColor;
- this.llPool0.BackColor = this.BackColor;
- this.llPool1.BackColor = this.BackColor;
- this.llPool2.BackColor = this.BackColor;
- this.llPool3.BackColor = this.BackColor;
- this.llAncillary.BackColor = this.BackColor;
- ListLabelV2 llPrimary = this.llPrimary;
- this.UpdateLLColours(ref llPrimary);
- this.llPrimary = llPrimary;
- ListLabelV2 llSecondary = this.llSecondary;
- this.UpdateLLColours(ref llSecondary);
- this.llSecondary = llSecondary;
- ListLabelV2 llAncillary = this.llAncillary;
- this.UpdateLLColours(ref llAncillary);
- this.llAncillary = llAncillary;
- ListLabelV2 llPool0 = this.llPool0;
- this.UpdateLLColours(ref llPool0);
- this.llPool0 = llPool0;
- ListLabelV2 llPool1 = this.llPool1;
- this.UpdateLLColours(ref llPool1);
- this.llPool1 = llPool1;
- ListLabelV2 iList = this.llPool2;
- this.UpdateLLColours(ref iList);
- this.llPool2 = iList;
- iList = this.llPool3;
- this.UpdateLLColours(ref iList);
- this.llPool3 = iList;
- this.llPrimary.Font = new System.Drawing.Font(this.llPrimary.Font.FontFamily, MidsContext.Config.RtFont.PairedBase, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
- this.llSecondary.Font = this.llPrimary.Font;
- this.llPool0.Font = this.llPrimary.Font;
- this.llPool1.Font = this.llPrimary.Font;
- this.llPool2.Font = this.llPrimary.Font;
- this.llPool3.Font = this.llPrimary.Font;
- this.llAncillary.Font = this.llPrimary.Font;
- this.lblName.BackColor = this.BackColor;
- this.lblAT.BackColor = this.BackColor;
- this.lblOrigin.BackColor = this.BackColor;
- this.lblHero.BackColor = this.BackColor;
- this.pnlGFX.BackColor = this.BackColor;
- this.lblLocked0.BackColor = this.lblATLocked.BackColor;
- this.lblLocked1.BackColor = this.lblATLocked.BackColor;
- this.lblLocked2.BackColor = this.lblATLocked.BackColor;
- this.lblLocked3.BackColor = this.lblATLocked.BackColor;
- this.lblLockedAncillary.BackColor = this.lblATLocked.BackColor;
- this.lblLockedSecondary.BackColor = this.lblATLocked.BackColor;
- this.lblATLocked.BackColor = this.lblATLocked.BackColor;
- this.ibSets.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibPvX.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.incarnateButton.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.tempPowersButton.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.accoladeButton.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.heroVillain.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibVetPools.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibTotals.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibMode.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibSlotLevels.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibPopup.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibRecipe.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- this.ibAccolade.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
- if (!flag)
+ var font = new Font(this.llPrimary.Font.FontFamily, MidsContext.Config.RtFont.PairedBase, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
+ var toColor = new Control[]
+ {
+ this.llPrimary, this.llSecondary,
+ this.llPool0, this.llPool1, this.llPool2, this.llPool3,
+ this.llAncillary,
+ this.lblName, this.lblAT, this.lblOrigin, this.lblHero,
+ this.pnlGFX,
+ };
+ foreach (var colorItem in toColor)
+ {
+ colorItem.BackColor = this.BackColor;
+ if (colorItem is ListLabelV2 ll)
+ {
+ this.UpdateLLColours(ll);
+ ll.Font = font;
+ }
+
+ }
+ var toOtherColor = new Control[]
+ {
+ this.lblLocked0, this.lblLocked1, this.lblLocked2, this.lblLocked3,
+ this.lblLockedAncillary, this.lblLockedSecondary//, this.lblATLocked
+ };
+ foreach (var colorItem in toOtherColor)
+ {
+ colorItem.BackColor = lblATLocked.BackColor;
+ }
+
+ var ibs = new ImageButton[]
+ {
+ this.ibSets,
+ this.ibPvX,
+ this.incarnateButton,
+ this.tempPowersButton,
+ this.accoladeButton,
+ this.heroVillain,
+ this.ibVetPools,
+ this.ibTotals,
+ this.ibMode,
+ this.ibSlotLevels,
+ this.ibPopup,
+ this.ibRecipe,
+ this.ibAccolade,
+ };
+ foreach (var ib in ibs)
+ ib.SetImages(this.drawing.pImageAttributes, this.drawing.bxPower[2].Bitmap, this.drawing.bxPower[3].Bitmap);
+
+
+ if (!draw)
return;
if (!skipDraw)
this.DoRedraw();
@@ -5075,7 +4888,7 @@ void UpdateControls(bool ForceComplete = false)
//else if (Operators.ConditionalCompareObjectNotEqual(NewLateBinding.LateGet(cbAT.SelectedItem, null, "Idx", new object[0], null, (System.Type[])null, null), MidsContext.Character.Archetype.Idx, false))
else if (cbAT.SelectedItem.Idx != MidsContext.Character.Archetype.Idx)
cbAT.SelectedItem = MidsContext.Character.Archetype;
- this.ibPvX.Checked = !MidsContext.Config.Inc.PvE;
+ this.ibPvX.Checked = MidsContext.Config.Inc.DisablePvE;
var cbOrigin = new ComboBoxT(this.cbOrigin);
if (this.ComboCheckOrigin())
{
@@ -5255,23 +5068,23 @@ void UpdateDynamicModeInfo()
this.ibMode.TextOff = MidsContext.Config.BuildMode != Enums.dmModes.Dynamic ? (!MainModule.MidsController.Toon.Complete ? "Level-Up: " + (MidsContext.Character.Level + 1) : "Level-Up") : "Dynamic";
}
- void UpdateLLColours(ref ListLabelV2 iList)
+ void UpdateLLColours(ListLabelV2 iList)
{
iList.UpdateTextColors(ListLabelV2.LLItemState.Enabled, MidsContext.Config.RtFont.ColorPowerAvailable);
iList.UpdateTextColors(ListLabelV2.LLItemState.Disabled, MidsContext.Config.RtFont.ColorPowerDisabled);
iList.UpdateTextColors(ListLabelV2.LLItemState.Selected, MidsContext.Config.RtFont.ColorPowerTaken);
iList.UpdateTextColors(ListLabelV2.LLItemState.SelectedDisabled, MidsContext.Config.RtFont.ColorPowerTakenDark);
- iList.UpdateTextColors(ListLabelV2.LLItemState.Invalid, Color.FromArgb((int)byte.MaxValue, 0, 0));
+ iList.UpdateTextColors(ListLabelV2.LLItemState.Invalid, Color.FromArgb(byte.MaxValue, 0, 0));
iList.HoverColor = MidsContext.Config.RtFont.ColorPowerHighlight;
if (this.myDataView.DrawVillain)
{
- iList.ScrollBarColor = System.Drawing.Color.FromArgb((int)byte.MaxValue, 0, 0);
+ iList.ScrollBarColor = System.Drawing.Color.FromArgb(byte.MaxValue, 0, 0);
iList.ScrollButtonColor = System.Drawing.Color.FromArgb(192, 0, 0);
}
else
{
- iList.ScrollBarColor = System.Drawing.Color.FromArgb(64, 64, (int)byte.MaxValue);
- iList.ScrollButtonColor = System.Drawing.Color.FromArgb(32, 32, (int)byte.MaxValue);
+ iList.ScrollBarColor = System.Drawing.Color.FromArgb(64, 64, byte.MaxValue);
+ iList.ScrollButtonColor = System.Drawing.Color.FromArgb(32, 32, byte.MaxValue);
}
}
diff --git a/Hero Designer/Forms/frmPowerBrowser.cs b/Hero Designer/Forms/frmPowerBrowser.cs
index b5f8cc75..ceb4eb8d 100644
--- a/Hero Designer/Forms/frmPowerBrowser.cs
+++ b/Hero Designer/Forms/frmPowerBrowser.cs
@@ -677,7 +677,7 @@ void BuildPowersetImageList(int[] iSets)
break;
}
extendedBitmap1.Graphics.DrawImageUnscaled((Image)extendedBitmap2.Bitmap, new System.Drawing.Point(1, 1));
- extendedBitmap1.Graphics.DrawString(s, font, (Brush)solidBrush4, layoutRectangle, format);
+ extendedBitmap1.Graphics.DrawString(s, font, solidBrush4, layoutRectangle, format);
this.ilPS.Images.Add((Image)new Bitmap((Image)extendedBitmap1.Bitmap));
}
}
diff --git a/Hero Designer/Forms/frmPrint.cs b/Hero Designer/Forms/frmPrint.cs
index f6f48e96..833a23a9 100644
--- a/Hero Designer/Forms/frmPrint.cs
+++ b/Hero Designer/Forms/frmPrint.cs
@@ -5,10 +5,8 @@
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.ComponentModel;
-using System.Diagnostics;
using System.Drawing;
using System.Drawing.Printing;
-using System.Runtime.CompilerServices;
using System.Windows.Forms;
namespace Hero_Designer
@@ -26,31 +24,25 @@ public frmPrint()
this.Name = nameof(frmPrint);
}
- void btnCancel_Click(object sender, EventArgs e)
-
- {
- this.Close();
- }
+ void btnCancel_Click(object sender, EventArgs e) => this.Close();
void btnLayout_Click(object sender, EventArgs e)
-
{
this.dlgSetup.Document = this._printer.Document;
- int num = (int)this.dlgSetup.ShowDialog();
+ this.dlgSetup.ShowDialog();
this.lblPrinter.Text = this._printer.Document.PrinterSettings.PrinterName;
}
void btnPrint_Click(object sender, EventArgs e)
-
{
MidsContext.Config.LastPrinter = this._printer.Document.PrinterSettings.PrinterName;
MidsContext.Config.PrintHistory = this.chkPrintHistory.Checked;
- MidsContext.Config.PrintProfileEnh = this.chkProfileEnh.Checked;
- MidsContext.Config.I9.PrintIOLevels = this.chkPrintHistoryEnh.Checked;
+ MidsContext.Config.DisablePrintProfileEnh = !this.chkProfileEnh.Checked;
+ MidsContext.Config.I9.DisablePrintIOLevels = !this.chkPrintHistoryEnh.Checked;
MidsContext.Config.PrintProfile = !this.rbProfileShort.Checked ? (!this.rbProfileLong.Checked ? ConfigData.PrintOptionProfile.None : ConfigData.PrintOptionProfile.MultiPage) : ConfigData.PrintOptionProfile.SinglePage;
if (this.rbProfileNone.Checked & !this.chkPrintHistory.Checked)
{
- int num = (int)Interaction.MsgBox("You have not selected anything to print!", MsgBoxStyle.Information, "Eh?");
+ Interaction.MsgBox("You have not selected anything to print!", MsgBoxStyle.Information, "Eh?");
}
else
{
@@ -60,43 +52,38 @@ void btnPrint_Click(object sender, EventArgs e)
}
void btnPrinter_Click(object sender, EventArgs e)
-
{
- int num = (int)new PrintDialog()
+ new PrintDialog()
{
Document = this._printer.Document
}.ShowDialog();
this.lblPrinter.Text = this._printer.Document.PrinterSettings.PrinterName;
}
- void chkPrintHistory_CheckedChanged(object sender, EventArgs e)
- {
- this.chkPrintHistoryEnh.Enabled = this.chkPrintHistory.Checked;
- }
+ void chkPrintHistory_CheckedChanged(object sender, EventArgs e) => this.chkPrintHistoryEnh.Enabled = this.chkPrintHistory.Checked;
void frmPrint_Load(object sender, EventArgs e)
{
if (PrinterSettings.InstalledPrinters.Count < 1)
{
- int num = (int)Interaction.MsgBox("There are no printers installed!", MsgBoxStyle.Information, "Buh...");
+ Interaction.MsgBox("There are no printers installed!", MsgBoxStyle.Information, "Buh...");
this.Close();
}
this._printer = new Print();
- string str = "";
- int num1 = -1;
+ string printerName = "";
+ int printerIndex = -1;
if (this._printer.Document.PrinterSettings.IsDefaultPrinter)
- str = this._printer.Document.PrinterSettings.PrinterName;
- int num2 = PrinterSettings.InstalledPrinters.Count - 1;
- for (int index = 0; index <= num2; ++index)
+ printerName = this._printer.Document.PrinterSettings.PrinterName;
+ for (int index = 0; index <= PrinterSettings.InstalledPrinters.Count - 1; ++index)
{
if (PrinterSettings.InstalledPrinters[index] == MidsContext.Config.LastPrinter)
{
- num1 = index;
+ printerIndex = index;
this._printer.Document.PrinterSettings.PrinterName = PrinterSettings.InstalledPrinters[index];
}
- else if (PrinterSettings.InstalledPrinters[index] == str & num1 < 0)
+ else if (PrinterSettings.InstalledPrinters[index] == printerName & printerIndex < 0)
{
- num1 = index;
+ printerIndex = index;
this._printer.Document.PrinterSettings.PrinterName = PrinterSettings.InstalledPrinters[index];
}
}
@@ -117,18 +104,12 @@ void frmPrint_Load(object sender, EventArgs e)
break;
}
this.chkPrintHistory.Checked = MidsContext.Config.PrintHistory;
- this.chkPrintHistoryEnh.Checked = MidsContext.Config.I9.PrintIOLevels;
+ this.chkPrintHistoryEnh.Checked = !MidsContext.Config.I9.DisablePrintIOLevels;
this.chkPrintHistoryEnh.Enabled = this.chkPrintHistory.Checked;
- this.chkProfileEnh.Checked = MidsContext.Config.PrintProfileEnh;
+ this.chkProfileEnh.Checked = !MidsContext.Config.DisablePrintProfileEnh;
this.chkProfileEnh.Enabled = this.rbProfileShort.Checked;
}
- [DebuggerStepThrough]
-
- void rbProfileShort_CheckedChanged(object sender, EventArgs e)
-
- {
- this.chkProfileEnh.Enabled = this.rbProfileShort.Checked;
- }
+ void rbProfileShort_CheckedChanged(object sender, EventArgs e) => this.chkProfileEnh.Enabled = this.rbProfileShort.Checked;
}
}
\ No newline at end of file
diff --git a/Hero Designer/Forms/frmRecipeViewer.cs b/Hero Designer/Forms/frmRecipeViewer.cs
index c89a5251..8f137c4e 100644
--- a/Hero Designer/Forms/frmRecipeViewer.cs
+++ b/Hero Designer/Forms/frmRecipeViewer.cs
@@ -612,7 +612,7 @@ void ibClose_ButtonClicked()
void ibMiniList_ButtonClicked()
{
- this.myParent.SetMiniList(this.BuildList(true), "Shopping List", 2048);
+ this.myParent.SetMiniList(this.BuildList(true), "Shopping List");
}
void ibTopmost_ButtonClicked()
diff --git a/Hero Designer/Hero Designer.csproj b/Hero Designer/Hero Designer.csproj
index f0db9556..6cd63120 100644
--- a/Hero Designer/Hero Designer.csproj
+++ b/Hero Designer/Hero Designer.csproj
@@ -236,7 +236,14 @@
PreserveNewest
+
+
+
+
+
+ ..\packages\Autoupdater.NET.Official.1.5.4\lib\net40\AutoUpdater.NET.dll
+
..\packages\Newtonsoft.Json.12.0.2\lib\net35\Newtonsoft.Json.dll
@@ -666,9 +673,6 @@
PreserveNewest
-
- PreserveNewest
-
diff --git a/Hero Designer/Images/OriginAT/Class_Brute.png b/Hero Designer/Images/OriginAT/Class_Brute.png
index f336327d..d917beed 100644
Binary files a/Hero Designer/Images/OriginAT/Class_Brute.png and b/Hero Designer/Images/OriginAT/Class_Brute.png differ
diff --git a/Hero Designer/Images/OriginAT/Class_Sentinel.png b/Hero Designer/Images/OriginAT/Class_Sentinel.png
index cc1a20ac..4b8a76a2 100644
Binary files a/Hero Designer/Images/OriginAT/Class_Sentinel.png and b/Hero Designer/Images/OriginAT/Class_Sentinel.png differ
diff --git a/Hero Designer/Images/OriginAT/Class_Sentinel_old.png b/Hero Designer/Images/OriginAT/Class_Sentinel_old.png
deleted file mode 100644
index cc1a20ac..00000000
Binary files a/Hero Designer/Images/OriginAT/Class_Sentinel_old.png and /dev/null differ
diff --git a/Hero Designer/Resources/optDO.Image.png b/Hero Designer/Resources/optDO.Image.png
new file mode 100644
index 00000000..09bd8221
Binary files /dev/null and b/Hero Designer/Resources/optDO.Image.png differ
diff --git a/Hero Designer/Resources/optSO.Image.png b/Hero Designer/Resources/optSO.Image.png
new file mode 100644
index 00000000..eace5908
Binary files /dev/null and b/Hero Designer/Resources/optSO.Image.png differ
diff --git a/Hero Designer/Resources/optTO.Image.png b/Hero Designer/Resources/optTO.Image.png
new file mode 100644
index 00000000..e8f6cf49
Binary files /dev/null and b/Hero Designer/Resources/optTO.Image.png differ
diff --git a/Hero Designer/Resources/reborn_wicon.ico b/Hero Designer/Resources/reborn_wicon.ico
new file mode 100644
index 00000000..344ab48f
Binary files /dev/null and b/Hero Designer/Resources/reborn_wicon.ico differ
diff --git a/Hero Designer/clsHook.cs b/Hero Designer/clsHook.cs
index f8d45abc..739da43c 100644
--- a/Hero Designer/clsHook.cs
+++ b/Hero Designer/clsHook.cs
@@ -3,6 +3,7 @@
using System.IO;
using System.Net;
using System.Text;
+using System.Threading.Tasks;
using System.Windows.Forms;
using Base;
using Base.Data_Classes;
@@ -37,14 +38,14 @@ public static string GetDescription(Enum value)
}
return null;
}*/
-
- private static string ShrinkTheDatalink(string strUrl)
+
+ public static string ShrinkTheDatalink(string strUrl)
{
var url = "http://tinyurl.com/api-create.php?url=" + strUrl;
- var objWebRequest = (HttpWebRequest) WebRequest.Create(url);
+ var objWebRequest = (HttpWebRequest)WebRequest.Create(url);
objWebRequest.Method = "GET";
- using (var objWebResponse = (HttpWebResponse) objWebRequest.GetResponse())
+ using (var objWebResponse = (HttpWebResponse)objWebRequest.GetResponse())
{
var srReader = new StreamReader(objWebResponse.GetResponseStream());
@@ -58,7 +59,7 @@ private static string ShrinkTheDatalink(string strUrl)
}
}
- internal static void DiscordExport()
+ internal static async Task DiscordExport()
{
//Set vars and shrink the link
Statistics displayStats = MidsContext.Character.DisplayStats;
@@ -67,13 +68,14 @@ internal static void DiscordExport()
var discord = (
Server: MidsContext.Config.DSelServer.Replace(" (Default)", ""),
- User: MidsContext.Config.DNickName, Channel: MidsContext.Config.DChannel);
+ User: MidsContext.Config.DNickName,
+ Channel: MidsContext.Config.DChannel);
var mrb = (
- Level: Conversions.ToString(num),
- Archetype: MidsContext.Character.Archetype.DisplayName,
- PriPowerSet: MidsContext.Character.Powersets[0].DisplayName,
+ Level: Conversions.ToString(num),
+ Archetype: MidsContext.Character.Archetype.DisplayName,
+ PriPowerSet: MidsContext.Character.Powersets[0].DisplayName,
SecPowerSet: MidsContext.Character.Powersets[1].DisplayName,
- GlobRecharge: Strings.Format((float)((double)displayStats.BuffHaste(false) - 100.0), "##0" + NumberFormatInfo.CurrentInfo.NumberDecimalSeparator + "#") + "%",
+ GlobRecharge: Strings.Format((float)(displayStats.BuffHaste(false) - 100.0), "##0" + NumberFormatInfo.CurrentInfo.NumberDecimalSeparator + "#") + "%",
EndRecovery: Strings.Format(displayStats.EnduranceRecoveryPercentage(false), "###0") + "% (" + Strings.Format(displayStats.EnduranceRecoveryNumeric, "##0" + NumberFormatInfo.CurrentInfo.NumberDecimalSeparator + "##") + "/s)",
//HPRegen: Strings.Format(displayStats.HealthRegenPercent(false), "###0") + "%",
//TotalDamageBuff: Strings.Format(displayStats.BuffDamage(false) - 100f, "##0.#") + "%",
@@ -81,11 +83,11 @@ internal static void DiscordExport()
//TotalToHit: Strings.Format(displayStats.BuffToHit, "##0" + NumberFormatInfo.CurrentInfo.NumberDecimalSeparator + "#") + "%",
ToonName: MidsContext.Character.Name,
Datalink: MidsCharacterFileFormat.MxDBuildSaveHyperlink(false, true));
- var shrunkData = ShrinkTheDatalink(mrb.Datalink);
+ var shrunkData = ShrinkTheDatalink(mrb.Datalink);
var embedurl = $"[Click Here to Download]({shrunkData})";
byte[] data = Convert.FromBase64String("aHR0cDovL2hvb2tzLm1pZHNyZWJvcm4uY29tOjMwMDAvYXBpP3Rva2VuPVVtUWhUNGtEclMwZ0E1TUY1YUdsaTh6YllDVW1RaFQ0a0RyUzBnQTVNRjVhR2xpOHpiWUM=");
string wString = Encoding.UTF8.GetString(data);
- var httpWebRequest = (HttpWebRequest) WebRequest.Create(wString);
+ var httpWebRequest = (HttpWebRequest)WebRequest.Create(wString);
httpWebRequest.ContentType = "application/json";
httpWebRequest.Method = "POST";
using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
@@ -111,27 +113,51 @@ internal static void DiscordExport()
streamWriter.Write(json);
}
- var httpResponse = (HttpWebResponse) httpWebRequest.GetResponse();
+ var httpResponse = (HttpWebResponse)await httpWebRequest.GetResponseAsync();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
{
var result = streamReader.ReadToEnd();
switch (result)
{
case "Nickname not found in discord":
- {
- const string message = "Submission Failed! Check the Discord settings under configuration.";
- const string title = "Discord Export";
- MessageBox.Show(message, title);
- break;
- }
+ {
+ string message = $"Submission Failed: Your discord nickname was not found in the {discord.Server} discord server.";
+ string title = "Discord Export";
+ MessageBox.Show(message, title);
+ break;
+ }
- case "Nickname found":
- {
- const string message = "Submission Successful!! Your build should now be posted.";
- const string title = "Discord Export";
- MessageBox.Show(message, title);
- break;
- }
+ case "Export Successful":
+ {
+ string message = $"Submission Successful!! Your build should now be posted in {discord.Channel} on the {discord.Server} server.";
+ string title = "Discord Export";
+ MessageBox.Show(message, title);
+ break;
+ }
+
+ case "Export Failed":
+ {
+ string message = $"Submission Failed: Please check your discord export settings and make sure you have the latest version of Mids' Reborn : Hero Designer.";
+ string title = "Discord Export";
+ MessageBox.Show(message, title);
+ break;
+ }
+
+ case "Failed to add export to queue":
+ {
+ string message = $"Submission Failed: Possible server error, please contact the RebornTeam.";
+ string title = "Discord Export";
+ MessageBox.Show(message, title);
+ break;
+ }
+
+ case "RebornBot is not in the discord server":
+ {
+ string message = $"Submission Failed: RebornBot was not found in the {discord.Server}.";
+ string title = "Discord Export";
+ MessageBox.Show(message, title);
+ break;
+ }
}
}
}
diff --git a/Hero Designer/clsOutput.cs b/Hero Designer/clsOutput.cs
index d65f4366..04bf7086 100644
--- a/Hero Designer/clsOutput.cs
+++ b/Hero Designer/clsOutput.cs
@@ -29,12 +29,12 @@ public clsOutput()
if (MidsContext.Config.ExportTarget < 0 | MidsContext.Config.Export.FormatCode.Length == 0)
{
MidsContext.Config.Export.ResetCodesToDefaults();
- int num = (int)Interaction.MsgBox("No formatting codes found, resetting to defaults.", MsgBoxStyle.Information, "Huh");
+ Interaction.MsgBox("No formatting codes found, resetting to defaults.", MsgBoxStyle.Information, "Huh");
}
if (MidsContext.Config.ExportScheme < 0 | MidsContext.Config.Export.ColorSchemes.Length == 0)
{
MidsContext.Config.Export.ResetColorsToDefaults();
- int num = (int)Interaction.MsgBox("No colour schemes found, resetting to defaults.", MsgBoxStyle.Information, "Huh");
+ Interaction.MsgBox("No colour schemes found, resetting to defaults.", MsgBoxStyle.Information, "Huh");
}
if (MidsContext.Config.ExportTarget >= MidsContext.Config.Export.FormatCode.Length)
MidsContext.Config.ExportTarget = 0;
@@ -63,7 +63,7 @@ public string Build(string iDataLink)
+ formatCode[idFormat].UnderlineOn == "";
string str2 = MidsContext.Character.Alignment.ToString();
string str3 = str1 + this.formatColor(this.formatBold(str2 + " Plan by Mids' Reborn : Hero Designer " + MidsContext.AppAssemblyVersion), ExportConfig.Element.Heading) + this.LineBreak() + this.formatColor(this.formatBold(@"https://github.com/ImaginaryDevelopment/imaginary-hero-designer"), ExportConfig.Element.Heading) + this.LineBreak();
- if (iDataLink != "" & !this.Plain)
+ if (iDataLink != "" && !this.Plain)
str3 = str3 + this.LineBreak() + this.formatColor(this.formatUnderline(this.formatBold(iDataLink)), ExportConfig.Element.Title) + this.LineBreak();
string str4 = str3 + this.LineBreak();
int num = MidsContext.Character.Level + 1;
diff --git a/Hero Designer/clsToonX.cs b/Hero Designer/clsToonX.cs
index 81cf95e3..bc1a3317 100644
--- a/Hero Designer/clsToonX.cs
+++ b/Hero Designer/clsToonX.cs
@@ -19,14 +19,14 @@ namespace Hero_Designer
{
public class clsToonX : Character
{
- IPower[] _buffedPower = new IPower[0];
- IPower[] _mathPower = new IPower[0];
+ IPower[] _buffedPower = Array.Empty();
+ IPower[] _mathPower = Array.Empty();
Enums.BuffsX _selfBuffs;
Enums.BuffsX _selfEnhance;
void ApplyPvpDr()
{
- if (!MidsContext.Config.Inc.PvE) ;
+ if (!MidsContext.Config.Inc.DisablePvE) ;
}
static PopUp.StringValue BuildEDItem(
@@ -479,7 +479,7 @@ void GBD_Totals()
bool GBPA_AddEnhFX(ref IPower iPower, int iIndex)
{
- if (!MidsContext.Config.I9.CalculateEnahncementFX || iIndex < 0 || iPower == null)
+ if (MidsContext.Config.I9.IgnoreEnhFX || iIndex < 0 || iPower == null)
return false;
for (int index1 = 0; index1 <= this.CurrentBuild.Powers[iIndex].SlotCount - 1; ++index1)
{
@@ -1188,7 +1188,7 @@ void GenerateBuffData(ref Enums.BuffsX nBuffs, bool enhancementPass)
}
IPower bonusVirtualPower = this.CurrentBuild.SetBonusVirtualPower;
clsToonX.GBD_Stage(ref bonusVirtualPower, ref nBuffs, enhancementPass);
- if (MidsContext.Config.Inc.PvE)
+ if (!MidsContext.Config.Inc.DisablePvE)
return;
int index1 = DatabaseAPI.NidFromUidPower("Temporary_Powers.Temporary_Powers.PVP_Resist_Bonus");
if (index1 > -1)
@@ -1626,7 +1626,7 @@ public PopUp.PopupData PopPowerInfo(int hIDX, int pIDX)
popupData.Sections[index1].Add(enhancementSet.DisplayName + " (" + Conversions.ToString(setInfo[senInfoIdx].SlottedCount) + "/" + Conversions.ToString(enhancementSet.Enhancements.Length) + ")", PopUp.Colors.Title, 1f, FontStyle.Bold, 0);
for (int bonusIdx = 0; bonusIdx <= enhancementSet.Bonus.Length - 1; ++bonusIdx)
{
- if (setInfo[senInfoIdx].SlottedCount >= enhancementSet.Bonus[bonusIdx].Slotted & (enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.PvP & !MidsContext.Config.Inc.PvE | enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.PvE & MidsContext.Config.Inc.PvE | enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.Any))
+ if (setInfo[senInfoIdx].SlottedCount >= enhancementSet.Bonus[bonusIdx].Slotted & (enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.PvP & MidsContext.Config.Inc.DisablePvE | enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.PvE & !MidsContext.Config.Inc.DisablePvE | enhancementSet.Bonus[bonusIdx].PvMode == Enums.ePvX.Any))
popupData.Sections[index1].Add(enhancementSet.GetEffectString(bonusIdx, false, true), PopUp.Colors.Effect, 0.9f, FontStyle.Bold, 1);
}
for (int enhIdx = 0; enhIdx <= this.CurrentBuild.SetBonus[index2].SetInfo[senInfoIdx].EnhIndexes.Length - 1; ++enhIdx)
@@ -1765,7 +1765,7 @@ PopUp.Section PopSlottedEnhInfo(int hIDX)
}
}
}
- if (MidsContext.Config.ShowAlphaPopup)
+ if (!MidsContext.Config.DisableAlphaPopup)
{
for (int index1 = 0; index1 <= this.CurrentBuild.Powers.Count - 1; ++index1)
{
@@ -1939,7 +1939,7 @@ PopUp.Section PopSlottedEnhInfo(int hIDX)
section.Content[section.Content.Length - 1] = clsToonX.BuildEDItem(index, nMez, schedMez, Enum.GetName(eMez.GetType(), index), afterED4);
}
}
- if (!MidsContext.Config.ShowAlphaPopup)
+ if (MidsContext.Config.DisableAlphaPopup)
section.Add("Enhancement values exclude Alpha ability (see Data View for full info, or change this option in the Configuration panel)", PopUp.Colors.Text, 0.8f, FontStyle.Regular, 1);
}
return section;
@@ -2051,7 +2051,7 @@ bool ReadInternalData(StreamReader iStream)
else
throw new Exception("Reached end of data wihout finding header.");
}
- while (!(string.Equals(a, "HeroDataVersion", StringComparison.OrdinalIgnoreCase) | string.Equals(a, "MHDz", StringComparison.OrdinalIgnoreCase)));
+ while (!(string.Equals(a, Files.Headers.Save.Uncompressed, StringComparison.OrdinalIgnoreCase) | string.Equals(a, Files.Headers.Save.Compressed, StringComparison.OrdinalIgnoreCase)));
}
catch (Exception ex)
{
@@ -2060,14 +2060,14 @@ bool ReadInternalData(StreamReader iStream)
return false;
}
- if (string.Equals(a, "HeroDataVersion", StringComparison.OrdinalIgnoreCase))
+ if (string.Equals(a, Files.Headers.Save.Uncompressed, StringComparison.OrdinalIgnoreCase))
{
iStream.BaseStream.Seek(0L, SeekOrigin.Begin);
return this.ReadInternalDataUC(iStream);
}
else
{
- if (string.Equals(a, "MHDz", StringComparison.OrdinalIgnoreCase))
+ if (string.Equals(a, Files.Headers.Save.Compressed, StringComparison.OrdinalIgnoreCase))
{
ASCIIEncoding asciiEncoding = new ASCIIEncoding();
int outSize = (int)Math.Round(Conversion.Val(strArray[1]));
@@ -2101,7 +2101,7 @@ bool ReadInternalDataUC(StreamReader iStream)
{
strArray1 = clsToonX.IoGrab2(iStream, "|", char.MinValue);
}
- while (strArray1[0] != "HeroDataVersion");
+ while (strArray1[0] != Files.Headers.Save.Uncompressed);
strArray1[1] = strArray1[1].Replace(",", ".");
float nVer = (float)Conversion.Val(strArray1[1]);
bool flag;
@@ -2268,7 +2268,7 @@ void SetPower_NID(int Index, int nIDPower)
public bool StringToInternalData(string iString)
{
bool flag1;
- if (iString.IndexOf("MHDz", StringComparison.Ordinal) == -1 & iString.IndexOf("HeroDataVersion", StringComparison.Ordinal) == -1)
+ if (iString.IndexOf(Files.Headers.Save.Compressed, StringComparison.Ordinal) == -1 & iString.IndexOf(Files.Headers.Save.Uncompressed, StringComparison.Ordinal) == -1)
{
if (iString.IndexOf("Primary", StringComparison.Ordinal) > -1 & iString.IndexOf("Secondary", StringComparison.Ordinal) > -1)
{
@@ -2306,7 +2306,7 @@ public bool StringToInternalData(string iString)
}
try
{
- if (iString.IndexOf("MHDz", StringComparison.Ordinal) < 0)
+ if (iString.IndexOf(Files.Headers.Save.Compressed, StringComparison.Ordinal) < 0)
{
iString = iString.Replace("+\r\n+", "");
iString = iString.Replace("+ \r\n+", "");
diff --git a/Hero Designer/clsXMLUpdate.cs b/Hero Designer/clsXMLUpdate.cs
index f471d212..0fd855f7 100644
--- a/Hero Designer/clsXMLUpdate.cs
+++ b/Hero Designer/clsXMLUpdate.cs
@@ -124,7 +124,7 @@ static void LaunchBrowser(string iURI)
var runningVer = typeof(frmMain).Assembly.GetName().Version;
// I don't trust that != isn't reference comparison for the version type
if (runningVer.CompareTo(availVer) < 0) return (eCheckResponse.Updates, $"Version {remoteversion}, installed is {runningVer.ToString()}");
- return (eCheckResponse.NoUpdates, null);
+ return (eCheckResponse.NoUpdates, $"Installed is {runningVer.ToString()}, remote is Version {remoteversion}");
}
catch (Exception ex)
{
diff --git a/Hero Designer/packages.config b/Hero Designer/packages.config
index ab772dee..eca1e687 100644
--- a/Hero Designer/packages.config
+++ b/Hero Designer/packages.config
@@ -1,4 +1,5 @@
+
\ No newline at end of file
diff --git a/HeroDesigner.Schema/AssemblyInfo.fs b/HeroDesigner.Schema/AssemblyInfo.fs
new file mode 100644
index 00000000..8c4fb1dd
--- /dev/null
+++ b/HeroDesigner.Schema/AssemblyInfo.fs
@@ -0,0 +1,5 @@
+module AssemblyInfo
+
+[]
+()
+
diff --git a/HeroDesigner.Schema/HeroDesigner.Schema.fsproj b/HeroDesigner.Schema/HeroDesigner.Schema.fsproj
new file mode 100644
index 00000000..f79b2512
--- /dev/null
+++ b/HeroDesigner.Schema/HeroDesigner.Schema.fsproj
@@ -0,0 +1,12 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
diff --git a/HeroDesigner.Schema/Library.fs b/HeroDesigner.Schema/Library.fs
new file mode 100644
index 00000000..b6a26d45
--- /dev/null
+++ b/HeroDesigner.Schema/Library.fs
@@ -0,0 +1,17 @@
+namespace HeroDesigner.Schema
+open System
+
+type RawSaveResult = {Length:int;Hash:int}
+
+type FHash = {
+ Archetype:string
+ Fullname:string
+ Hash:int
+ Length:int
+}
+
+type HistoryMap() =
+ member val Level = -1 with get,set
+ member val HID = -1 with get,set
+ member val SID = -1 with get,set
+ member val Text = String.Empty with get,set
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 00000000..e72bfdda
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
\ No newline at end of file
diff --git a/README.md b/README.md
index e83c8a27..b87b4652 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,4 @@ City of Heroes' Hero Designer lives again
# Releases/Install/Downloads
Latest Version 2.6.0.1 - Released on 2019-07-21
- - No Automatic Updates
- - No Installer and Installer based releases are found at https://github.com/ImaginaryDevelopment/imaginary-hero-designer/releases
- - Automatic Internet Required for updates
- - https://imaginarydevelopment.github.io/imaginary-hero-designer/publish/publish.htm
+ - https://github.com/ImaginaryDevelopment/imaginary-hero-designer/releases/tag/2.6.0.1
diff --git a/midsControls/clsDrawX.cs b/midsControls/clsDrawX.cs
index 1286b4ca..42b6a517 100644
--- a/midsControls/clsDrawX.cs
+++ b/midsControls/clsDrawX.cs
@@ -169,7 +169,7 @@ void DrawEnhancement(SlotEntry slot, Font font, Graphics g, ref RectangleF rect)
{
unchecked
{
- if (MidsContext.Config.I9.DisplayIOLevels & (DatabaseAPI.Database.Enhancements[slot.Enhancement.Enh].TypeID == Enums.eType.SetO
+ if (!MidsContext.Config.I9.HideIOLevels & (DatabaseAPI.Database.Enhancements[slot.Enhancement.Enh].TypeID == Enums.eType.SetO
| DatabaseAPI.Database.Enhancements[slot.Enhancement.Enh].TypeID == Enums.eType.InventO))
{
RectangleF iValue2 = rect;
@@ -307,7 +307,7 @@ public Point DrawPowerSlot(ref PowerEntry iSlot, bool singleDraw = false)
Rectangle iValue = new Rectangle(result.X, result.Y, this.bxPower[(int)ePowerState].Size.Width, this.bxPower[(int)ePowerState].Size.Height);
if (ePowerState == Enums.ePowerState.Used || toggling)
{
- if (MidsContext.Config.DesaturateInherent & !iSlot.Chosen)
+ if (!MidsContext.Config.DisableDesaturateInherent & !iSlot.Chosen)
{
imageAttr = this.Desaturate(grey, ePowerState == Enums.ePowerState.Open);
}
@@ -970,7 +970,7 @@ public void ColourSwitch()
bool useHeroColors = true;
if (MidsContext.Character != null)
useHeroColors = MidsContext.Character.IsHero();
- if (!MidsContext.Config.ShowVillainColours)
+ if (MidsContext.Config.DisableVillainColours)
useHeroColors = true;
this.VillainColor = !useHeroColors;