bosses added to hall of gods
This commit is contained in:
parent
48d7740007
commit
968811c9c1
4 changed files with 76 additions and 14 deletions
44
build/app.js
44
build/app.js
|
|
@ -1868,9 +1868,13 @@ function CheckHallOfGods(db, playerData) {
|
|||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIcon)(section, entry, "partial");
|
||||
break;
|
||||
}
|
||||
} else if (isUnlocked) {
|
||||
}
|
||||
/* When boss is only unlocked, other entries get a gray icon (awaiting completion) */
|
||||
else if (isUnlocked) {
|
||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIcon)(section, entry, "partial");
|
||||
} else {
|
||||
}
|
||||
/* When not unlocked, every entry gets a red icon */
|
||||
else {
|
||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconRed)(section, entry);
|
||||
}
|
||||
}
|
||||
|
|
@ -6504,32 +6508,60 @@ var HK = {
|
|||
description: "Bottom of Godhome. Detecting what bosses have been unlocked and defeated on all three difficulty levels: Attuned, Ascended and Radiant.",
|
||||
entries: {
|
||||
GruzMotherUnlocked: {
|
||||
name: "P1 Gruz Mother: Unlocked",
|
||||
name: "Gruz Mother: Unlocked",
|
||||
spoiler: "I sleep amongst winding roads",
|
||||
id: "GruzMother",
|
||||
check: "isUnlocked",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherAttuned: {
|
||||
name: "P1 Gruz Mother: Attuned",
|
||||
name: "Gruz Mother: Attuned",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier1",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherAscended: {
|
||||
name: "P1 Gruz Mother: Ascended",
|
||||
name: "Gruz Mother: Ascended",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier2",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherRadiant: {
|
||||
name: "P1 Gruz Mother: Radiant",
|
||||
name: "Gruz Mother: Radiant",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier3",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
VengeflyUnlocked: {
|
||||
name: "Vengefly King: Unlocked",
|
||||
spoiler: "I keep guard above a verdant land",
|
||||
id: "Vengefly",
|
||||
check: "isUnlocked",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyAttuned: {
|
||||
name: "Vengefly King: Attuned",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier1",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyAscended: {
|
||||
name: "Vengefly King: Ascended",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier2",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyRadiant: {
|
||||
name: "Vengefly King: Radiant",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier3",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2054,9 +2054,11 @@ function CheckHallOfGods(db, playerData) {
|
|||
}
|
||||
|
||||
}
|
||||
/* When boss is only unlocked, other entries get a gray icon (awaiting completion) */
|
||||
else if (isUnlocked) {
|
||||
SetIcon(section, entry, "partial");
|
||||
}
|
||||
/* When not unlocked, every entry gets a red icon */
|
||||
else {
|
||||
SetIconRed(section, entry);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3372,33 +3372,61 @@ const HK = {
|
|||
description: "Bottom of Godhome. Detecting what bosses have been unlocked and defeated on all three difficulty levels: Attuned, Ascended and Radiant.",
|
||||
entries: {
|
||||
GruzMotherUnlocked: {
|
||||
name: "P1 Gruz Mother: Unlocked",
|
||||
name: "Gruz Mother: Unlocked",
|
||||
spoiler: "I sleep amongst winding roads",
|
||||
id: "GruzMother",
|
||||
check: "isUnlocked",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherAttuned: {
|
||||
name: "P1 Gruz Mother: Attuned",
|
||||
name: "Gruz Mother: Attuned",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier1",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherAscended: {
|
||||
name: "P1 Gruz Mother: Ascended",
|
||||
name: "Gruz Mother: Ascended",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier2",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
GruzMotherRadiant: {
|
||||
name: "P1 Gruz Mother: Radiant",
|
||||
name: "Gruz Mother: Radiant",
|
||||
spoiler: "Slumbering god of fertility",
|
||||
id: "GruzMother",
|
||||
check: "completedTier3",
|
||||
wiki: "Hall_of_Gods#Gruz_Mother"
|
||||
},
|
||||
VengeflyUnlocked: {
|
||||
name: "Vengefly King: Unlocked",
|
||||
spoiler: "I keep guard above a verdant land",
|
||||
id: "Vengefly",
|
||||
check: "isUnlocked",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyAttuned: {
|
||||
name: "Vengefly King: Attuned",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier1",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyAscended: {
|
||||
name: "Vengefly King: Ascended",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier2",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
VengeflyRadiant: {
|
||||
name: "Vengefly King: Radiant",
|
||||
spoiler: "Vicious god of territories",
|
||||
id: "Vengefly",
|
||||
check: "completedTier3",
|
||||
wiki: "Hall_of_Gods#Vengefly_King"
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue