#⚙・modding-general

1 messages · Page 85 of 1

rare shell
#

i mean

#

its a literal factory job

exotic shadow
#

WilsontheWolf jump scare

carmine mortar
#

Gah! Clowns

exotic shadow
#

How's everyone here been doing?

dapper helm
#

i'm grumpy

stone brook
#

@lean dune the way balamod does disabling mods requires the mod creator to write an on_disable function to basically "undo" everything they did when it got enabled

fickle elbow
#

im insane

umbral pilot
#

unsurprising. it's actually really hard to implement hot reloading without some sort of destructor

stone brook
#

yea..

umbral pilot
#

:-/

stone brook
#

the option is nice tho :3

umbral pilot
#

it's better than nothing!

#

and it should be pretty simple for mods that dont really have any mutable state

stone brook
#

yea

civic grail
#

What are different types of benefits you could get from matching seals for a modded effect?
I know theres +Chips, +Mult, xMult, and money. Anything else that could be cool? I'm out of decent ideas.

gilded vortex
fallow bramble
civic grail
#

So I'm working on a mod that basically has seals that give you benefits for matching 3/4/5

fallow bramble
#

joker slot too ig?

civic grail
#

Imagine seals, but having 3 of the same in one hand will give you an extra benefit

gilded vortex
gilded vortex
civic grail
#

hmm

#

In the traditional game, the Banners (Red/Poetry/Blue) and the Brights would get you points for matching them

#

And for Animals they typically aren't used for winning points

#

I think consumables or hiker would be nice

#

How fair is Adds one tarot card to hand if 5 are played at a time?

dapper helm
#

how easy are these to get?

civic grail
#

You start with 7-8

dapper helm
#

1 tarot for 4 matching is prob fine

gilded vortex
dapper helm
#

could be like 1 planet for 3, 1 tarot for 4 and 2 tarot for 5

civic grail
#

tbh since none of them are of the same suit it might be hard if its "scoring"

rigid jewel
#

Yay, people can now get more Relic jonklers

civic grail
#

jonkle

dapper helm
#

jonkle

gilded vortex
#

I wonder how many people had that idea lol @rigid jewel

#

Though mine is only for Planets

civic grail
#

if the cat one is yours i like the art a lot!

dapper helm
#

sad to see ortalab people go on to their own bigger and better projects 😔

rigid jewel
#

CAT JOKER???

#

YAAAAY

civic grail
#

the chicken and skateboarding(?) dragon(?) are funny

#

would be fun if you had something like a "crayon set" joker or something which spawns a random "crayon drawing" joker with a different effect

dapper helm
#

lmao

civic grail
#

please tell me thats actually a skateboarding dragon

#

because a skateboarding dragon would be rad

civic grail
#

probs not right?

dapper helm
#

i have no idea, i thought about it but like very hard to tell if that'd be fine

civic grail
#

its probably a matter of playtesting

dapper helm
#

yeah

civic grail
#

ill probs keep it 1 planet --> 1 tarot --> 2 tarot for now

astral glade
#

2 tarot may be a downside if you dont have the slots

civic grail
#

hmm

#

maybe based on the starting deck amounts

#

i make animal the money one

#

and brights the one that gives cards

gilded vortex
gilded vortex
civic grail
#

i wanna ask

#

is that a skateboarding dragon

#

if it isnt can you make it a skateboarding dragon

gilded vortex
#

It is a skateboarding dragon

civic grail
#

woo!

gilded vortex
#

Why is it skateboarding? I had some negative space

civic grail
#

please make sure the skateboard makes it into the final artwork

gilded vortex
#

so I added a dragon

gilded vortex
civic grail
#

if it isnt ill riot

gilded vortex
gilded vortex
civic grail
astral glade
#

i love econ

rare shell
#

i feel the art block coming

#

i should compose some music today

fickle elbow
gilded vortex
weak mortar
#

What does getting enhancements on planet cards do for you?

gilded vortex
gilded vortex
weak mortar
civic grail
#

"BRAZIL MENTIONED"

#

WOOO

gilded vortex
civic grail
#

(i know nothing about brazil)

weak mortar
gilded vortex
weak mortar
#

Is that not what this means?

gilded vortex
weak mortar
#

Editions

gilded vortex
weak mortar
#

But they're not played

gilded vortex
#

Neither are Jokers

#

They contribute just by being there

elfin bay
#

You mean, when they are in the consumable area?

gilded vortex
#

Yes

elfin bay
#

If you use then, bye bye to the edition?

gilded vortex
#

The effect already exists in-game, I just made it accessible

gilded vortex
elfin bay
#

Got it

gilded vortex
#

That does give me an idea for a Joker

elfin bay
#

Does anyone know which CardArea is this for the TAG_HUDS on the right? I've been looking for them for quite a while already and haven't got any clues yet...

gilded vortex
#

Wait I might've misunderstood the question

elfin bay
#

I don't even know if it is a CardArea at all actually, I just want to know where I can find the layout for the HUD_tags

#

Those that are on the right specifically

wild thunder
#

you've heard of 60 suits, now get ready for 60 suits and 240 ranks

gilded vortex
elfin bay
#

Yeah, and I can't seem to find exactly where it is defined hahaha

gilded vortex
stone brook
#

@elfin bay i think its called tag_queue in the code? i can look thru for you later if you still need

gilded vortex
red marten
#

that would be nice

red marten
#

also not 100% sure what this means or how to do it but i think i get it

elfin bay
#

I tried looking in the add_tag function already... But I don't know where it goes later

stone brook
#

