button names

This commit is contained in:
ReznoRMichael 2021-08-02 22:44:33 +02:00
parent b10319fdf8
commit 25a71b2c2c
3 changed files with 20 additions and 5 deletions

View file

@ -4498,6 +4498,21 @@ var HK = {
id: "hk-achievements", id: "hk-achievements",
description: "All the completely optional things that matter for achievements. This includes the rarest and most likely missable Hunter's Journal enemies (prefixed by \"Journal: \"). You will also see your Zote/Nailsmith choices that you've made.", description: "All the completely optional things that matter for achievements. This includes the rarest and most likely missable Hunter's Journal enemies (prefixed by \"Journal: \"). You will also see your Zote/Nailsmith choices that you've made.",
entries: { entries: {
hasMap: {
name: "Inventory Map",
spoiler: "Any map bought from Cornifer or Iselda",
wiki: "Map_and_Quill"
},
mapCrossroads: {
name: "Map: Forgotten Crossroads",
spoiler: "30/40 Geo: below Gruzzer area",
wiki: "Forgotten_Crossroads"
},
mapGreenpath: {
name: "Map: Greenpath",
spoiler: "60/80 Geo: just below Greenpath entrance",
wiki: "Greenpath"
},
areaMaps: { areaMaps: {
name: "Area Maps", name: "Area Maps",
spoiler: "Cornifer and Iselda, 13 Area Maps total", spoiler: "Cornifer and Iselda, 13 Area Maps total",
@ -5569,7 +5584,7 @@ var HK = {
} }
}, },
/* ################ Game Statistics ################### */ /* ################ Optional Journal Entries ################### */
huntersJournalOptional: { huntersJournalOptional: {
h2: "Optional Journal Entries", h2: "Optional Journal Entries",
id: "hk-journal-optional", id: "hk-journal-optional",
@ -6749,7 +6764,7 @@ function GenerateInnerHTML(db) {
switch (section) { switch (section) {
case "bosses": case "bosses":
textFill += ["<div class=\"tab-switch-buttons\">", "<button id=\"button-switch-main\" name=\"main\" class=\"button tab-switch\" type=\"button\">Main</button>", "<button id=\"button-switch-essential\" name=\"essential\" class=\"button tab-switch\" type=\"button\">Essential</button>", "<button id=\"button-switch-journal\" name=\"journal\" class=\"button tab-switch\" type=\"button\">Journal</button>", "<button id=\"button-switch-statistics\" name=\"statistics\" class=\"button tab-switch\" type=\"button\">Stats</button>", "<button id=\"button-switch-godhome\" name=\"godhome\" class=\"button tab-switch\" type=\"button\">Godhome</button>", "</div>"].join("\n"); textFill += ["<div class=\"tab-switch-buttons\">", "<button id=\"button-switch-main\" name=\"main\" class=\"button tab-switch\" type=\"button\">Main</button>", "<button id=\"button-switch-essential\" name=\"essential\" class=\"button tab-switch\" type=\"button\">Essentials</button>", "<button id=\"button-switch-journal\" name=\"journal\" class=\"button tab-switch\" type=\"button\">Journal</button>", "<button id=\"button-switch-statistics\" name=\"statistics\" class=\"button tab-switch\" type=\"button\">Stats</button>", "<button id=\"button-switch-godhome\" name=\"godhome\" class=\"button tab-switch\" type=\"button\">Godmaster</button>", "</div>"].join("\n");
textFill += "<div id=\"tab-main\" class=\"large-section\">"; textFill += "<div id=\"tab-main\" class=\"large-section\">";
break; break;

File diff suppressed because one or more lines are too long

View file

@ -199,10 +199,10 @@ function GenerateInnerHTML(db) {
textFill += [ textFill += [
`<div class="tab-switch-buttons">`, `<div class="tab-switch-buttons">`,
`<button id="button-switch-main" name="main" class="button tab-switch" type="button">Main</button>`, `<button id="button-switch-main" name="main" class="button tab-switch" type="button">Main</button>`,
`<button id="button-switch-essential" name="essential" class="button tab-switch" type="button">Essential</button>`, `<button id="button-switch-essential" name="essential" class="button tab-switch" type="button">Essentials</button>`,
`<button id="button-switch-journal" name="journal" class="button tab-switch" type="button">Journal</button>`, `<button id="button-switch-journal" name="journal" class="button tab-switch" type="button">Journal</button>`,
`<button id="button-switch-statistics" name="statistics" class="button tab-switch" type="button">Stats</button>`, `<button id="button-switch-statistics" name="statistics" class="button tab-switch" type="button">Stats</button>`,
`<button id="button-switch-godhome" name="godhome" class="button tab-switch" type="button">Godhome</button>`, `<button id="button-switch-godhome" name="godhome" class="button tab-switch" type="button">Godmaster</button>`,
`</div>`, `</div>`,
].join("\n"); ].join("\n");