add Pantheon of Hallownest to database

This commit is contained in:
ReznoRMichael 2021-08-04 16:38:59 +02:00
parent 7a37f628a7
commit bc178651f7
4 changed files with 100 additions and 2 deletions

View file

@ -208,7 +208,8 @@ function HKCheckCompletion(jsonObject) {
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfTheMaster", HKPlayerData);
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfTheArtist", HKPlayerData);
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfTheSage", HKPlayerData);
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfTheKnight", HKPlayerData); // ------------------------- Hints ----------------------------- //
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfTheKnight", HKPlayerData);
CheckPantheon(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default, "pantheonOfHallownest", HKPlayerData); // ------------------------- Hints ----------------------------- //
CheckHintsTrue(_hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default.sections.hints, _hk_database_js__WEBPACK_IMPORTED_MODULE_0__.default.sections.hints.entries, HKPlayerData, HKWorldItems); // ------------------------- Extended game completion check ----------------------------- //
@ -6470,6 +6471,54 @@ var HK = {
wiki: "Pantheons"
}
}
},
pantheonOfHallownest: {
h2: "Pantheon of Hallownest (P5)",
id: "hk-pantheon-hallownest",
property: "bossDoorStateTier5",
description: "Seek the Kingdom's Forgotten Light",
entries: {
unlocked: {
name: "P5 Unlocked",
spoiler: "Complete 4 previous Pantheons to unlock",
wiki: "Pantheon_of_Hallownest"
},
completed: {
name: "P5 Completed",
spoiler: "Defeat all bosses in a row to complete",
wiki: "Pantheon_of_Hallownest"
},
boundNail: {
name: "P5 Binding: Nail",
spoiler: "Complete with the Nail binding active",
wiki: "Pantheons#Bindings"
},
boundShell: {
name: "P5 Binding: Shell",
spoiler: "Complete with the Shell binding active",
wiki: "Pantheons#Bindings"
},
boundCharms: {
name: "P5 Binding: Charms",
spoiler: "Complete with the Charm binding active",
wiki: "Pantheons#Bindings"
},
boundSoul: {
name: "P5 Binding: Soul",
spoiler: "Complete with the Soul binding active",
wiki: "Pantheons#Bindings"
},
allBindings: {
name: "P5 All Bindings",
spoiler: "Complete with all bindings active at once",
wiki: "Pantheons#Bindings"
},
noHits: {
name: "P5 No Damage",
spoiler: "Complete without taking a single hit",
wiki: "Pantheons"
}
}
}
}
};

File diff suppressed because one or more lines are too long

View file

@ -266,6 +266,7 @@ function HKCheckCompletion(jsonObject, benchStart = performance.now()) {
CheckPantheon(HK, "pantheonOfTheArtist", HKPlayerData);
CheckPantheon(HK, "pantheonOfTheSage", HKPlayerData);
CheckPantheon(HK, "pantheonOfTheKnight", HKPlayerData);
CheckPantheon(HK, "pantheonOfHallownest", HKPlayerData);
// ------------------------- Hints ----------------------------- //

View file

@ -3301,6 +3301,54 @@ const HK = {
wiki: "Pantheons"
},
},
},
pantheonOfHallownest: {
h2: "Pantheon of Hallownest (P5)",
id: "hk-pantheon-hallownest",
property: "bossDoorStateTier5",
description: "Seek the Kingdom's Forgotten Light",
entries: {
unlocked: {
name: "P5 Unlocked",
spoiler: "Complete 4 previous Pantheons to unlock",
wiki: "Pantheon_of_Hallownest"
},
completed: {
name: "P5 Completed",
spoiler: "Defeat all bosses in a row to complete",
wiki: "Pantheon_of_Hallownest"
},
boundNail: {
name: "P5 Binding: Nail",
spoiler: "Complete with the Nail binding active",
wiki: "Pantheons#Bindings"
},
boundShell: {
name: "P5 Binding: Shell",
spoiler: "Complete with the Shell binding active",
wiki: "Pantheons#Bindings"
},
boundCharms: {
name: "P5 Binding: Charms",
spoiler: "Complete with the Charm binding active",
wiki: "Pantheons#Bindings"
},
boundSoul: {
name: "P5 Binding: Soul",
spoiler: "Complete with the Soul binding active",
wiki: "Pantheons#Bindings"
},
allBindings: {
name: "P5 All Bindings",
spoiler: "Complete with all bindings active at once",
wiki: "Pantheons#Bindings"
},
noHits: {
name: "P5 No Damage",
spoiler: "Complete without taking a single hit",
wiki: "Pantheons"
},
},
}
},
};