Fix the Game Corner prizes

They are now engoodened.
This commit is contained in:
May Evans 2022-09-01 17:29:16 +01:00
parent 197d669830
commit 2e6dd87335
5 changed files with 44 additions and 30 deletions

View file

@ -510,16 +510,16 @@ SlotRewardPointers:
dw SlotReward15Text
SlotReward300Text:
db "300@"
db "999@"
SlotReward100Text:
db "100@"
db "300@"
SlotReward8Text:
db "8@"
db "40"
SlotReward15Text:
db "15@"
db "75@"
NotThisTimeText:
text_far _NotThisTimeText
@ -573,7 +573,7 @@ SlotReward8Func:
dec [hl]
.skip
ld b, $2
ld de, 8
ld de, 40 ; buffed amounts start here
ret
SlotReward15Func:
@ -584,7 +584,7 @@ SlotReward15Func:
dec [hl]
.skip
ld b, $4
ld de, 15
ld de, 75
ret
SlotReward100Func:
@ -593,7 +593,7 @@ SlotReward100Func:
xor a
ld [wSlotMachineFlags], a
ld b, $8
ld de, 100
ld de, 300
ret
SlotReward300Func:
@ -609,7 +609,7 @@ SlotReward300Func:
.skip
ld [wSlotMachineAllowMatchesCounter], a
ld b, $14
ld de, 300
ld de, 999
ret
YeahText: