From 96891166681cc9c0eee51e401c4e9a6a15c9e679 Mon Sep 17 00:00:00 2001 From: May Evans <36418502+PlagueVonKarma@users.noreply.github.com> Date: Sun, 4 Sep 2022 02:11:27 +0100 Subject: [PATCH] buff AGAIN!!! --- README.md | 4 ++-- engine/slots/slot_machine.asm | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ef2315eb..eda75d23 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/engine/slots/slot_machine.asm b/engine/slots/slot_machine.asm index 1d070f32..2cbf73e3 100644 --- a/engine/slots/slot_machine.asm +++ b/engine/slots/slot_machine.asm @@ -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