#Risk of Jesters - Risk of Rain themed Jokers, Vouchers and more

113 messages · Page 1 of 1 (latest)

rare jungle
#

Requires Steamodded and Lovely!

New Jokers, Vouchers, and Blinds themed with the Risk of Rain franchise make their entrance, yet still retaining the feeling of vanilla Balatro. The volume is not that big yet, but you can expect more to come as new DLC for Risk of Rain 2 is approaching...

Currently 10 Jokers, 2 Vouchers, and 4 Blinds are available. Some of sprites are still WIP, but when I'm done with them I'm thinking of adding decks, challenges, or more Jokers balatrojoker

Download/wiki: https://dvrp-balatro-mods.pages.dev/risk-of-jesters

DVRP's Balatro Mods

Adds a bunch of Risk-of-Rain-themed Jokers, Vouchers, and Blinds.

scarlet oar
#

hot!

wise island
#

bustling should probably affect itself since it affects its user in RoR
very nice art tho!

fluid tangle
rare jungle
wise island
#

i mean foil isn't massively helpful and can actually screw you out of getting holo/poly/negative from spectrals or wheel of fortune

#

(i mean, foil is massively helpful early true)

rare jungle
#

Ohh actually didn't realize it would be a bit of a downside in those situations

#

Bungus can't be activated more than once so giving Foil to it would be fine I guess

marble socket
#

are all of the jokers from this pack just listing "+ERROR" when they say im assuming whats supposed to be a number?

fluid tangle
rare jungle
#

@marble socket @fluid tangle Sorry for ping, but did you install Lovely?

#

I'm injecting the numbers with it so it's the only reason I can think of now

marble socket
#

no honestly the ping is appreciated, personally!

rare jungle
marble socket
#

ohhhhh i see, okay ill look into how to install it properly rn, thanks so much

#

my bad, i didnt see that you listed Lovely in the install instructions

#

also, i really appreciate this mod, thank you for creating it! it is so well put together imo, really does feel like a "dlc pack" in a sense, if you know what i mean. in the best way possible, its feels great to play with and well thought out 😄

rare jungle
#

Thank you so much for the kind words and huge compliment ☺️ Really glad to hear you're loving it!

woven walrus
#

@rare junglehi, I will translate the mod into Russian soon,
will you update the mod later?

#

is this how it should be in the collection?

rare jungle
#

Yeah absolutely! Always appreciate contributions

rare jungle
woven walrus
#

)

#

And where can I find it?

rare jungle
woven walrus
#

The game freezes

#

Don't touch the console?

#

Everything is fine now, thanks

rare jungle
#

Glad it worked!

woven walrus
#

Hahah, the conflict of mods

#

@rare jungleEulogy Zero. What does the name of this joker mean?

#