ill take a look thru source code once im at my pc 🫡

gilded vortex
# red marten that would be nice

This adds a Joker that causes Lucky Clubs cards to trigger twice.

local localization = {
    fourleafclubber = {
        name = "Four Leaf Clubber",
        text = {
            "Lucky Clubs trigger again",
        }
    },
}

function SMODS.INIT.FourLeafClubber()
    local jokers = {
        {
            name = "Four Leaf Clubber", slug = "fourleafclubber",
            config = {extra=1}, rarity = 1, cost = 0, 
            blueprint_compat = true, 
            eternal_compat = true
        },
    }

    -- Add Jokers to center
    for _, v in ipairs(jokers) do
        SMODS.Joker:new(v.name, v.slug, v.config, {x = 0, y = 0}, localization[v.slug], v.rarity, v.cost, true, true, v.blueprint_compat, v.eternal_compat, "", "j_"..v.slug):register()
        SMODS.Sprite:new('j_'..v.slug, SMODS.findModByID("FourLeafClubber").path, "j_"..v.slug..".png", 71, 95, "asset_atli"):register()
    end

    -- Lucky Seven
    SMODS.Jokers.j_fourleafclubber.calculate = function(self, context)
        if context.repetition then
            if context.cardarea == G.play then
                if self.ability.name == 'Four Leaf Clubber' and context.other_card:is_suit("Clubs") and context.other_card.ability.name == "Lucky Card" then
                    return {
                        message = localize('k_again_ex'),
                        repetitions = self.ability.extra,
                        card = self
                    }
                end
            end
        end
    end
    
    sendDebugMessage("Loaded FourLeafClubber~")
end
elfin bay
gilded vortex
foggy crag
#

@rare shell I fucking did it

elfin bay
#

G.HUD_tags seems to be only called either when adding the tag through the add_tag function or when removing the tag

#

When adding, it creates a UIBox

foggy crag
#

the only thing that I'm not competent enough to do is Lightning Bolts around the symbol

rare shell
#

if you want to toss the aseprite file i could quickly doodle one

#

i like the background

foggy crag
#

sure thing

rare shell
#

only thing i'll probably do is futz with the colors of the flames to keep them in palette (which shouldnt be hard with the dark background you have them over)

foggy crag
#

hope that's adjustable

rare shell
#

theres a shade i dont use often but i think would be acceptable in this situation

#

the bright shade in antimony

carmine mortar
rare shell
#

aye

foggy crag
#

I'm a failure rNooooo

rare shell
#

quick tip by the way if you're ever stuck on outlines

#

i get my 2 colors for the outlines from the joker spritesheet

foggy crag
rare shell
#

the original 4 are from the rare suit jokers trio/tribe/etc

foggy crag
rare shell
#

as in the energy outlines

red marten
rare shell
#

its just a variable that you can store to whatever

#

so like things might give mult equal to their extra in card.ability.extra

#

or repeat an additional time

gilded vortex
#

So it repeats self.ability.extra additional times

gilded vortex
red marten
rare shell
#

no

fickle elbow
gilded vortex
red marten
#

OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOH

foggy crag
red marten
#

yea ok i get tah

gilded vortex
#

That's because that logic already exists in the game, so I only really have to implement that return

rare shell
#

it would also work if it was repetitions = 1

#

which is basically what we're telling it by feeding it self.ability.extra

gilded vortex
#

Indeed.

rare shell
#

variables just make it easier to change stuff later on

red marten
#

right ok ok that makes sense

gilded vortex
#

It's not hard

#

Wait

#

Why is my text red

#

I'm not doing it, but I could have the description update automatically

rare shell
#

you can actually store multiple things in extra and call them seperately

#

your experiencing connection issues

#

o7

#

for example a joker might have a dollars = 4 AND mult = 4 in its extra

gilded vortex
rare shell
#

so you could call them respectively by using self.ability.extra.dollars or self.ability.extra.mult

red marten
#

ah ah a h ah a ha h a h

rare shell
#

you can think of extra as just a folder where we store anything where we might want to have a variable

gilded vortex
#

Here's a custom example

#

Here, the Joker uses extra.rolls to remember how many times you've rolled, because every 3 rolls it gives you extra.dollars

elfin bay
#

When you increase the Y coordinate does it move up or down in the game?

gilded vortex
#

The calculate

cursive compass
#

this mostly works but it just picks the first joker that meets its criteria rather than a random one

gilded vortex
#

Oh wait, I don't think there's a native way to look for Jokers with stickers

cursive compass
rare shell
#

its top left to bottom right

red marten
rare shell
#

yarp

gilded vortex
cursive compass
#

yea

rare shell
#

calculate is where all the good stuff runs more less

red marten
#

aaaaaaaaaaaaaaaaah

rare shell
#

theres some edge cases where thats not the case

gilded vortex
rare shell
#

mostly stuff that adjusts your hands/discards when you pick them up or stuff that gives you money end of round doesnt use calculate

gilded vortex
cursive compass
#

how does pseudoseed work anyway

rare shell
#

im talking like stuff like

#

calculate_dollar_bonus

#

like rocket

#

or golden joker

gilded vortex
#

Me too

#

But I haven't looked too closely into it

rare shell
#

you need to hack into calculate_dollar_bonus outside of calculate joker to do that

gleaming talon
stone brook
#

@cursive compass you have to add some other things to your pseudoseed

#

like append round/ante/whatever to your pseudoseed string

gleaming talon
#

This worked for me

rare shell
#

