journal void idol, secret room check

This commit is contained in:
ReznoRMichael 2021-01-27 02:02:21 +01:00
parent 586a904050
commit 08bc6fc88e
3 changed files with 14 additions and 6 deletions

File diff suppressed because one or more lines are too long

View file

@ -722,6 +722,14 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData) {
case "killsBindingSeal": case "killsBindingSeal":
(playerData[i] == 0) ? CurrentDataTrue(): CurrentDataFalse(); (playerData[i] == 0) ? CurrentDataTrue(): CurrentDataFalse();
break; break;
case "killedVoidIdol_1":
(playerData[i] === true) ? CurrentDataTrue(): CurrentDataFalse();
if (playerData[i] === false && (playerData.killedVoidIdol_2 === true || playerData.killedVoidIdol_3 === true)) CurrentDataTrue();
break;
case "killedVoidIdol_2":
(playerData[i] === true) ? CurrentDataTrue(): CurrentDataFalse();
if (playerData[i] === false && playerData.killedVoidIdol_3 === true) CurrentDataTrue();
break;
case "greyPrinceDefeated": case "greyPrinceDefeated":
case "zoteDead": case "zoteDead":
case "nailsmithSpared": case "nailsmithSpared":

View file

@ -417,12 +417,12 @@ const HK_STATISTICS = {
killedMenderBug: ["Journal: Menderbug", "Forgotten Crossroads + destroy sign"], killedMenderBug: ["Journal: Menderbug", "Forgotten Crossroads + destroy sign"],
killedBindingSeal: ["Journal: Seal of Binding", "White Palace: Path of Pain completion"], killedBindingSeal: ["Journal: Seal of Binding", "White Palace: Path of Pain completion"],
killedGodseekerMask: ["Journal: Weathered Mask", "Godhome: Land of Storms"], killedGodseekerMask: ["Journal: Weathered Mask", "Godhome: Land of Storms"],
// killedVoidIdol_1: ["Journal: Void Idol Attuned", "Godhome: Hall of Gods, all bosses"], killedVoidIdol_1: ["Journal: Void Idol Attuned", "Godhome: Hall of Gods, defeat all"],
// killedVoidIdol_2: ["Journal: Void Idol Ascended", "Godhome: Hall of Gods, all bosses"], killedVoidIdol_2: ["Journal: Void Idol Ascended", "Godhome: Hall of Gods, defeat all"],
// killedVoidIdol_3: ["Journal: Void Idol Radiant", "Godhome: Hall of Gods, all bosses"], killedVoidIdol_3: ["Journal: Void Idol Radiant", "Godhome: Hall of Gods, defeat all"],
whiteDefenderDefeats: ["White Defender times defeated", "Royal Waterways (5 max)", 5], whiteDefenderDefeats: ["White Defender times defeated", "Royal Waterways (5 max)", 5],
greyPrinceDefeats: ["Grey Prince Zote times defeated", "Dirtmouth (10 max)", 10], greyPrinceDefeats: ["Grey Prince Zote times defeated", "Dirtmouth (10 max)", 10],
// whitePalaceSecretRoomVisited: ["White Palace Secret Room visited", "White Palace: one of the secret rooms"], whitePalaceSecretRoomVisited: ["White Palace Secret Room visited", "Help identify this room!"],
killsBindingSeal: ["Path of Pain", "White Palace: main secret area"], killsBindingSeal: ["Path of Pain", "White Palace: main secret area"],
}; };