j_crown = {
name = "Brittle Crown",
text = {
"Played cards have a {C:green}#1# in #2#",
"chance to give {C:money}$#3#{} when scored",
"Lose {C:money}$#3#{} per remaining {C:attention}hand{} and",
"{C:attention}discard{} by end of round"
}
},
j_shaped = {
name = "Shaped Glass",
text = {
"Retrigger all played",
"{C:attention}Glass{} cards, but",
"increase their destroy",
"chance to {C:green}#1# in #2#{}"
}

#

Are they not in the game?

rare jungle
#

And yeah they are planned cards and subject to change

woven walrus
rare jungle
nova palm
#

This is awesome

edgy pelican
short hare
#

hovering over any of them crashes my game

rare jungle
rare jungle
#

Update v0.1.1

  • Now properly display Steamodded mod badge and fixed a crashing bug regarding this
  • Added Russian translation done by @НЕШКО
  • Fixed incorrect collection page ordering of some Jokers
  • Eulogy Zero now has 1 in 2 chance of activating its ability. Let there be more eulogies!

Download/wiki: https://dvrp-balatro-mods.pages.dev/risk-of-jesters

DVRP's Balatro Mods

Adds a bunch of Risk-of-Rain-themed Jokers, Vouchers, and Blinds.

edgy pelican
#

funny card

rare jungle
#

Egocentrism moment

edgy pelican
#

i'd suggest lowering the requirement for bustling fungus to 3 rounds instead of 5

rare jungle
#

I was thinking about that or making its ability to activate every 5 rounds

dusty shoal
#

Error still appearing.
I'm using Steammodded 0.98

rare jungle
#

Have you installed Lovely?

dusty shoal
dusty shoal
untold sapphire
#

version.dll is for the new experimental branch of Balatro, they had to change it because of Love2D new version

#

So you can delete dwmapi.dll if it works with version.dll

rare jungle
#

Another credit card cause why not

carmine mason
#

Heyas, I see this thread hasn't been very active, but I've been playing with this mod for some time and really like what it has to offer, despite knowing nothing about risk of Rain

#

I do have a minor bug report to show though, something about The Void seems to make jokers not register the end of the round

#

I had an invisible joker that didn't progress and one that's supposed to reset between rounds that didn't reset

rare jungle
carmine mason
#

you're welcome :3 Keep up the good work

novel matrix
#

card not compatible with deluxe tarots

#

im going to take this to DT but i wasnt sure if you were curious

rare jungle
#

3D Printer/Mili-Tech Printer/Executive Card is not compatible with modded boosters

#

I'll try to find a fix, thanks for the report 👍

scarlet oar
#

hey buddy, I also want to discuss a compatibility problem with you

#

I looked into your code, I think it would be better if you could change your injection from this

[[patches]]
[patches.pattern]
target = "functions/common_events.lua"
pattern = '''if not full_UI_table.name then full_UI_table.name = localize{type = 'name', set = 'Other', key = name_override, nodes = full_UI_table.name} end'''
position = "before"
payload = '''
if G.GAME.used_vouchers.v_3d_printer then
    loc_vars[2] = loc_vars[2] + 1
end
if G.GAME.used_vouchers.v_militech_printer then
    loc_vars[1] = loc_vars[1] + 1
end
'''
#

to something like this:

[[patches]]
[patches.pattern]
target = "functions/common_events.lua"
pattern = '''if not full_UI_table.name then full_UI_table.name = localize{type = 'name', set = 'Other', key = name_override, nodes = full_UI_table.name} end'''
position = "before"
payload = '''
if G.GAME.used_vouchers.v_3d_printer then
    if loc_vars and loca_vars[2] then
      loc_vars[2] = loc_vars[2] + 1
    end
end
if G.GAME.used_vouchers.v_militech_printer then
    if loc_vars and loca_vars[1] then
      loc_vars[1] = loc_vars[1] + 1
    end
end
'''
#

just so that it is more robust

rare jungle
#

Hey, yeah this is my very first mod so I didn't think about compatibility at all lmao

#

Thanks for pointing it out 👍

fresh pumice
#

I can't access to the download page, are there alternative download sources?

rare jungle
haughty socket
#

Does this mod work for 1.0.0?

dense furnace
haughty socket
#

It crashes :(

#

Error Nil value

dense furnace
#

What's your error?

haughty socket
cunning silo
#

What's the folders name

dense furnace
#

Folder name shouldn't matter anymore, but it looks more like it's missing files

silk pulsar
#

i literally just downloaded it and im getting that too

dense furnace
#

Your error says the joker.lua file doesn't exist?

silk pulsar
#

there's definitely a jokers.lua file in here

dense furnace
#

Is your steamodded up to date?

silk pulsar
#

just downloaded the newest version tonight too

#

lemme try the release version

dense furnace
#

If it has the weird old file name it's the old version

silk pulsar
#

ive tried both the direct download versoin and the weird file name versoin

dense furnace
#

Wait, what's the url of the github repo?

silk pulsar
dense furnace
#

That's the wrong one

silk pulsar
#

oh lemme try the one you sent

#

that does it 👍

dense furnace
#

That makes more sense

haughty socket
#

send it to me too

#

@dense furnace

dense furnace
haughty socket
fringe roost
#

how do I download this one? there's no zip link

#

unless I just manually download everything

#

nvm I learned a thing about github

lost forge
#

lmao this mod really needs to be picked back up

quaint basin
#

@rare jungle Hey!, Im in the middle of making a full scale content mod for balatro. I was wondering if oyu would be interested in wokring with me?

Im new to coding, but I wanna use this as a gateway into modding in general. I currently have a google doc sheet going with all my ideas for the mod.

white pecan
#

this mod keeping crash. idk why