you can make it give money at the end of round im pretty sure but if you want the proper menu item that shows how much money you made that blind thats how

lavish jackal
#

lyman look what i did for 600 suits

gilded vortex
cursive compass
#

judging by other mods i assumed it was just some arbitrary value to make sure everything is exactly the same for each run on any particular seed

stone brook
#

thats the point

lavish jackal
#

its a pgo

gilded vortex
cursive compass
#

could it be my can_use that's making it pick the first one somehow?

gleaming talon
cursive compass
#

the can_use on the table

gilded vortex
stone brook
#

no can_use doesnt affect the actual use

red marten
#

so if i wanted to make it give a 3x multi for full house would i put something in extra like mults = 3 or am i off on that?

stone brook
#

thats the point

#

it wants to exit early

gilded vortex
#

🤔

lavish jackal
#

@rare shell did you see the strife specibus btw

#

it works

gilded vortex
rare shell
#

i did i did

stone brook
#

and also you will never have a case where there's none available because the button is unusable when theres no eternal/rental/perishable

rare shell
#

im poggin

gilded vortex
#

But you already did

cursive compass
#

wtf is going on then /lh

gilded vortex
stone brook
#

try replacing pseudoseed('alleviation') with pseudoseed('alleviation'..G.GAME.round_resets.ante)

cursive compass
#

i gotta go to class so i'll come back and mess with it more later

gilded vortex
stone brook
#

it is

gilded vortex
#

How many trials did you do?

stone brook
#

thats why its always the first one

tranquil roost
stone brook
#

because youre setting the seed to a static string

rare shell
#

@foggy crag wew

cursive compass
gilded vortex
gilded vortex
#

Because I believe pseudoseed takes care of it

foggy crag
gilded vortex
foggy crag
#

thanks!

tranquil roost
#

How hard is it to make custom joker cards btw

#

I don't know how to code

rare shell
#

ill toss it to feder if that's alright

red marten
cursive compass
red marten
#

same boat my friend

gilded vortex
tranquil roost
#

stare It's hard isn't it

foggy crag
rare shell
#

ill also make sure you get credited

cursive compass
#

like 5 or so

rare shell
#

🫡

#

i love community projects grahh!!!

cursive compass
#

i could be astronomically unlucky i guess but i doubt it

gilded vortex
cursive compass
#

yeah

tranquil roost
#

Think I could team up with someone who knows how to code but can't draw lol

cursive compass
#

it's all 5 copies of the same joker so maybe that has something to do with it

red marten
gilded vortex
foggy crag
#

@rare shell

gilded vortex
#

In computer terms, setting a variable asks the computer for memory to store it, and you as a programmer can find the variable by the name you gave to it. But that's like knowing where to find the box where something is stored in—you don't know what's inside

gleaming talon
#

or more

lavish jackal
#

better (comic accurate) strife specibus colors

rare shell
gilded vortex
#

The game usually does it by index and I remember having issues when trying to do otherwise

lavish jackal
#

Lord of The Deep Dawn have you seen my alchemicals they have zero symmetry

#

peep this

foggy crag
lavish jackal
cursive compass
red marten
gleaming talon
#

@cursive compass did you check the length of the tab you're sending ?

lavish jackal
#

btw Lyman do you like the Acid alchemical

red marten
#

OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

#

okokokokokokkok

foggy crag
#

Lovely art @lavish jackal

rare shell
#

i was doing some testing

red marten
#

i knew that dw dw dw d wd w dw dw dw dw dw dw

rare shell
#

and i got jumpscared

#

because itay is a fucking maniac

#

and already had it coded

lavish jackal
#

what hapen

cursive compass
#

i'll try that when i get back

rare shell
#

you see i didnt see acid up until i loaded the test build

gleaming talon
#

Damn I love the art

rare shell
#

i have been busy pissing in a cup

gilded vortex
cursive compass
#

its weird though because i basically copied this code from another mod that i dont remember having any issues

gilded vortex
#

before going out to buy Milk

rare shell
#

gorgeous work on the background btw

#

i really love it

lavish jackal
#

Acid or Stone

rare shell
#

acid

#

stone is gr8 too but acid is probs my favorite ever

red marten
gilded vortex
gilded vortex
lavish jackal
#

do you like how the acid sparks like, blend into the swirls

rare shell
#

yee

gilded vortex
#

So far I've used Photopea for Joker art, but I might try Aseprite (since apparently it's free?) or something else

rare shell
#

its free to compile

#

so youll have to do some good ol fashion DIY compiling but

#

i have this program's menu buttons literally burned into my monitor for a reason

stone brook
#

ok so the way calling pseudorandom_element with a static string works is that it will always return the same number on the xth call

#

so if it returns 1 on the first call, it will always return 1 on the first call

gilded vortex
rare shell
#

uhhhh

#

im pretty sure its some C family language for sure

#

C++

#

theres a couple of tutorials online that walk you through the compiling process

gilded vortex
red marten
stone brook
#

scratch that, because pseudorandom_element calls math.randomseed every time you pass it a seed, it will only ever return the same number

gilded vortex
rigid jewel
#

Best emoji react

red marten
#

But like the extra is at least right for when I wanna calculate?

#

cuz that’s prob what I’m gonna move into

stone brook
#

i would post the code snippet i made to prove it but i dont think im allowed to

remote pilot
#

is there a balatro mod that adds discord rich presence

stone brook
#

since its source code

gilded vortex
red marten
#

3x multi so just change that to 3 I assume?

white scarab
remote pilot
dusk scroll
#

is there a way to just decompile the game? since balamod seems to show that option?

