mirror of
https://github.com/pkali/scorch_src.git
synced 2026-05-20 22:34:21 +02:00
Added option to select random mountains for each round.
This commit is contained in:
@@ -13,7 +13,7 @@ OptionsHere
|
||||
dta d"Rounds : 10 20 30 40 50 "
|
||||
dta d"Missiles : slug slow norm fast hare "
|
||||
dta d"Seppuku : nevr rare norm oftn alws "
|
||||
dta d"Mountains: NL BE CZ CH NP "
|
||||
dta d"Mountain : NL BE CZ CH NP "
|
||||
dta d"Walls : none wrap bump boxy rand "
|
||||
;; 01234567890123456789012345678901
|
||||
; dta d"Players: 2 3 4 5 6 "
|
||||
|
||||
@@ -69,7 +69,9 @@ MoreDown
|
||||
dta 93,93,93
|
||||
dta d" more "
|
||||
dta 93,93,93
|
||||
dta d" "
|
||||
; dta d" " ; common part of text and empty line :)
|
||||
EmptyLine
|
||||
dta d" "
|
||||
WeaponsDescription
|
||||
; 0123456789012345678901234567890123456789
|
||||
.IF TARGET = 800
|
||||
@@ -105,8 +107,6 @@ ActivateDescription
|
||||
dta d"FIRE"*
|
||||
dta d": Finish "
|
||||
.ENDIF
|
||||
EmptyLine
|
||||
dta d" "
|
||||
;---------------------------------------------------
|
||||
OptionsTitle
|
||||
.IF TARGET = 800
|
||||
@@ -115,13 +115,13 @@ OptionsTitle
|
||||
dta d" scorch supersystem "*
|
||||
.ENDIF
|
||||
DifficultyTitle
|
||||
dta d" difficulty "*
|
||||
dta d" difficulty"* ; " " 3 bytes - common part of 2 texts
|
||||
GameOverTitle
|
||||
dta d" game over "*
|
||||
PurchaseTitle
|
||||
dta d"purchase weapons"
|
||||
InventoryTitle
|
||||
dta d"activate weapons"*
|
||||
GameOverTitle
|
||||
dta d" game over "*
|
||||
GameOverTitle2
|
||||
dta d" Player Points Hits Earned Money "
|
||||
;-----------------------------------------------------
|
||||
|
||||
+9
-1
@@ -68,7 +68,8 @@
|
||||
mva #0 OptionsY
|
||||
|
||||
OptionsMainLoop
|
||||
|
||||
lda RandomMountains
|
||||
sta OptionsHere+288
|
||||
lda WindChangeInRound
|
||||
sta OptionsHere+128
|
||||
lda FastSoilDown
|
||||
@@ -146,6 +147,13 @@ NotWind
|
||||
sta FastSoilDown
|
||||
rts
|
||||
NotGravity
|
||||
cmp #$07
|
||||
bne NoMountains
|
||||
lda RandomMountains
|
||||
eor #$1f ; '?' character
|
||||
sta RandomMountains
|
||||
rts
|
||||
NoMountains
|
||||
ldy GradientNr
|
||||
iny
|
||||
cpy #$03
|
||||
|
||||
Reference in New Issue
Block a user