From 5a51a4f3b74399f6df691475f6a2afe336aafbd9 Mon Sep 17 00:00:00 2001 From: Roukanken Date: Wed, 27 Feb 2019 23:11:59 +0100 Subject: [PATCH] Added DStances for my blue blue bar --- Game/Services/HotDotDatabase.cs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Game/Services/HotDotDatabase.cs b/Game/Services/HotDotDatabase.cs index 63f8e35..7cbcac7 100644 --- a/Game/Services/HotDotDatabase.cs +++ b/Game/Services/HotDotDatabase.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.IO; @@ -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; } @@ -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 _hotdots = @@ -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); } @@ -120,4 +128,4 @@ public HotDot Get(int skillId) return !_hotdots.ContainsKey(skillId) ? null : _hotdots[skillId]; } } -} \ No newline at end of file +}