#

I just wanna look at how it handles all the randomzing and what not

astral glade
#

with 7zip you can just dump the files into a folder

stone brook
#

my internet died..

dusk scroll
astral glade
#

balatro can be unzipped with 7zip

#

for all the source files

dusk scroll
#

oh

#

how? do i just unzip every .dll file?

astral glade
#

just the exe

dusk scroll
#

oh wow

#

it really is that simple huh

dusk scroll
#

wow all the cards are just initialized in one big file huh

#

interesting

rare shell
#

yep

#

ive seen people dunk on thunk for not having it be a config file or something but it is a god send for a spaghetti code baby like me

#

i dont understand the entire function but its pretty straight forward on how things are organized

stone brook
#

the internet is down for my entire neighbourhood i think

#

i love canadian isps

rare shell
#

hold up i got an ethernet cable

stone brook
#

may need a couple extension cords

wary plume
#

Hello there. Where I can find colors definitions like {C:attention}, {C:mult} or {C:chips}

#

Do you know where it is. in which file?

rare shell
#

i just cross reference the localization in localizations/en-us.lua

#

off the top of my noggin i know theres also

#
money
dark_edition
green
tarot
planet
hearts/spades/etc
{X:red,C:white} for the red background white font```
stone brook
#

globals.lua ctrl+f colours

rare shell
#

woag

#

really

#

i can do that

stone brook
#

yea theres some wacky colours

astral glade
#

yeah all the suits are included, they change color based on high contrast automatically

wary plume
#

thank you

#

I'm tired after many hours of staring at the monitor

wary plume
stone brook
#

well, your way is technically also correct

#

xxd

#

love it when my isp says that there are no outages while downdetector says at least 1k people are having an outage

wary plume
#

I know

stone brook
#

im gonna make a joker that gives 2x mult with 1 in 3 odds and call it the internet service joker

cunning silo
#

Well, goodnight everyone! Hope you make some great stuff!

rare shell
#

im going to reinvent the nuclear bomb

stone brook
#

gn feder

cunning silo
carmine mortar
#

Uranium Alchemical card:

astral glade
#

plutonium when fr

strong swift
#

add all 118 elements

#

cant wait for rutherfordium ability

red marten
#

I know a lot of this is fucked up somehow but am I at least in the right direction?

fallow bramble
dusk scroll
#

dude wtf is this crazy logic for randomizing stuff am i just stupid or is this actually overkill

#

i'm looking at the code and it randomizes the seed like every 2nd action i stg

stone brook
#

i think its so you cant cheese rng by savescumming

#

mostly

dusk scroll
#

yeah probably

#

but still man

#

come on!

rare shell
#

game design-

dusk scroll
#

damn man why couldnt it be like minecraft and use the same seed for literally everything

sleek granite
#

welcome to roguelike code

haughty hinge
#

imagine you could put bets on what's gonna be in the booster packs

#

i can finally gamble on top of gambling

dapper helm
#

theres a roulette mod for increased gambling

haughty hinge
#

i wanna bet on the standard packs

#

that'd go

#

hard

stone brook
#

gamblemaxxing

jovial notch
#

New pfp dropped

#

trans big man Splatoon

#

(I have the dapper one still dw)

#

Ok that’s all I figured I would share me findings

#

Byeeee

fallow bramble
#

business is over, mind at peace

jovial notch
#

(Side note: if anyone wants to help make art for me jokers, feel free to send them here [ideas are also accepted!!]) #1230363683679502396

sleek granite
#

ah, the two reasons i have no jokers

astral glade
#

because you, yourself, is the joker?

sleek granite
#

because art and ideas hard

fickle elbow
astral glade
#

true

dapper helm
#

ideas easy, art hard

fickle elbow
#

ideas + art hard

tranquil roost
#

What if I made a bunch of random joker designs, and then asked around for ability ideas

sleek granite
#

no ideas hard too

dapper helm
#

but balatro of isaac

sleek granite
#

unlikely unless i take a month off of work

fickle elbow
#

3 parts of mod. idea, art, and code

astral glade
#

whats everyones silliness rating today 1-10

sleek granite
#

(i.e. get fired)

fickle elbow
#

-5

dapper helm
#

silliness rating 4 (i'm still very grumpy)

astral glade
#

im feeling a solid 8

dapper helm
sleek granite
#

kinda

jovial notch
foggy crag
#

I'm not gonna lie Balatro has a pretty limited design space unless you introduce completely new mechanics

tranquil roost
#

Random idea for a joker hear me out

#

Bubble bath joker

jovial notch
jovial notch
sleek granite
tranquil roost
#

He's got a little rubberducky on his head and he's covered in bubbles

#

Should he still have his makeup on tho yes or no

jovial notch
#

ooh ok ok

#

ofc

astral glade
#

feels like soon we're gonna see duplicate jokers in mods, or at least similar ones

tranquil roost
#

That'll be fun tho

astral glade
#

theres already what like

jovial notch
#

the makeup is embedded into their skin

astral glade
#

3 zodiac sets

tranquil roost
sleek granite
#

isaacmod will have another zodiac

astral glade
#

ohmygod

foggy crag
sleek granite
#

(theyre items in isaac /shrug)

foggy crag
#

I'm a mod team lead but it's currently on hold due to lack of spriters

sleek granite
#

fuckin mood

foggy crag
#

:(

#

we have like 20+ items coded and zero costumed made

#

that's so sad

sleek granite
#

dogma balls

foggy crag
sleek granite
astral glade
#

averageBalatroRun

sleek granite
#

yes

foggy crag
#

when
when Acorn boss

sleek granite
#

when u forget to turn down game speed before amber acorn:

foggy crag
#

exactly what happened to me

#

rookie mistake

sleek granite
strong swift
astral glade
#

waiting for something to happen?

dapper helm
#

mewo

sleek granite
#

mewo has been very, very bad

astral glade
#

NO

strong swift
#

56-12-2

dapper helm
#

oh no

stone brook
#

wait does the game always send a calculate_joker on planets even if you dont hace observatory

sleek granite
#

yes

stone brook
#

bet

sleek granite
#

the calculate_joker check itself then checks if you have observatory

#

thats why my Joker Tarot works

#

because it's actually just called on each consumable

stone brook
#

my new consumable type is gonna be way easier than expected

tranquil roost
#

Guys should I keep the clown outfit on in the bath or off

dapper helm
#

just the shoes

tranquil roost
#

Bathtime

stone depot
#

Btw autumn, thanks for the tips the other day I'm making some decent progress now

sleek granite
#

what

fallow bramble
rare shell
#

the hair dye washed away

fallow bramble
#

Oh no...

stone brook
#

give him more bubbles

dapper helm
#

sdm whats up with clown bank? (referring to the balance of it)

cinder sage
#

what's everyone's favorite (base game) joker

astral glade
#

castle or diet cola

dapper helm
#

i forgot mine....

sleek granite
#

this game has jokers in it?

stone brook
#

its been 2 weeks since ive actually played the game LMFAO

dapper helm
sleek granite
#

chat i fixed canioffering

kindred swallow
dapper helm
#

its been so long since i've played without like 200 modded jokers on

#

i guess cloud nine is my favorite base game joker

#

or dusk

astral glade
#

oh actually i like blackboard too

sleek granite
#

we need a "gilded" edition

#

gilded jokers give $ at end of round
gilded pcards gives $ when played(?)

stone brook
#

i think mine is showman or invisible

sleek granite
#

someone who knows how to make shaders should make a cool gold edition

#

we have an econ enhancement, and an econ seal, and an econ joker stamp, but no econ edition

kindred swallow
#

My favorite joker is Vagabond for game mechanic/play style but negative Campfire is my favorite joker for it's art.

dapper helm
#

why is it so bad?

fallow bramble
#

Didn't felt like it with the few runs I had

dapper helm
#

it might be just cause i got it from the deck but it kinda kills my econ and doesn't scale much

fallow bramble
#

Losing the "leftmost" trigger sure nerfed it a bit

dapper helm
#

like this is ante 8

fallow bramble
#

Yea I can see the issue, need to do more testing. Also need to find a way to make Mystery Joker better too.

sleek granite
#

oddityapi config is a go, including base shop rate and enable booster pack configs

#

anything im forgoring?

tranquil roost
#

Duck needs more work but other than that

stone brook
#

yippee!!!

#

bubbles!!!

tranquil roost
#

Yaaaay

sleek granite
elfin bay
#

I'm currently working in this 😛
A preview of the Joker you will get when skipping for a tag

sleek granite
#

based

rare shell
#

based

sleek granite
#

hi lym

rare shell
#

henlo

sleek granite
#

henno

tranquil roost
#

New idea while I was in the bath

#

Tennis and Golf Jokers

#

Golf joker increases aces, twos, and threes, but decreases every other number card and the higher it is the more it decreases

#

Tennis card don’t know what, but something to do with like the scoring system going up in 15s

sleek granite
#

tennis joker would be based for dankranks

elfin bay
#

Well, at least it's appearing in the shop already hahaha

sleek granite
#

why does that gif have wii sports sfx

fresh matrix
rare shell
#

my friend who infected me with the jonkler brainrot has been suggesting oddities to me

sleek granite
#

lets goooo

rare shell
#

they include as follows

  • narwhal horn
  • potato battery
  • dust bunny shaped like a bunny
  • a burr
  • aerodynamic display of a cow
shy pivot
#

nuclear launch codes?

rare shell
#

they did not elaborate as to what they did

sleek granite
#

who cares

#

this isnt a game its a shitpost

rigid jewel
#

Balatro is a shitpost TRUEEE

dapper helm
#

can i get a jonkler oddity thats just messed up jimbo with jonkler in place of joker on the sides? does nothing and the description is also jonkler

cinder sage
#

how am i supposed to make this a gift. what

sleek granite
#

snowy + blue/orange color scheme

#

is it time for me to learn lovely....

#

nope, it doesn't work

fallow bramble
#

@dapper helm Yea I can see the problem now... 😬

#

108$ for x3 is a lot lol

dapper helm
#

mhm

#

i'll just reset next time i get it on the deck, not hard to avoid till changed

upbeat flint
#

GUYS, i accidentally deleted Steammodded and the github is confusing me. Could anyone dm me instructions to re download?

fallow bramble
stone brook
#

maybe the mult it gives is based on how much you pay

sleek granite
#

does... lovely only load one patch or something...?

#

its basically just ignoring mine...

dapper helm
sleek granite
#

but clearly working for steamodded

fallow bramble
dapper helm
#

not yet lol i need to play the game more but i keep getting distracted

fallow bramble
#

Fair

sleek granite
#

oh or its literally just lying to me

stable plinth
#

I didn't even know this game had mods that's cool

sleek granite
#

it doesn't

stone brook
#

there are only low quality shitposts, and high quality shitposts

fallow bramble
#

As fake as the moon landing

stone brook
#

(the low quality ones are mine)

sleek granite
#

@strong swift feder thought it would be funny to troll me by wasting my entire morning waiting for details on a bug report

strong swift
#

sorry for the ping lmao. new message werent loading

dapper helm
#

lmao

sleek granite
fickle elbow
fallow bramble
#

Oshit more mod channels

dapper helm
#

oh whattt

astral glade
#

are we finally getting modding vc??

#

🙏

sleek granite
#

doubt

fallow bramble
#

Yea seeing how og channels got none, doubt we'd get one too.

astral glade
#

let me dream

fallow bramble
#

Balatro is too big of a discord server

rigid jewel
stone brook
#

could always limit each vc to like 5 people

#

are we allowed to make our own modding vc (with blackjack and hookers) 🤔

astral glade
#

we technically could

sleek granite
#

i mean nothing stopping us from like, direct calling each other

umbral pilot
sleek granite
fickle elbow
#

can someone share the link to the other modding channels i lost mine somehow

umbral pilot
#

nah in the source file

astral glade
#

scroll to the top

fallow bramble
#

Go to browse channels above the channel list

fickle elbow
#

oh lol

sleek granite
umbral pilot
#

I'm on mobile :-/

sleek granite
cursive compass
#

had some ideas for the "bad joker utils" mod thing but idk how good / feasible they are

sleek granite
#

meh, i'll just deal, i guess

#

was just to try to apply a shader to one of my oddities

#

stupid idea anyway tamariPlush

atomic skiff
#

about a 3rd of the way there

fallow bramble
#

@dapper helm Made a poll for Clown Bank in the mod's forum post if you're interested

dapper helm
#

oh sure

umbral pilot
#

and then try

sleek granite
#

had that first actually

#

didnt work either

#

oh it works now i guess :|

fallow bramble
#

Seen a modder struggling to get votes on their poll

dapper helm
#

that would be very funny

dapper helm
fallow bramble
#

It was Snow's mod but I see they actually got a lot of votes

dapper helm
#

it was mentioned often yeah

fallow bramble
#

Yea I remember him posting it a lot on this channel

dapper helm
#

advertisements work....

grand geode
#

insert the good morning chat gif

stone brook
#

hiii

dapper helm
#

good morning myst

rare shell
#

im getting errors with houserules + myst blinds

#

im using the steamodded houserules + balamod mystblinds pls help

grand geode
#

wuh

#

lyman

rare shell
#

thats me

stone brook
#

xdd

grand geode
#

im going to snap you in half

rare shell
fickle elbow
boreal ibex
#

sorry, discords being weird and not showing up

fresh matrix
#

Hit "browse channels" at the top of the channel list

rare shell
#

thunk added a new category

fresh matrix
#

And you can re-add the mod chats

umbral pilot
#

thunk acknowledged us:3

broken patrol
#

just started playing modded and this is what i see in the 2nd shop

autumn saffron
#

sooooooo...what does the other half do?

broken patrol
#

full joker

dapper helm
#

now you gotta get the glue

autumn saffron
#

dafug it do? +20 mult when on 5 cards or under?

broken patrol
#

+100 chips when under 3 cards

autumn saffron
#

decent i suppose 🤔 , and it looks like you should be able to fuse them/make them take up on joker slot total, yeah okay, feel vanila adjacent, cool

stone brook
#

jo and ker

cursive compass
#

are you ok with spoilers

broken patrol
#

yes

cursive compass
#

there is a joker that has an effect based on having both of those

#

but thats probably not surprising

broken patrol
#

for the mod or

cursive compass
#

yeah in that mod

dapper helm
#

yeah for the mod

cursive compass
#

also i just noticed the channel split that's cool

broken patrol
#

oh yeah

dapper helm
#

thats the joker you need

cursive compass
#

i was thinking that would be a good idea

#

it also means theres a non zero chance localthunk has seen balatrotale which is a terrifying concept

dapper helm
#

definitely a big fan of balatrostuck

#

first time seeing this since using this texture mod i think

sleek granite
#

based

rare shell
#

we're so back chat

dapper helm
#

we're so jack

rare shell
sleek granite
#

we're so jack

rare shell
#

you should make this a sticker autumn

boreal ibex
upbeat flint
#

Hello modding folks, I have seemed to accidentally deleted Steammodded from my game and the Github steps are confusing to me. I have asked this 3 times already, but could someone send or dm me the simplest steps possible so I can play with mods again?

stone brook
upbeat flint
#

Oh my lordy lord thank you

dapper helm
#

jimbo approves of joker yaoi

hallow elbow
#

why dont mod cards show up for me

dapper helm
#

question is too vague

sleek granite
hallow elbow
dapper helm
#

which mods?

night spindle
#

did you ever find out how to get the deck creator to work?

hallow elbow
#

its bunco

dapper helm
#

how many runs have you done without them showing up?

#

+9 chips

sleek granite
#

me when i power chip

dapper helm
#

ermm actually that was from jank jonkler's highlander joker with splash and a shit ton of retriggers 🤓

astral glade
#

has anyone done a run with perkeo and oddities yet

jovial notch
#

i mean

sleek granite
#

perkeo power chip

jovial notch
#

wait pause

#

im a lil late

#

but

dapper helm
jovial notch
#

fusion jokers is out now?!?!?

astral glade
#

correct

dapper helm
#

yeah

jovial notch
astral glade
dapper helm
# dapper helm +9 chips

i hit endless mode on this just to see how high i can get the chips, currently +510 after small blind

sleek granite
#

oh huh, i wonder how perkeo works with nonconsumable oddities actually

vestal crag
sleek granite
#

consumable oddities are easy

#

they Just Work

vestal crag
#

Actually, now I wanna do a perkeo + alchemicals run.

#

Salt.

astral glade
#

double perkeo and salt

#

EXACTLY

vestal crag
#

I love salt.

astral glade
#

do it before it gets nerfed next update

vestal crag
#

Wait, salt is getting nerfed?

astral glade
#

iirc yeah

vestal crag
#

Aww

dapper helm
astral glade
#

can we get a :3 in the chat for Coro’s run

rigid jewel
#

:3

jovial notch
#

:3

dapper helm
#

Ɛ:

boreal ibex
#

:3

jovial notch
#

me when shop 1 holographic cubic joker ea_YIPEE

rare shell
#

salt will be smited

dapper helm
#

thats good

jovial notch
#

fellas

#

i might win this idk

#

they gave me blueprint.

dapper helm
#

i'd find a way to lose frfr

strong swift
dapper helm
#

out of the last like 8 micromanaging runs i've done, 7/8 i threw because i stopped paying attention for like 2 hands

strong swift
#

mood

jovial notch
#

taking "thin out your deck" to a whole new level

upbeat flint
#

Hey all, got another question, sadly. I've got some mods now (good) but the Tarots for said mods don't seem to be loading (bad). everytime I hover over them, I get a code failure screen (bad) . Is there some kind of API that I'm missing?

astral glade
#

do you got jellymod?

upbeat flint
#

No?

grizzled robin
#

how do i install the balatro mod thing on mac

#

is tere a link

upbeat flint
#

I assume I need it

astral glade
#

no

#

its usually the causer of bugs

sleek granite
#

do you have TheAutumnCircus and not OddityAPI

upbeat flint
boreal ibex
upbeat flint
sleek granite
#

you dont need FederAPI, its in steamodded directly now

upbeat flint
#

plug

#

okay

sleek granite
#

theres a bug in TheAutumnCircus if OddityAPI isnt loaded, tho

#

(next update will fix 🙏 )

upbeat flint
#

Well i don't have either of those.

sleek granite
#

oh

upbeat flint
#

okay Tarots are fixed now.

upbeat flint
rare shell
#

epic tarots

#

jimbobread man

#

joker stamps

#

its very cool

upbeat flint
#

okay I'll get that

sleek granite
#

(but also make sure you get oddityapi because of aforementioned bug)

astral glade
#

this is so wholesome

upbeat flint
#

yes.

sleek granite
#

(oddityless Thac will work in the future for those unwilling to be odd)

astral glade
#

who wouldnt want jimbobread man

upbeat flint
#

Is it in the modding forum channel? I can't seem to find it, sorry.

upbeat flint
#

YA

grand geode
#

holy shit new modding channels

#

we win

astral glade
#

no vcs :(

grand geode
#

no faq channel sad

upbeat flint
sleek granite
#

me when The Soul creates a legendary discord channel

rare shell
#

better than chicot

astral glade
#

everything is

jovial notch
#

IT IS TIME TO TEST, A T H I N G

#

we shall see if it works, saved editoon, saves stamp, and saves mult

#

mult: yes
edition and stamp: no

sleek granite
#

stamp definitely wont work

#

that would require fusion jonklers to support my mod on their end i think

jovial notch
#

only thing i needed to keep was mult lol

#

so at least that kept

#

uh oh

sleek granite
#

i think editions are supposed to work tho. might want to notify @cunning silo

jovial notch
#

im not 1 shotting anymore ;-;

stone brook
#

guh i needa do editions for super auto balatro

#

can someone remind me in 2 hours

sleek granite
#

good luck :)

jovial notch
#

i lost

#

however

#

was very fun

#

i had almost every one of teh 64 vouchers

#

96LC1N7Y

sleek granite
#

seeds dont mean much if we dont know your modlist lol

jovial notch
#

oh one sec then

jovial notch
#

also i used blue deck :D

dapper helm
#

this is one of the most interesting runs i've ever done

#

i played nearly every single hand type at least once

#

just missing 2 secret ones from bunco and both default straight ones

jovial notch
#

ill try it

#

eventually lol

jovial notch
#

uhh

#

i broke it

#

see? i broke it :D

astral glade
#

HOW?

#

WHAT?

jovial notch
#

no idea

#

OH

#

it finally ended

dapper helm
#

i don't think thats a bug at all actually

#

also how did you get so lucky with the fusions???

#

i can rarely get more than 1

#

oh you just don't have too many modded jonklers on

fathom blade
paper flame
#

Is there a mod that allows for you to replace the "Again!" message with any message you want?

We know the Deck Creator mod has something for it as a custom deck thing

jovial notch
strong swift
jovial notch
#

also i had coinflip a lot earlier

jovial notch
#

ante 13(15) loss lolll

round oar
#

does anyone know if there’s a way in steamodded to register a card without a specific set (e.g. joker, planet, voucher etc)?

sleek granite
strong swift
#

am i missing something

sleek granite
#

1/1000 chance

#

it is his true power

kindred swallow
#

it is time

polar pecan
#

hit a crash of some sort upon opening a mega tarot pack

rare shell
#

whats your modlist

polar pecan
cunning silo
#

Good morning!

rare shell
#

evening feder

polar pecan
#

btw is it actually helpful if i mention crashes, or is it just annoying

rare shell
#

its helpful

polar pecan
fickle elbow
rare shell
#

only thing we ask is clarification: what you did (which you mentioned), what mods you have, and anything else you think might help

polar pecan
#

cool cool, i'll keep that in mind in the future

rare shell
#

otherwise always good to make sure it doesnt happen to someone else

polar pecan
#

i can't think of much else that would help here, it was only ante 2 so there wasn't much going on

rare shell
#

did you have any vouchers from bettmas or smth?

polar pecan
#

just the tier 1 black hole one

#

lemme reload my save and see if there's anything i'm missing

rare shell
#

which one was that?

#

im not too familiar with bettma's vouchers

polar pecan
#

oh it just opens the pack on reload and crashes lol

rare shell
#

looks like something between thac or cheesyjokers

polar pecan
#

it gives a black hole card immediately and gives a 1 in 4 chance of getting another black hole when opening planet packs

rare shell
#

hmmm

#

could you remember any modded jokers you might of had

polar pecan
#

uhhhhhhh i had polychrome dread, polychrome obelisk (vanilla), polychrome reserved parking (vanilla) and one other one that i forget

#

Ok I took a pic with my phone before it crashed again lol

#

not a ton that's helpful here now that i'm looking at it tbh

dusky reef
#

where is my mod

fickle elbow
dapper helm
#

lmfao

polar pecan
#

lol

dusky reef
#

shameless daily self advertisement (1/1)

polar pecan
#

honestly yeah just keep pouring mod seggestions on me, i might find something i missed

polar pecan
grand geode
fickle elbow
#

high card is pretty cool

dusky reef
#

I should start pointing people to the website instead now

fickle elbow
#

oh lol same

dusky reef
dapper helm
polar pecan
#

sick

fickle elbow
#

mine just adds jokers and a deck

#

about 10 jokers

polar pecan
#

is it like that for balatrostuck too because that's another one i've been avoiding for fear of not getting anything that's happening lol

dapper helm
#

yeah but afaik thats not released yet

polar pecan
#

ohhh ok

dusky reef
#

i think it's more like, you would get the reference when you know about it, but it's totally fine if you don't

#

yeah maybe i should frame it more generically

polar pecan
#

oh cool

polar pecan
#

i'll check it out then

#

and maybe i'll look at snow's mod i guess

dapper helm
#

haven't seen anything too focused on references to be good by itself yet

dusky reef
#

it's more like, in the series you play those cards to get abilities, and here you get jokers

polar pecan
#

i thought it was an anime

dusky reef
#

it is

molten igloo
#

hey anyone remeber what the mod is that allows u to spawn jokers from collection

#

tryna debug some stuff

grand geode
#

debug mode

molten igloo
dusky reef
#

you play those cards to get abilities (in the anime world)

strong swift
dusky reef
#

that sounds kinda weird actually

dapper helm
rare shell
#

wizard

strong swift
rare shell
dusky reef
#

where is NOW

dapper helm
#

wait can i choose 25

fickle elbow
#

^^

rare shell
#

too tired to set up github for a now option

fickle elbow
#

hope some of mine can sneak in before release

polar pecan
#

also just wanna say yall are cool, its fun just chatting about mods and stuff

dapper helm
#

so true

strong swift
#

im not even a dev. this is just the best part of the balatro discord

polar pecan
#

like having a bunch of cool aditions to balatro and being able to talk to the folks who are actually making said additions is just plain fun

rare shell
#

its part of my nightly communal gathering

fickle elbow
#

im a DEV

strong swift
#

you are

polar pecan
#

correct

rare shell
#

im lyman

dapper helm
#

hi lyman

polar pecan
#

hi lyman

fickle elbow
#

im also a madman

strong swift
#

hi lyman

rare shell
#

im ascending to this new justice album rn

#

mentally i am lyadolescent

polar pecan
#

i feel that

#

btw how does one download a thing off github if there isn't a "release" made yet

round oar
dapper helm
#

green code button on code page

#

download zip

polar pecan
round oar
#

try redownloading it from github

polar pecan
#

sure, give me a couple minutes

dapper helm
#

btw cheese your jokers are very fun and interesting

round oar
#

then look in the collection at autumn circus’ tarots

polar pecan
strong swift
#

tbh i love all of the joker mods. they just add a ton of flavor to the game which i can really appreciate

polar pecan
#

TRUEEEEEE

#

i love having a bajillion different effects to potentially get

dapper helm
strong swift
#

i can't really contribute meaningfully

fickle elbow
#

i don't think the mod is very balanced, considering the imbalance of suits

polar pecan
#

i don't really get why you'd want to dilute the suit count tbh

strong swift
#

funny

polar pecan
#

fair enough

fickle elbow
#

real funny

dapper helm
#

i hope someone makes unique face cards for the garfield suit

polar pecan
#

the WHAT

dapper helm
#

the garfield suit

polar pecan
#

right ok

#

just wanted to make sure

rare shell
polar pecan
#

and i redownloaded your mod as well

dusky reef
#

sorry for this weird capturing effect

#

i should probably use a proper one instead of windows capture

round oar
polar pecan
#

oh no

dapper helm
#

i love all the extra little again -like effects you add for the xplaying cards

rare shell
#

kenny on their way to make the best marketing campaign for an anime youve ever seen

dusky reef
#

smarteyes I have to say the show was not that good this new season

dapper helm
#

lmao

dusky reef
#

but i appreciate the concept

#

which works perfectly in balatro

polar pecan
#

its kinda funny i'm hearing about this whole high card thing now because just a couple days ago i had an idea for an OC that uses tarot cards for attacks

dusky reef
#

I am getting a little cocky now, I think I take more credit in this mod than the show LOL