tr1/game-flow: fix level numbering

Resolves #2767.
This commit is contained in:
Marcin Kurczewski 2025-04-18 20:30:58 +02:00
parent 77fdc9f589
commit a3819a130a
No known key found for this signature in database
GPG key ID: CC65E6FD28CAE42A
2 changed files with 12 additions and 11 deletions

View file

@ -42,7 +42,7 @@
},
"levels": [
// Level 0: Return to Egypt
// Level 1: Return to Egypt
{
"path": "data/egypt.phd",
"music_track": 59,
@ -61,7 +61,7 @@
"unobtainable_kills": 1,
},
// Level 1: Temple of the Cat
// Level 2: Temple of the Cat
{
"path": "data/cat.phd",
"music_track": 59,
@ -81,7 +81,7 @@
"unobtainable_pickups": 1,
},
// Level 2: Atlantean Stronghold
// Level 3: Atlantean Stronghold
{
"path": "data/end.phd",
"music_track": 60,
@ -98,7 +98,7 @@
"unobtainable_kills": 1,
},
// Level 3: The Hive
// Level 4: The Hive
{
"path": "data/end2.phd",
"music_track": 60,
@ -123,7 +123,8 @@
{"type": "dummy"},
// Level 5: Current Position
// Level 6: Current Position
// This level is necessary to read TombATI's save files.
{
"path": "data/current.phd",
"type": "current",

View file

@ -1,6 +1,6 @@
{
"levels": [
// Level 0: Return to Egypt
// Level 1: Return to Egypt
{
"title": "Return to Egypt",
"objects": {
@ -8,7 +8,7 @@
},
},
// Level 1: Temple of the Cat
// Level 2: Temple of the Cat
{
"title": "Temple of the Cat",
"objects": {
@ -16,22 +16,22 @@
},
},
// Level 2: Atlantean Stronghold
// Level 3: Atlantean Stronghold
{
"title": "Atlantean Stronghold",
},
// Level 3: The Hive
// Level 4: The Hive
{
"title": "The Hive",
},
// Level 4: Title
// Level 5: Title
{
"title": "Title",
},
// Level 5: Current Position
// Level 6: Current Position
{
"title": "Current Position",
},