add Stag Stations to database
This commit is contained in:
parent
2b60bc8e66
commit
48f24e3142
4 changed files with 87 additions and 11 deletions
15
build/app.js
15
build/app.js
|
|
@ -1066,7 +1066,16 @@ function CheckAdditionalThings(section, dataObject, playerData, worldData, scene
|
|||
}
|
||||
|
||||
if (i === "stationsOpened") {
|
||||
if (playerData.openedHiddenStation === true) amount++;
|
||||
/* Add Dirtmouth and Hidden Station */
|
||||
if (playerData.openedTownBuilding === true) amount++;
|
||||
/* backwards compatibility check */
|
||||
|
||||
if (playerData.hasOwnProperty("openedHiddenStation")) {
|
||||
if (playerData.openedHiddenStation === true) amount++;
|
||||
} else {
|
||||
/* Subtract one from maximum for extended completion counting */
|
||||
dataObject[i].max--;
|
||||
}
|
||||
}
|
||||
|
||||
countTotal = amount;
|
||||
|
|
@ -4086,8 +4095,8 @@ var HK = {
|
|||
},
|
||||
stationsOpened: {
|
||||
name: "Stag Stations Opened",
|
||||
spoiler: "10 Stag Stations total",
|
||||
max: 10,
|
||||
spoiler: "11 Stag Stations total including Dirtmouth",
|
||||
max: 11,
|
||||
wiki: "Fast_Travel_(Hollow_Knight)#Locations_and_Prices"
|
||||
},
|
||||
fountainGeo: {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1194,7 +1194,19 @@ function CheckAdditionalThings(section, dataObject, playerData, worldData, scene
|
|||
}
|
||||
|
||||
if (i === "stationsOpened") {
|
||||
if (playerData.openedHiddenStation === true) amount++;
|
||||
|
||||
/* Add Dirtmouth and Hidden Station */
|
||||
if (playerData.openedTownBuilding === true) amount++;
|
||||
|
||||
/* backwards compatibility check */
|
||||
if (playerData.hasOwnProperty("openedHiddenStation")) {
|
||||
|
||||
if (playerData.openedHiddenStation === true) amount++;
|
||||
} else {
|
||||
|
||||
/* Subtract one from maximum for extended completion counting */
|
||||
dataObject[i].max--;
|
||||
}
|
||||
}
|
||||
|
||||
countTotal = amount;
|
||||
|
|
|
|||
|
|
@ -1095,18 +1095,73 @@ const HK = {
|
|||
max: 2400,
|
||||
wiki: "Dream_Nail#Essence"
|
||||
},
|
||||
stationsOpened: {
|
||||
name: "Stag Stations Opened",
|
||||
spoiler: "10 Stag Stations total",
|
||||
max: 10,
|
||||
wiki: "Fast_Travel_(Hollow_Knight)#Locations_and_Prices"
|
||||
},
|
||||
fountainGeo: {
|
||||
name: "Geo in Fountain",
|
||||
spoiler: "Ancient Basin: 3000 Geo maximum",
|
||||
max: 3000,
|
||||
wiki: "Ancient_Basin#Description"
|
||||
},
|
||||
openedTownBuilding: {
|
||||
name: "Stag Station: Dirtmouth",
|
||||
spoiler: "Opened from inside after travelling",
|
||||
wiki: "Dirtmouth"
|
||||
},
|
||||
openedCrossroads: {
|
||||
name: "Stag Station: Forgotten Crossroads",
|
||||
spoiler: "Right middle-bottom area",
|
||||
wiki: "Forgotten_Crossroads"
|
||||
},
|
||||
openedGreenpath: {
|
||||
name: "Stag Station: Greenpath",
|
||||
spoiler: "Top middle area, below Hornet entrance",
|
||||
wiki: "Greenpath"
|
||||
},
|
||||
openedRuins1: {
|
||||
name: "Stag Station: City Storerooms",
|
||||
spoiler: "Top left area of City of Tears",
|
||||
wiki: "City_of_Tears"
|
||||
},
|
||||
openedRuins2: {
|
||||
name: "Stag Station: King's Station",
|
||||
spoiler: "Far right area of City of Tears",
|
||||
wiki: "City_of_Tears"
|
||||
},
|
||||
openedFungalWastes: {
|
||||
name: "Stag Station: Queen's Station",
|
||||
spoiler: "Left area of Fungal Wastes, near Fog Canyon",
|
||||
wiki: "Fungal_Wastes"
|
||||
},
|
||||
openedRoyalGardens: {
|
||||
name: "Stag Station: Queen's Gardens",
|
||||
spoiler: "Middle area of Queen's Gardens",
|
||||
wiki: "Queen's_Gardens"
|
||||
},
|
||||
openedRestingGrounds: {
|
||||
name: "Stag Station: Resting Grounds",
|
||||
spoiler: "Right middle area of Resting Grounds",
|
||||
wiki: "Resting_Grounds"
|
||||
},
|
||||
openedDeepnest: {
|
||||
name: "Stag Station: Distant Village",
|
||||
spoiler: "",
|
||||
wiki: ""
|
||||
},
|
||||
openedHiddenStation: {
|
||||
name: "Stag Station: Hidden Station",
|
||||
spoiler: "",
|
||||
wiki: ""
|
||||
},
|
||||
openedStagNest: {
|
||||
name: "Stag Station: Stag Nest",
|
||||
spoiler: "",
|
||||
wiki: ""
|
||||
},
|
||||
stagStationsOpened: {
|
||||
name: "Stag Stations Opened",
|
||||
spoiler: "11 Stag Stations total including Dirtmouth",
|
||||
max: 11,
|
||||
wiki: "Fast_Travel_(Hollow_Knight)#Locations_and_Prices"
|
||||
},
|
||||
slyRescued: {
|
||||
name: "Sly Rescued",
|
||||
spoiler: "Forgotten Crossroads, near Gruz Mother",
|
||||
|
|
|
|||
Loading…
Reference in a new issue