Created
April 10, 2024 12:23
-
-
Save syrinka/c834f581c88739018916935dfb99df3b to your computer and use it in GitHub Desktop.
Some value tweaks for Balatro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- STEAMODDED HEADER | |
--- MOD_NAME: Balatro Tweak | |
--- MOD_ID: cbt | |
--- MOD_AUTHOR: [syrinka] | |
--- MOD_DESCRIPTION: Some tweaks | |
---------------------------------------------- | |
------------MOD CODE ------------------------- | |
local originalFuncRef = get_starting_params | |
function get_starting_params() | |
p = originalFuncRef() | |
p.hand_size = 10 -- was 8 | |
p.joker_slots = 10 -- was 5 | |
p.consumable_slots = 3 -- was 2 | |
p.reroll_cost = 3 -- was 5 | |
return p | |
end | |
---------------------------------------------- | |
------------MOD CODE END---------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment