Increase Hunter's Journal entries discovered amount
This commit is contained in:
parent
6125d061de
commit
84293c68fd
2 changed files with 9 additions and 0 deletions
|
|
@ -1676,6 +1676,7 @@ const HK = {
|
|||
<i class="icon-cancel"></i>= entry not yet discovered.<br>
|
||||
<b>(no.)</b> = amount left to complete note.`,
|
||||
percent: 0,
|
||||
midPercent: 0,
|
||||
maxPercent: 146,
|
||||
entries: {
|
||||
PrayerSlug: {
|
||||
|
|
|
|||
|
|
@ -42,6 +42,14 @@ function SetIconPartial(section = {}, entry = "") {
|
|||
*/
|
||||
function SetIconPartialJournal(section = {}, entry = "") {
|
||||
|
||||
/* Increase Hunter's Journal entries discovered amount */
|
||||
switch (section.id) {
|
||||
|
||||
case "hk-journal":
|
||||
section.midPercent++;
|
||||
break;
|
||||
}
|
||||
|
||||
section.entries[entry].icon = "partialJournal";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue