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
- 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 Magikarp/Poliwag/Bird/Diglett/Rattata/Jigglypuff now gives 150 coins (used to be 15)
- 3x BAR now gives 350 coins (used to be 100)
- 3x Magikarp/Poliwag/Bird/Diglett/Rattata/Jigglypuff now gives 200 coins (used to be 15)
- 3x BAR now gives 500 coins (used to be 100)
- 3x 7s now gives 999 coins (used to be 300)
- 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.

View file

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