geo caches tab

This commit is contained in:
ReznoRMichael 2022-01-16 20:23:52 +01:00
parent b45e94a1df
commit a94d4743c1
3 changed files with 35 additions and 3 deletions

View file

@ -6058,6 +6058,22 @@ var HK = {
} }
}, },
/* ###################################### Geo Caches -> Geo Chests ############################################## */
geoChests: {
h2: "Geo Chests",
id: "hk-geo-chests",
description: "Geo Chests Description.",
entries: {
chest1: {
name: "Chest #1",
spoiler: "Chest",
id: "Chest",
sceneName: "",
wiki: "Geo#How_to_Acquire"
}
}
},
/* ###################################### Secrets -> World Interactions ############################################## */ /* ###################################### Secrets -> World Interactions ############################################## */
worldInteractions: { worldInteractions: {
h2: "World Interactions", h2: "World Interactions",
@ -8718,6 +8734,12 @@ function GenerateInnerHTML(db) {
textFill += "<div id=\"tab-collectibles\" class=\"large-section\">"; textFill += "<div id=\"tab-collectibles\" class=\"large-section\">";
break; break;
/* Geo Caches */
case "geoChests":
textFill += "<div id=\"tab-geocaches\" class=\"large-section\">";
break;
/* Secrets */ /* Secrets */
case "worldInteractions": case "worldInteractions":
@ -9089,9 +9111,11 @@ function GenerateInnerHTML(db) {
case "items": // Collectibles case "items": // Collectibles
case "geoChests": // Geo Caches
case "secretRooms": // Secrets case "secretRooms": // Secrets
case "statistics": // Stats case "statistics": // Statistics
case "hallOfGods": case "hallOfGods":
// Godmaster // Godmaster

File diff suppressed because one or more lines are too long

View file

@ -278,6 +278,13 @@ function GenerateInnerHTML(db) {
break; break;
/* Geo Caches */
case "geoChests":
textFill += `<div id="tab-geocaches" class="large-section">`;
break;
/* Secrets */ /* Secrets */
case "worldInteractions": case "worldInteractions":
@ -671,8 +678,9 @@ function GenerateInnerHTML(db) {
case "achievements": // Essentials case "achievements": // Essentials
case "huntersJournalOptional": // Journal case "huntersJournalOptional": // Journal
case "items": // Collectibles case "items": // Collectibles
case "geoChests": // Geo Caches
case "secretRooms": // Secrets case "secretRooms": // Secrets
case "statistics": // Stats case "statistics": // Statistics
case "hallOfGods": // Godmaster case "hallOfGods": // Godmaster
finalHTMLFill += `</div>`; finalHTMLFill += `</div>`;