Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions Game/Services/HotDotDatabase.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
Expand Down Expand Up @@ -29,8 +29,10 @@ public enum StaticallyUsedBuff
Slaying = 8888889,
Contagion1 = 701700,
Contagion2 = 701701,
Hurricane = 60010

Hurricane = 60010,
DefensiveStance1 = 100200,
DefensiveStance2 = 100201,
Intimidation = 401400
}

public HotDot Enraged { get; }
Expand All @@ -43,6 +45,9 @@ public enum StaticallyUsedBuff
public readonly HotDot Contagion2;
public readonly HotDot Enrage;
public readonly HotDot Hurricane;
public readonly HotDot DefensiveStance1;
public readonly HotDot DefensiveStance2;
public readonly HotDot Intimidation;


private readonly Dictionary<int, HotDot> _hotdots =
Expand Down Expand Up @@ -107,6 +112,9 @@ public HotDotDatabase(string folder, string language)
_hotdots.TryGetValue((int)StaticallyUsedBuff.Contagion1, out Contagion1);
_hotdots.TryGetValue((int)StaticallyUsedBuff.Contagion2, out Contagion2);
_hotdots.TryGetValue((int)StaticallyUsedBuff.Hurricane, out Hurricane);
_hotdots.TryGetValue((int)StaticallyUsedBuff.DefensiveStance1 , out DefensiveStance1);
_hotdots.TryGetValue((int)StaticallyUsedBuff.DefensiveStance2 , out DefensiveStance2);
_hotdots.TryGetValue((int)StaticallyUsedBuff.Intimidation , out Intimidation);

}

Expand All @@ -120,4 +128,4 @@ public HotDot Get(int skillId)
return !_hotdots.ContainsKey(skillId) ? null : _hotdots[skillId];
}
}
}
}