mantisVillageFloorLever
This commit is contained in:
parent
bfe9226a2a
commit
302e315855
5 changed files with 27 additions and 5 deletions
20
build/app.js
20
build/app.js
|
|
@ -778,6 +778,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
|||
case "pantheonSoulWarrior":
|
||||
case "pantheonCrystalGuardian":
|
||||
case "pantheonEnragedGuardian":
|
||||
case "mantisVillageFloorLever":
|
||||
FindWorldItem(dataObject[i].id, dataObject[i].sceneName) ? CurrentDataTrue() : CurrentDataFalse();
|
||||
break;
|
||||
|
||||
|
|
@ -2552,7 +2553,7 @@ var HK = {
|
|||
spoiler: "...a fellow town bug who seems to be lost somewhere in the crossroads"
|
||||
},
|
||||
hasLantern: {
|
||||
spoiler: "...a precious item able to carry some light to even the darkest places"
|
||||
spoiler: "...bright little crystal companion able to light a way through the thickest dark places"
|
||||
},
|
||||
hasSuperDash: {
|
||||
spoiler: "...some powerful crystal beating somewhere deep inside the mines"
|
||||
|
|
@ -2560,11 +2561,17 @@ var HK = {
|
|||
hasDreamNail: {
|
||||
spoiler: "...a weapon from a dream world only found where the souls can peacefully rest"
|
||||
},
|
||||
|
||||
/*
|
||||
Either:
|
||||
- used the elevator in Resting Grounds to City of Tears
|
||||
- opened the Fungal Wastes city gate
|
||||
*/
|
||||
killedInfectedKnight: {
|
||||
spoiler: "...a shattered corpse forgotten in a windy cave in the ancient depths below the city"
|
||||
spoiler: "...a shattered corpse forgotten in a windy cave in the ancient depths below the rainy city"
|
||||
},
|
||||
hasDoubleJump: {
|
||||
spoiler: "...something incredibly light dropped by a monarchfly in the ancient depths below the city"
|
||||
spoiler: "...something incredibly light dropped by a monarchfly in the ancient depths below the rainy city"
|
||||
},
|
||||
killedBlackKnight: {
|
||||
spoiler: "...discarded shells of black guards lying on the floor of a high spire"
|
||||
|
|
@ -3360,6 +3367,13 @@ var HK = {
|
|||
"id": "Mantis Lever (1)",
|
||||
"sceneName": "Fungus2_14",
|
||||
*/
|
||||
mantisVillageFloorLever: {
|
||||
name: "Mantis Village Floor Lever",
|
||||
spoiler: "Fungal Wastes, right of Mantis Claw",
|
||||
id: "Mantis Lever (1)",
|
||||
sceneName: "Fungus2_14",
|
||||
wiki: "Fungal_Wastes#Sub-area:_Mantis_Village"
|
||||
},
|
||||
hasLantern: {
|
||||
name: "Lumafly Lantern",
|
||||
spoiler: "Sly: 1800 Geo",
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -243,7 +243,7 @@
|
|||
<div style="margin-bottom: 20px;"></div>
|
||||
|
||||
<p class="smalltext">
|
||||
v1.3.0. Work-In-Progress. Feedback: <a href="https://steamcommunity.com/app/367520/discussions/0/2915472677711090083/" target="_blank"><i class="simpleicon-steam"></i>Steam Discussions</a> <a href="https://steamcommunity.com/sharedfiles/filedetails/?id=2209910193" target="_blank"><i class="simpleicon-steam"></i>Steam Guide</a>.<br>
|
||||
v1.4.0. Work-In-Progress. Feedback: <a href="https://steamcommunity.com/app/367520/discussions/0/2915472677711090083/" target="_blank"><i class="simpleicon-steam"></i>Steam Discussions</a> <a href="https://steamcommunity.com/sharedfiles/filedetails/?id=2209910193" target="_blank"><i class="simpleicon-steam"></i>Steam Guide</a>.<br>
|
||||
Programmed, written and created by 🉑 <a href="https://github.com/ReznoRMichael/hollow-knight-completion-check" target="_blank">rezno[R]</a> © 2020–2021<br>
|
||||
<a href="https://store.steampowered.com/app/367520/Hollow_Knight/" target="_blank">Hollow Knight</a> by <a href="https://teamcherry.com.au/" target="_blank">Team Cherry</a> © 2017–2021<br>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -847,6 +847,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
|||
case "pantheonSoulWarrior":
|
||||
case "pantheonCrystalGuardian":
|
||||
case "pantheonEnragedGuardian":
|
||||
case "mantisVillageFloorLever":
|
||||
(FindWorldItem(dataObject[i].id, dataObject[i].sceneName)) ? CurrentDataTrue(): CurrentDataFalse();
|
||||
break;
|
||||
case "relicsWandererJournal":
|
||||
|
|
|
|||
|
|
@ -914,6 +914,13 @@ const HK = {
|
|||
"id": "Mantis Lever (1)",
|
||||
"sceneName": "Fungus2_14",
|
||||
*/
|
||||
mantisVillageFloorLever: {
|
||||
name: "Mantis Village Floor Lever",
|
||||
spoiler: "Fungal Wastes, right of Mantis Claw",
|
||||
id: "Mantis Lever (1)",
|
||||
sceneName: "Fungus2_14",
|
||||
wiki: "Fungal_Wastes#Sub-area:_Mantis_Village"
|
||||
},
|
||||
hasLantern: {
|
||||
name: "Lumafly Lantern",
|
||||
spoiler: "Sly: 1800 Geo",
|
||||
|
|
|
|||
Loading…
Reference in a new issue