add in-game cheats category

This commit is contained in:
4am 2020-04-06 16:26:28 -04:00
parent 7487543417
commit 242788dead
2 changed files with 13 additions and 3 deletions

View File

@ -181,7 +181,7 @@
1000,RED.ALERT 1000,RED.ALERT
1110,RENEGADE 1110,RENEGADE
0000,REPTON 0000,REPTON
0000,RESCUE.RAIDERS 0004,RESCUE.RAIDERS
0000,RIBBIT 0000,RIBBIT
0000,ROADBLOCK 0000,ROADBLOCK
0110,ROBOCOP 0110,ROBOCOP
@ -207,7 +207,7 @@
1000,SPACE.EGGS 1000,SPACE.EGGS
0000,SPACE.QUARKS 0000,SPACE.QUARKS
0000,SPACE.RAIDERS 0000,SPACE.RAIDERS
0000,SPARE.CHANGE 0004,SPARE.CHANGE
0000,SPDWAY.CLASSIC=Speedway Classic 0000,SPDWAY.CLASSIC=Speedway Classic
0110,SPIDERBOT 0110,SPIDERBOT
0000,SPIDER.RAID 0000,SPIDER.RAID
@ -278,6 +278,7 @@
# 1=infinite lives # 1=infinite lives
# 2=infinite lives & weapons # 2=infinite lives & weapons
# 3=invincibility # 3=invincibility
# 4=has in-game cheats
# #
# if no name, it will be calculated from the directory when we need to display it # if no name, it will be calculated from the directory when we need to display it
# #

View File

@ -20,18 +20,20 @@ ReturnToPlay
!byte $0D !byte $0D
!text " to play" !text " to play"
kCheatsEnabled = 4 ; index of 'cheats enabled' string in following table kCheatsEnabled = 5 ; index of 'cheats enabled' string in following table
kCheatDescriptionLo kCheatDescriptionLo
!byte <sNoCheats !byte <sNoCheats
!byte <sInfiniteLives !byte <sInfiniteLives
!byte <sInfiniteLivesAndWeapons !byte <sInfiniteLivesAndWeapons
!byte <sInvincibility !byte <sInvincibility
!byte <sInGame
!byte <sCheatsEnabled !byte <sCheatsEnabled
kCheatDescriptionHi kCheatDescriptionHi
!byte >sNoCheats !byte >sNoCheats
!byte >sInfiniteLives !byte >sInfiniteLives
!byte >sInfiniteLivesAndWeapons !byte >sInfiniteLivesAndWeapons
!byte >sInvincibility !byte >sInvincibility
!byte >sInGame
!byte >sCheatsEnabled !byte >sCheatsEnabled
sNoCheats sNoCheats
!byte 8 ; length !byte 8 ; length
@ -57,6 +59,13 @@ sInvincibility
!text "invincible" !text "invincible"
!text " " !text " "
!byte $16 ; bolt character !byte $16 ; bolt character
sInGame
!byte 18 ; length
!byte $16 ; bolt character
!text " "
!text "in-game cheats"
!text " "
!byte $16 ; bolt character
sCheatsEnabled sCheatsEnabled
!byte 18 ; length !byte 18 ; length
!byte $16 ; bolt character !byte $16 ; bolt character