Merge pull request #10783 from dekvall/nightmare-kc
hiscores: add nightmare boss
This commit is contained in:
@@ -92,6 +92,7 @@ public class HiscoreResult
|
|||||||
private Skill kreearra;
|
private Skill kreearra;
|
||||||
private Skill krilTsutsaroth;
|
private Skill krilTsutsaroth;
|
||||||
private Skill mimic;
|
private Skill mimic;
|
||||||
|
private Skill nightmare;
|
||||||
private Skill obor;
|
private Skill obor;
|
||||||
private Skill sarachnis;
|
private Skill sarachnis;
|
||||||
private Skill scorpia;
|
private Skill scorpia;
|
||||||
@@ -237,6 +238,8 @@ public class HiscoreResult
|
|||||||
return krilTsutsaroth;
|
return krilTsutsaroth;
|
||||||
case MIMIC:
|
case MIMIC:
|
||||||
return mimic;
|
return mimic;
|
||||||
|
case NIGHTMARE:
|
||||||
|
return nightmare;
|
||||||
case OBOR:
|
case OBOR:
|
||||||
return obor;
|
return obor;
|
||||||
case SARACHNIS:
|
case SARACHNIS:
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ class HiscoreResultBuilder
|
|||||||
hiscoreResult.setKreearra(skills.get(index++));
|
hiscoreResult.setKreearra(skills.get(index++));
|
||||||
hiscoreResult.setKrilTsutsaroth(skills.get(index++));
|
hiscoreResult.setKrilTsutsaroth(skills.get(index++));
|
||||||
hiscoreResult.setMimic(skills.get(index++));
|
hiscoreResult.setMimic(skills.get(index++));
|
||||||
|
hiscoreResult.setNightmare(skills.get(index++));
|
||||||
hiscoreResult.setObor(skills.get(index++));
|
hiscoreResult.setObor(skills.get(index++));
|
||||||
hiscoreResult.setSarachnis(skills.get(index++));
|
hiscoreResult.setSarachnis(skills.get(index++));
|
||||||
hiscoreResult.setScorpia(skills.get(index++));
|
hiscoreResult.setScorpia(skills.get(index++));
|
||||||
|
|||||||
@@ -96,6 +96,7 @@ public enum HiscoreSkill
|
|||||||
KREEARRA("Kree'Arra", BOSS),
|
KREEARRA("Kree'Arra", BOSS),
|
||||||
KRIL_TSUTSAROTH("K'ril Tsutsaroth", BOSS),
|
KRIL_TSUTSAROTH("K'ril Tsutsaroth", BOSS),
|
||||||
MIMIC("Mimic", BOSS),
|
MIMIC("Mimic", BOSS),
|
||||||
|
NIGHTMARE("Nightmare", BOSS),
|
||||||
OBOR("Obor", BOSS),
|
OBOR("Obor", BOSS),
|
||||||
SARACHNIS("Sarachnis", BOSS),
|
SARACHNIS("Sarachnis", BOSS),
|
||||||
SCORPIA("Scorpia", BOSS),
|
SCORPIA("Scorpia", BOSS),
|
||||||
|
|||||||
@@ -98,6 +98,7 @@ public class HiscoreServiceTest
|
|||||||
+ "10170,184\n"
|
+ "10170,184\n"
|
||||||
+ "8064,202\n"
|
+ "8064,202\n"
|
||||||
+ "6936,2\n"
|
+ "6936,2\n"
|
||||||
|
+ "2335,9\n"
|
||||||
+ "-1,-1\n"
|
+ "-1,-1\n"
|
||||||
+ "-1,-1\n"
|
+ "-1,-1\n"
|
||||||
+ "19779,22\n"
|
+ "19779,22\n"
|
||||||
|
|||||||
@@ -105,12 +105,12 @@ public class HiscorePanel extends PluginPanel
|
|||||||
GIANT_MOLE, GROTESQUE_GUARDIANS, HESPORI,
|
GIANT_MOLE, GROTESQUE_GUARDIANS, HESPORI,
|
||||||
KALPHITE_QUEEN, KING_BLACK_DRAGON, KRAKEN,
|
KALPHITE_QUEEN, KING_BLACK_DRAGON, KRAKEN,
|
||||||
KREEARRA, KRIL_TSUTSAROTH, MIMIC,
|
KREEARRA, KRIL_TSUTSAROTH, MIMIC,
|
||||||
OBOR, SARACHNIS, SCORPIA,
|
NIGHTMARE, OBOR, SARACHNIS,
|
||||||
SKOTIZO, THE_GAUNTLET, THE_CORRUPTED_GAUNTLET,
|
SCORPIA, SKOTIZO, THE_GAUNTLET,
|
||||||
THEATRE_OF_BLOOD, THERMONUCLEAR_SMOKE_DEVIL, TZKAL_ZUK,
|
THE_CORRUPTED_GAUNTLET, THEATRE_OF_BLOOD, THERMONUCLEAR_SMOKE_DEVIL,
|
||||||
TZTOK_JAD, VENENATIS, VETION,
|
TZKAL_ZUK, TZTOK_JAD, VENENATIS,
|
||||||
VORKATH, WINTERTODT, ZALCANO,
|
VETION, VORKATH, WINTERTODT,
|
||||||
ZULRAH
|
ZALCANO, ZULRAH
|
||||||
);
|
);
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 811 B |
Reference in New Issue
Block a user