buff AGAIN!!!

This commit is contained in:
May Evans 2022-09-04 02:11:27 +01:00
parent a85f88d03d
commit 9689116668
2 changed files with 8 additions and 8 deletions

View file

@ -41,8 +41,8 @@ QoL Enhancements
- Yellow learnset changes are imported; eg. Flash Venonat - Yellow learnset changes are imported; eg. Flash Venonat
- The Game Corner in general is massively buffed, making everything far more worth going for; - The Game Corner in general is massively buffed, making everything far more worth going for;
- 3x Cherry now gives 100 coins (used to be 8) - 3x Cherry now gives 100 coins (used to be 8)
- 3x Magikarp/Poliwag/Bird/Diglett/Rattata/Jigglypuff now gives 150 coins (used to be 15) - 3x Magikarp/Poliwag/Bird/Diglett/Rattata/Jigglypuff now gives 200 coins (used to be 15)
- 3x BAR now gives 350 coins (used to be 100) - 3x BAR now gives 500 coins (used to be 100)
- 3x 7s now gives 999 coins (used to be 300) - 3x 7s now gives 999 coins (used to be 300)
- The Route 5-6 underground path contains a shortcut to Celadon City. - The Route 5-6 underground path contains a shortcut to Celadon City.
- This allows you to skip Route 9 and Rock Tunnel, making them optional areas and opening up central Kanto. - This allows you to skip Route 9 and Rock Tunnel, making them optional areas and opening up central Kanto.

View file

@ -513,13 +513,13 @@ SlotReward300Text:
db "999@" db "999@"
SlotReward100Text: SlotReward100Text:
db "350@" db "500@"
SlotReward8Text: SlotReward8Text:
db "100@" db "100@"
SlotReward15Text: SlotReward15Text:
db "150@" db "200@"
NotThisTimeText: NotThisTimeText:
text_far _NotThisTimeText text_far _NotThisTimeText
@ -573,7 +573,7 @@ SlotReward8Func:
dec [hl] dec [hl]
.skip .skip
ld b, $2 ld b, $2
ld de, 40 ; buffed amounts start here ld de, 100 ; buffed amounts start here
ret ret
SlotReward15Func: SlotReward15Func:
@ -584,7 +584,7 @@ SlotReward15Func:
dec [hl] dec [hl]
.skip .skip
ld b, $4 ld b, $4
ld de, 75 ld de, 200
ret ret
SlotReward100Func: SlotReward100Func:
@ -593,7 +593,7 @@ SlotReward100Func:
xor a xor a
ld [wSlotMachineFlags], a ld [wSlotMachineFlags], a
ld b, $8 ld b, $8
ld de, 300 ld de, 500
ret ret
SlotReward300Func: SlotReward300Func:
@ -682,7 +682,7 @@ SlotMachine_PayCoinsToPlayer:
ld h, a ld h, a
or l or l
ret z ret z
ld de, -1 ld de, -5 ; this will not break anything at all - PvK (it was -1 before)
add hl, de add hl, de
ld a, l ld a, l
ld [wPayoutCoins + 1], a ld [wPayoutCoins + 1], a