simple key #4 backwards compatibility
This commit is contained in:
parent
c36ecab0f7
commit
5ead6384bf
3 changed files with 13 additions and 4 deletions
File diff suppressed because one or more lines are too long
|
|
@ -578,7 +578,7 @@ function CheckIfDataTrue(divId, dataObject, playerData) {
|
||||||
case "killedHiveKnight":
|
case "killedHiveKnight":
|
||||||
case "hasGodfinder":
|
case "hasGodfinder":
|
||||||
// fades out the entries if save file is from older game versions
|
// fades out the entries if save file is from older game versions
|
||||||
if (!playerData.hasOwnProperty(i)) {
|
if (playerData.hasOwnProperty(i) === false) {
|
||||||
CurrentDataBlank();
|
CurrentDataBlank();
|
||||||
textPrefix = `<del>${textPrefix}</del>`;
|
textPrefix = `<del>${textPrefix}</del>`;
|
||||||
textSuffix = `<del>${textSuffix}</del>`;
|
textSuffix = `<del>${textSuffix}</del>`;
|
||||||
|
|
@ -842,6 +842,15 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
case "simpleKeyAncientBasin": // #3
|
case "simpleKeyAncientBasin": // #3
|
||||||
(FindWorldItem("Abyss_20", "Shiny Item Stand")) ? CurrentDataTrue(): CurrentDataFalse();
|
(FindWorldItem("Abyss_20", "Shiny Item Stand")) ? CurrentDataTrue(): CurrentDataFalse();
|
||||||
break;
|
break;
|
||||||
|
case "gotLurkerKey":
|
||||||
|
if (playerData.hasOwnProperty("gotLurkerKey") === false) {
|
||||||
|
CurrentDataBlank();
|
||||||
|
textPrefix = `<del>${textPrefix}</del>`;
|
||||||
|
textSuffix = `<del>${textSuffix}</del>`;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
(playerData[i] === true) ? CurrentDataTrue(): CurrentDataFalse();
|
||||||
|
break;
|
||||||
case "paleOreAncientBasin": // #1
|
case "paleOreAncientBasin": // #1
|
||||||
(FindWorldItem("Abyss_17", "Battle Scene Ore")) ? CurrentDataTrue(): CurrentDataFalse();
|
(FindWorldItem("Abyss_17", "Battle Scene Ore")) ? CurrentDataTrue(): CurrentDataFalse();
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
|
|
@ -797,7 +797,7 @@ const HK = {
|
||||||
},
|
},
|
||||||
gotLurkerKey: {
|
gotLurkerKey: {
|
||||||
name: "Simple Key #4",
|
name: "Simple Key #4",
|
||||||
spoiler: "Kingdom's Edge: Colosseum of Fools"
|
spoiler: "Colosseum of Fools: Pale Lurker's Retreat"
|
||||||
},
|
},
|
||||||
paleOreAncientBasin: {
|
paleOreAncientBasin: {
|
||||||
name: "Pale Ore #1",
|
name: "Pale Ore #1",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue