rearranging database

This commit is contained in:
ReznoRMichael 2021-06-27 14:55:11 +02:00
parent d07d720ca4
commit 7676d0e236

View file

@ -12,15 +12,45 @@ const HK = {
intro: { intro: {
h2: "Game Status", h2: "Game Status",
id: "hk-intro", id: "hk-intro",
percent: 0,
maxPercent: 112, maxPercent: 112,
entries: { entries: {
timePlayed: "0 h 00 min 00 sec", timePlayed: {
gameCompletion: 0, name: "Time Played:",
saveVersion: "0.0.0.0", spoiler: `${HK.SECTION.intro.entries.timePlayed.timeH} h ${HK.SECTION.intro.entries.timePlayed.timeM} min ${HK.SECTION.intro.entries.timePlayed.timeS} sec"`,
health: 5, timeH: 0,
soul: 99, timeM: 0,
notches: 3, timeS: 0,
geo: 0 },
gameCompletion: {
name: "Game Completion:",
spoiler: `${HK.SECTION.intro.percent} %`,
text: `(out of ${HK.SECTION.intro.maxPercent} %)`
},
saveVersion: {
name: "Save Version:",
spoiler: "0.0.0.0"
},
health: {
name: "Health:",
spoiler: "",
masks: 5
},
soul: {
name: "Soul:",
spoiler: "",
amount: 99
},
notches: {
name: "Notches:",
spoiler: "",
amount: 3
},
geo: {
name: "Geo:",
spoiler: "",
amount: 0
}
}, },
}, },