corrected Watcher Knights, added boss locations

This commit is contained in:
ReznoRMichael 2020-08-30 02:23:47 +02:00
parent 56d09ef7d0
commit 2227942fc6

View file

@ -44,20 +44,20 @@ const DIV_ID = {
}; };
const HK_BOSSES = { const HK_BOSSES = {
killedMawlek: "Brooding Mawlek", falseKnightDefeated: "False Knight (Forgotten Crossroads)",
killedBurstingBouncer: "Gruz Mother", killedMawlek: "Brooding Mawlek (Forgotten Crossroads)",
collectorDefeated: "The Collector", killedBurstingBouncer: "Gruz Mother (Forgotten Crossroads)",
defeatedMegaJelly: "Uumuu", defeatedDungDefender: "Dung Defender (Royal Waterways)",
killedMimicSpider: "Nosk", mageLordDefeated: "Soul Master (City of Tears)",
killedTraitorLord: "Traitor Lord", killedBlackKnight: "Watcher Knights (City of Tears)",
killedInfectedKnight: "Broken Vessel", collectorDefeated: "The Collector (Tower of Love)",
killedMageKnight: "Watcher Knights", defeatedMantisLords: "Mantis Lords (Mantis Village)",
defeatedDungDefender: "Dung Defender", defeatedMegaJelly: "Uumuu (Fog Canyon / Teacher's Archives)",
mageLordDefeated: "Soul Master", hornet1Defeated: "Hornet Protector (Greenpath)",
defeatedMantisLords: "Mantis Lords", hornetOutskirtsDefeated: "Hornet Sentinel (Kingdom's Edge)",
hornet1Defeated: "Hornet Protector", killedInfectedKnight: "Broken Vessel (Ancient Basin)",
hornetOutskirtsDefeated: "Hornet Sentinel", killedMimicSpider: "Nosk (Deepnest)",
falseKnightDefeated: "False Knight" killedTraitorLord: "Traitor Lord (Queen's Gardens)",
}; };
// reference: https://radiance.host/apidocs/Charms.html // reference: https://radiance.host/apidocs/Charms.html
@ -84,9 +84,9 @@ const HK_CHARMS = {
gotCharm_20: "Soul Catcher", // 2 gotCharm_20: "Soul Catcher", // 2
gotCharm_21: "Soul Eater", // 4 gotCharm_21: "Soul Eater", // 4
gotCharm_22: "Glowing Womb", // 2 gotCharm_22: "Glowing Womb", // 2
gotCharm_23: "Fragile Heart / Unbreakable Heart", // 2 gotCharm_23: "Fragile / Unbreakable Heart", // 2
gotCharm_24: "Fragile Greed / Unbreakable Greed", // 2 gotCharm_24: "Fragile / Unbreakable Greed", // 2
gotCharm_25: "Fragile Strength / Unbreakable Strength", // 3 gotCharm_25: "Fragile / Unbreakable Strength", // 3
gotCharm_26: "Nailmasters Glory", // 1 gotCharm_26: "Nailmasters Glory", // 1
gotCharm_27: "Jonis Blessing", // 4 gotCharm_27: "Jonis Blessing", // 4
gotCharm_28: "Shape of Unn", // 2 gotCharm_28: "Shape of Unn", // 2
@ -457,8 +457,8 @@ function HKReadTextArea() {
} }
function ObjectLength(object) { function ObjectLength(object) {
var length = 0; let length = 0;
for (var key in object) { for (let key in object) {
if (object.hasOwnProperty(key)) { if (object.hasOwnProperty(key)) {
++length; ++length;
} }