updated description

This commit is contained in:
ReznoRMichael 2022-02-19 22:46:42 +01:00
parent e558e621e3
commit 04111bdb0f
4 changed files with 6 additions and 5 deletions

View file

@ -5120,7 +5120,7 @@ var HK = {
huntersJournal: {
h2: "Hunter's Journal",
id: "hk-journal",
description: "All the base-game Hunter's Journal entries that are counted for Hunter's Mark and Keen Hunter/True Hunter achievements. The 17 most commonly missed Journal entries are right at the top of this list.<br>\n <i class=\"icon-ok-squared\"></i>= note completed.<br>\n <i class=\"icon-ok-squared partial\"></i>= entry discovered, but note not completed.<br>\n <i class=\"icon-cancel\"></i>= entry not yet discovered.<br>\n <b>(no.)</b> = amount left to complete note.",
description: "All the 146 base-game Hunter's Journal entries that are counted for Hunter's Mark and Keen Hunter/True Hunter achievements. The 17 most commonly missed Journal entries are right at the top of this list.<br>\n Numbers above: <b>Completed/Encountered</b> of <b>146</b> Base Total<br>\n <i class=\"icon-ok-squared\"></i>= note completed.<br>\n <i class=\"icon-ok-squared partial\"></i>= entry discovered, but note not completed.<br>\n <i class=\"icon-cancel\"></i>= entry not yet discovered.<br>\n <b>(no.)</b> = amount left to complete note.",
percent: 0,
midPercent: 0,
maxPercent: 146,
@ -12465,7 +12465,7 @@ function CompletionFill(section) {
// needed for Game Status to show percentage properly (adds a slash for all boxes except the Game Status one)
case "hk-intro":
break;
// Hunter's Journal entries, Completed:Encountered of Total, e.g. 23/134 of 146
// Hunter's Journal entries, Completed/Encountered of Total, e.g. 23/134 of 146
case "hk-journal":
cp = "".concat(cp, "/").concat(midP, " of ");

File diff suppressed because one or more lines are too long

View file

@ -1670,7 +1670,8 @@ const HK = {
huntersJournal: {
h2: "Hunter's Journal",
id: "hk-journal",
description: `All the base-game Hunter's Journal entries that are counted for Hunter's Mark and Keen Hunter/True Hunter achievements. The 17 most commonly missed Journal entries are right at the top of this list.<br>
description: `All the 146 base-game Hunter's Journal entries that are counted for Hunter's Mark and Keen Hunter/True Hunter achievements. The 17 most commonly missed Journal entries are right at the top of this list.<br>
Numbers above: <b>Completed/Encountered</b> of <b>146</b> Base Total<br>
<i class="icon-ok-squared"></i>= note completed.<br>
<i class="icon-ok-squared partial"></i>= entry discovered, but note not completed.<br>
<i class="icon-cancel"></i>= entry not yet discovered.<br>

View file

@ -859,7 +859,7 @@ function CompletionFill(section) {
case "hk-intro":
break;
// Hunter's Journal entries, Completed:Encountered of Total, e.g. 23/134 of 146
// Hunter's Journal entries, Completed/Encountered of Total, e.g. 23/134 of 146
case "hk-journal":
cp = `${cp}/${midP} of `;
break;