#⚙・modding-general
1 messages · Page 85 of 1
WilsontheWolf jump scare
Gah! Clowns
How's everyone here been doing?
i'm grumpy
@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
im insane
unsurprising. it's actually really hard to implement hot reloading without some sort of destructor
yea..
:-/
the option is nice tho :3
it's better than nothing!
and it should be pretty simple for mods that dont really have any mutable state
yea
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.
What do you mean by matching seals?
hand size, hand, discard, consumable slots
So I'm working on a mod that basically has seals that give you benefits for matching 3/4/5
joker slot too ig?
First time a poet has made money /j
Tags, consumables, Hiker effect,
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?
how easy are these to get?
1 tarot for 4 matching is prob fine
Seems weak but if you have a lot of them then I think it’s okay
could be like 1 planet for 3, 1 tarot for 4 and 2 tarot for 5
tbh since none of them are of the same suit it might be hard if its "scoring"
Yay, people can now get more Relic jonklers
jonkle
jonkle
I wonder how many people had that idea lol @rigid jewel
Though mine is only for Planets
if the cat one is yours i like the art a lot!
sad to see ortalab people go on to their own bigger and better projects 😔
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
lmao
please tell me thats actually a skateboarding dragon
because a skateboarding dragon would be rad
thoughts on a spectral for 5?
probs not right?
i have no idea, i thought about it but like very hard to tell if that'd be fine
its probably a matter of playtesting
yeah
ill probs keep it 1 planet --> 1 tarot --> 2 tarot for now
2 tarot may be a downside if you dont have the slots
hmm
maybe based on the starting deck amounts
i make animal the money one
and brights the one that gives cards
It is, thank you! I eyeballed a photo from Wikipedia.
These artworks are placeholders but people seem to like them so I might leave them in as an alternative
i wanna ask
is that a skateboarding dragon
if it isnt can you make it a skateboarding dragon
It is a skateboarding dragon
woo!
Why is it skateboarding? I had some negative space
please make sure the skateboard makes it into the final artwork
so I added a dragon
I'll consider it
That's the Joker I was talking about (see video above)
The animals on the bottom left give money
o i meant for my WIP mod lol
i love econ
just a reminder to modding chat that this exists https://discord.com/channels/1116389027176787968/1232902086191087769
What does getting enhancements on planet cards do for you?
Hm?
Idk I haven't seen Enhancements on Planet cards
The mod inspired by Hanafuda is an interesting idea and the art looks like it's gonna be good
Well that's what that joker does?
It's not tho
(i know nothing about brazil)
money has animals in it
Is that not what this means?
No
Editions
Now you're talking. They work just like Editions on Cards and Jokers
But they're not played
You mean, when they are in the consumable area?
Yes
If you use then, bye bye to the edition?
The effect already exists in-game, I just made it accessible
Bye bye to the card, which has the edition, yes
Got it
That does give me an idea for a Joker
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...
I never looked at it before but my suspicion would be G.HUD_tags
Wait I might've misunderstood the question
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
you've heard of 60 suits, now get ready for 60 suits and 240 ranks
Again this is the first time I'm looking at it but I'm guessing it's only a HUD
Yeah, and I can't seem to find exactly where it is defined hahaha
The tags have a generate_UI function
@elfin bay i think its called tag_queue in the code? i can look thru for you later if you still need
now get ready for https://discord.com/channels/1116389027176787968/1232902086191087769
which calls get_uibox_table
that would be nice
Hmmm, I didn't find it here...
also not 100% sure what this means or how to do it but i think i get it
I tried looking in the add_tag function already... But I don't know where it goes later
ill take a look thru source code once im at my pc 🫡
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
Yep, yep, I've already looked through generate_UI and get_uibox_table... Hmmm
It's called in very few places. When you skip a blind, some effects that generate tags,
I got 6 matches for it
@rare shell I fucking did it
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
the only thing that I'm not competent enough to do is Lightning Bolts around the symbol
if you want to toss the aseprite file i could quickly doodle one
i like the background
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)
yeah, I've been messing up the colors over and over
hope that's adjustable
theres a shade i dont use often but i think would be acceptable in this situation
the bright shade in antimony
Border shade
aye
I'm a failure 
quick tip by the way if you're ever stuck on outlines
i get my 2 colors for the outlines from the joker spritesheet

the original 4 are from the rare suit jokers trio/tribe/etc
the faded dark blue one?
as in the energy outlines
so i see you have an {extra=1} in the context of this card what does that do
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
As you can see, I use it inside calculate when I set repetitions = self.ability.extra
So it repeats self.ability.extra additional times
Cute
so just extra means it can repeat itself?
no
lol
It means that the played card, which has to be a Lucky Clubs, triggers one additional time
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOH
:D
yea ok i get tah
That's because that logic already exists in the game, so I only really have to implement that return
it would also work if it was repetitions = 1
which is basically what we're telling it by feeding it self.ability.extra
Indeed.
variables just make it easier to change stuff later on
right ok ok that makes sense
It's not hard
Wait
Why is my text red
I'm not doing it, but I could have the description update automatically
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
I think the effect is weak, so I could buff it by making it trigger twice.
so you could call them respectively by using self.ability.extra.dollars or self.ability.extra.mult
ah ah a h ah a ha h a h
you can think of extra as just a folder where we store anything where we might want to have a variable
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
When you increase the Y coordinate does it move up or down in the game?
The calculate
this mostly works but it just picks the first joker that meets its criteria rather than a random one
next?
Oh wait, I don't think there's a native way to look for Jokers with stickers
down
its top left to bottom right
so the calculate is the code for the ability to trigger? and all the extra stuff too?
yarp
hmmm, even with the pseudorandom_element?
yea
calculate is where all the good stuff runs more less
aaaaaaaaaaaaaaaaah
theres some edge cases where thats not the case
For most effects it's all in calculate and extra
mostly stuff that adjusts your hands/discards when you pick them up or stuff that gives you money end of round doesnt use calculate
I thought Jokers triggered at the end of round but put the rewards in a buffer
how does pseudoseed work anyway
you need to hack into calculate_dollar_bonus outside of calculate joker to do that
Idk, but passing a string directly without going through pseudoseed to the pseudorandomelement 2nd argument worked for me
@cursive compass you have to add some other things to your pseudoseed
like append round/ante/whatever to your pseudoseed string
This worked for me
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
lyman look what i did for 600 suits
Then it changes with round/ante/whatever
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
thats the point
its a pgo
Yes
PGO!
could it be my can_use that's making it pick the first one somehow?
btw if there's none available you might have some issue
the can_use on the table
Yes. It exits the loop as soon as it finds an option
no can_use doesnt affect the actual use
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?
🤔
Right, I thought you were trying to build a list
i did i did
and also you will never have a case where there's none available because the button is unusable when theres no eternal/rental/perishable
im poggin
But you already did
wtf is going on then /lh
Yes. I mean, you could call the variable whatever. Usually, for xmult, it's, well, xmult
try replacing pseudoseed('alleviation') with pseudoseed('alleviation'..G.GAME.round_resets.ante)
i gotta go to class so i'll come back and mess with it more later
I don't think that's necessary
it is
How many trials did you do?
thats why its always the first one
because youre setting the seed to a static string
@foggy crag wew
literally no mod i've seen does that
Even the game doesn't use it all the time
extra={xmult = 3} ??
Because I believe pseudoseed takes care of it
I can almost feel the wind
How many trias did you do
thanks!
ill toss it to feder if that's alright
LOL literally whats happening rn
you mean how many times did i test the card?
same boat my friend
Again, the variable name doesn't matter. But that's probably what you want
It's hard isn't it
Yes
no problem, glad to help
ill also make sure you get credited
like 5 or so
i could be astronomically unlucky i guess but i doubt it
With the same Jokers?
yeah
Think I could team up with someone who knows how to code but can't draw lol
it's all 5 copies of the same joker so maybe that has something to do with it
what does variable refer to again im sorry im slow
Uhhh it's a value that's not constant, in the sense that it could change, if you programmed it to
don't forget to remove this rascal
xd i missed it
@rare shell
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
you could always ask it to run 20 times and see the result
or more
better (comic accurate) strife specibus colors
asymmetry is beauty
Can you try iterating over jokers.cards by index instead of directly?
The game usually does it by index and I remember having issues when trying to do otherwise
Lord of The Deep Dawn have you seen my alchemicals they have zero symmetry
peep this

like using for i with the joker count rather than pairs?
so {xmult = 0} 0 would be what i use to refer to it in the calculations?
@cursive compass did you check the length of the tab you're sending ?
Yes
btw Lyman do you like the Acid alchemical
Lovely art @lavish jackal
i was doing some testing
i knew that dw dw dw d wd w dw dw dw dw dw dw
what hapen
i'll try that when i get back
you see i didnt see acid up until i loaded the test build
Damn I love the art
i have been busy pissing in a cup
— Jimbo's dad
its weird though because i basically copied this code from another mod that i dont remember having any issues
before going out to buy Milk
Acid or Stone
would i even need an extra for the effect im trying to pull off?
These two are really fantastic too
Strictly speaking no, but generally it's good practice to not hardcode values
do you like how the acid sparks like, blend into the swirls
yee
So far I've used Photopea for Joker art, but I might try Aseprite (since apparently it's free?) or something else
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
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
Do you know the compiler’s language?
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
That’s why I believe pseudoseed mixes it with the seed to make it unique to that specific run
So then am I headed in the right direction with this ?
scratch that, because pseudorandom_element calls math.randomseed every time you pass it a seed, it will only ever return the same number
I think so, I don’t know the entries of the Joker.new off the top of my head
Best emoji react
But like the extra is at least right for when I wanna calculate?
cuz that’s prob what I’m gonna move into
i would post the code snippet i made to prove it but i dont think im allowed to
is there a balatro mod that adds discord rich presence
since its source code
I mean, you had mentioned 3 but you wrote 0. But it depends on what you want to do
3x multi so just change that to 3 I assume?
@dusk scroll take a look at https://discord.com/channels/1116389027176787968/1217867725532041369 for setting up mods
i would love a mod that does this if not
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
with 7zip you can just dump the files into a folder
my internet died..
what do you mean?
just the exe
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
hold up i got an ethernet cable
may need a couple extension cords
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?
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```
globals.lua ctrl+f colours
yea theres some wacky colours
yeah all the suits are included, they change color based on high contrast automatically
OMG I just realized I have spelled colours wrong
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
I know
im gonna make a joker that gives 2x mult with 1 in 3 odds and call it the internet service joker
Well, goodnight everyone! Hope you make some great stuff!
im going to reinvent the nuclear bomb
gn feder
Good luck with that!
Uranium Alchemical card:
plutonium when fr
I know a lot of this is fucked up somehow but am I at least in the right direction?
Aim for me please
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
game design-
damn man why couldnt it be like minecraft and use the same seed for literally everything
welcome to roguelike code
imagine you could put bets on what's gonna be in the booster packs
i can finally gamble on top of gambling
theres a roulette mod for increased gambling
gamblemaxxing
New pfp dropped
trans big man Splatoon
(I have the dapper one still dw)
Old v new
Ok that’s all I figured I would share me findings
Byeeee
business is over, mind at peace
(Side note: if anyone wants to help make art for me jokers, feel free to send them here [ideas are also accepted!!]) #1230363683679502396
ah, the two reasons i have no jokers
because you, yourself, is the joker?
👀
because art and ideas hard
real
true
ideas easy, art hard
ideas + art hard
What if I made a bunch of random joker designs, and then asked around for ability ideas
no ideas hard too
but balatro of isaac
unlikely unless i take a month off of work
3 parts of mod. idea, art, and code
whats everyones silliness rating today 1-10
(i.e. get fired)
-5
silliness rating 4 (i'm still very grumpy)
im feeling a solid 8
yeah but like you have ideas for the jokers right?
kinda

I'm not gonna lie Balatro has a pretty limited design space unless you introduce completely new mechanics
I mean, it’s not completely new, however, randomization :)
I’m listening
which isaacmod will have a few
definitely true
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
feels like soon we're gonna see duplicate jokers in mods, or at least similar ones
That'll be fun tho
theres already what like
the makeup is embedded into their skin
3 zodiac sets
HA
isaacmod will have another zodiac
ohmygod
tboi definitely has more room for creativity, however, after all these years ppl on workshop made so many interesting and unique stuff that I'm scared of trying to invent new items
(theyre items in isaac /shrug)
I'm a mod team lead but it's currently on hold due to lack of spriters
fuckin mood


averageBalatroRun
yes
when
when Acorn boss
when u forget to turn down game speed before amber acorn:
mewo
waiting for something to happen?
mewo
mewo has been very, very bad
NO
56-12-2
oh no
wait does the game always send a calculate_joker on planets even if you dont hace observatory
yes
bet
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
my new consumable type is gonna be way easier than expected
Guys should I keep the clown outfit on in the bath or off
just the shoes
Bathtime
Btw autumn, thanks for the tips the other day I'm making some decent progress now
what
Why not make the hair red? 🙂
the hair dye washed away
Oh no...
give him more bubbles
sdm whats up with clown bank? (referring to the balance of it)
what's everyone's favorite (base game) joker
castle or diet cola
i forgot mine....
this game has jokers in it?
its been 2 weeks since ive actually played the game LMFAO
no the mods do
chat i fixed canioffering
Same. So true.
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
oh actually i like blackboard too
we need a "gilded" edition
gilded jokers give $ at end of round
gilded pcards gives $ when played(?)
i think mine is showman or invisible
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
My favorite joker is Vagabond for game mechanic/play style but negative Campfire is my favorite joker for it's art.
Wdym?
why is it so bad?
Didn't felt like it with the few runs I had
it might be just cause i got it from the deck but it kinda kills my econ and doesn't scale much
Losing the "leftmost" trigger sure nerfed it a bit
like this is ante 8
Yea I can see the issue, need to do more testing. Also need to find a way to make Mystery Joker better too.
oddityapi config is a go, including base shop rate and enable booster pack configs
anything im forgoring?
Duck needs more work but other than that
Yaaaay
(gonna set up the oddity vouchers in Thac to adapt to the provided base shop rate, too)
I'm currently working in this 😛
A preview of the Joker you will get when skipping for a tag
based
based
hi lym
henlo
henno
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
tennis joker would be based for dankranks
Well, at least it's appearing in the shop already hahaha
why does that gif have wii sports sfx
fixed the jimbos
Could do something like "gains 15 chips whenever a heart is scored" to play off of the 15-love scoring system
my friend who infected me with the jonkler brainrot has been suggesting oddities to me
lets goooo
they include as follows
- narwhal horn
- potato battery
- dust bunny shaped like a bunny
- a burr
- aerodynamic display of a cow
nuclear launch codes?
they did not elaborate as to what they did
Balatro is a shitpost TRUEEE
so based
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
how am i supposed to make this a gift. what
snowy + blue/orange color scheme
is it time for me to learn lovely....
nope, it doesn't work
Ooo good idea
GUYS, i accidentally deleted Steammodded and the github is confusing me. Could anyone dm me instructions to re download?
I assume you like the deck then
maybe the mult it gives is based on how much you pay
does... lovely only load one patch or something...?
its basically just ignoring mine...
true...
but clearly working for steamodded
Got another instance when you get a Joker and you reset the run?
not yet lol i need to play the game more but i keep getting distracted
Fair
oh or its literally just lying to me
I didn't even know this game had mods that's cool
it doesn't
there are only low quality shitposts, and high quality shitposts
As fake as the moon landing
(the low quality ones are mine)
@strong swift feder thought it would be funny to troll me by wasting my entire morning waiting for details on a bug report
sorry for the ping lmao. new message werent loading
lmao
@umbral pilot stop gaslighting me :(
skin is cursed
Oshit more mod channels
oh whattt
doubt
Yea seeing how og channels got none, doubt we'd get one too.
let me dream
Balatro is too big of a discord server
The chaos in that vc would be insane
could always limit each vc to like 5 people
are we allowed to make our own modding vc (with blackjack and hookers) 🤔
we technically could
i mean nothing stopping us from like, direct calling each other
what's the line you're trying to match?
can someone share the link to the other modding channels i lost mine somehow
nah in the source file
scroll to the top
Go to browse channels above the channel list
oh lol
line 4420 and 4424 in card.lua (1.0.1c)
I'm on mobile :-/
had some ideas for the "bad joker utils" mod thing but idk how good / feasible they are
meh, i'll just deal, i guess
was just to try to apply a shader to one of my oddities
stupid idea anyway 
about a 3rd of the way there
@dapper helm Made a poll for Clown Bank in the mod's forum post if you're interested
oh sure
lines matched are trimmed, so remove the whitespace indent at the start of your patterns.
and then try
Inb4 you're the only vote
Seen a modder struggling to get votes on their poll
that would be very funny
which one i'll go vote
It was Snow's mod but I see they actually got a lot of votes
it was mentioned often yeah
Yea I remember him posting it a lot on this channel
advertisements work....
insert the good morning chat gif
hiii
good morning myst
im getting errors with houserules + myst blinds
im using the steamodded houserules + balamod mystblinds pls help
thats me
xdd
im going to snap you in half
he must be having the mondays
Hit "browse channels" at the top of the channel list
thunk added a new category
And you can re-add the mod chats
thunk acknowledged us:3
just started playing modded and this is what i see in the 2nd shop
sooooooo...what does the other half do?
buy both
full joker
now you gotta get the glue
dafug it do? +20 mult when on 5 cards or under?
+100 chips when under 3 cards
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
jo and ker
are you ok with spoilers
yes
there is a joker that has an effect based on having both of those
but thats probably not surprising
for the mod or
yeah in that mod
yeah for the mod
also i just noticed the channel split that's cool
oh yeah
this is actually not a joke btw
thats the joker you need
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
definitely a big fan of balatrostuck
first time seeing this since using this texture mod i think
based
we're so jack
we're so jack
you should make this a sticker autumn
yeah i saw that, but the stupid suggested channels thing discord does bugged it
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?
look for lovely in #1209506514763522108
Oh my lordy lord thank you
jimbo approves of joker yaoi
why dont mod cards show up for me
question is too vague
the third wheel
when im playing the game, but they show up in the collection
which mods?
did you ever find out how to get the deck creator to work?
its bunco
me when i power chip
ermm actually that was from jank jonkler's highlander joker with splash and a shit ton of retriggers 🤓
has anyone done a run with perkeo and oddities yet
i mean
perkeo power chip
that sounds so funny
fusion jokers is out now?!?!?
correct
yeah



double perkeo and jimbobread man
i hit endless mode on this just to see how high i can get the chips, currently +510 after small blind
oh huh, i wonder how perkeo works with nonconsumable oddities actually
What about Perkeo + Money?
I love salt.
do it before it gets nerfed next update
Wait, salt is getting nerfed?
iirc yeah
Aww
my only source of mult got countered by the boss so +590 is final i think, assuming i lose
can we get a :3 in the chat for Coro’s run
:3
:3
:3
Ɛ:
:3
me when shop 1 holographic cubic joker 
salt will be smited
thats good
i'd find a way to lose frfr
me
out of the last like 8 micromanaging runs i've done, 7/8 i threw because i stopped paying attention for like 2 hands
mood
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?
do you got jellymod?
No?
I assume I need it
do you have TheAutumnCircus and not OddityAPI
okay ill try that
ha there a penitz
No. I think I got FederAPI
you dont need FederAPI, its in steamodded directly now
theres a bug in TheAutumnCircus if OddityAPI isnt loaded, tho
(next update will fix 🙏 )
Well i don't have either of those.
okay Tarots are fixed now.
Oh are those your mod? What does it add?
okay I'll get that
(but also make sure you get oddityapi because of aforementioned bug)
this is so wholesome
yes.
(oddityless Thac will work in the future for those unwilling to be odd)
who wouldnt want jimbobread man
Is it in the modding forum channel? I can't seem to find it, sorry.
YA
no vcs :(
no faq channel sad
We def need that one
me when The Soul creates a legendary discord channel
better than chicot
everything is
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
stamp definitely wont work
that would require fusion jonklers to support my mod on their end i think
i think editions are supposed to work tho. might want to notify @cunning silo
im not 1 shotting anymore ;-;
good luck :)
i lost
however
was very fun
i had almost every one of teh 64 vouchers
96LC1N7Y
seeds dont mean much if we dont know your modlist lol
oh one sec then
miiight need to ask for mine (idk how to set up github)
also i used blue deck :D
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
might i recommend an addition?
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
It's laughing cuz the joke is really funny
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
i am at ante 11(13) and got a shi ton of vouchers
you should be able to do some quick localization edits to achieve that
also i had coinflip a lot earlier
ante 13(15) loss lolll
does anyone know if there’s a way in steamodded to register a card without a specific set (e.g. joker, planet, voucher etc)?
correct
it is time
hit a crash of some sort upon opening a mega tarot pack
whats your modlist
bonk
Good morning!
evening feder
btw is it actually helpful if i mention crashes, or is it just annoying
its helpful
heya!
a recommation to you https://discord.com/channels/1116389027176787968/1226203695365099681
only thing we ask is clarification: what you did (which you mentioned), what mods you have, and anything else you think might help
cool cool, i'll keep that in mind in the future
otherwise always good to make sure it doesnt happen to someone else
i can't think of much else that would help here, it was only ante 2 so there wasn't much going on
did you have any vouchers from bettmas or smth?
just the tier 1 black hole one
lemme reload my save and see if there's anything i'm missing
oh it just opens the pack on reload and crashes lol
looks like something between thac or cheesyjokers
it gives a black hole card immediately and gives a 1 in 4 chance of getting another black hole when opening planet packs
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
where is my mod
real
lmfao
lol
shameless daily self advertisement (1/1)
honestly yeah just keep pouring mod seggestions on me, i might find something i missed
also i know literally nothing about high card
cheesy jokers didn't set the sprite properly?
high card is pretty cool
you don't have to, it's a mod where you play high card
you don't need to, the mod is very good
sick
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
yeah but afaik thats not released yet
ohhh ok
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
oh cool
^
haven't seen anything too focused on references to be good by itself yet
it's more like, in the series you play those cards to get abilities, and here you get jokers
wait its a game
i thought it was an anime
it is
hey anyone remeber what the mod is that allows u to spawn jokers from collection
tryna debug some stuff
debug menu
debug mode
thank u my goat
you play those cards to get abilities (in the anime world)
np
that sounds kinda weird actually
you should 👍the deck is very fun and the jokers have really nice art
oh sick
wizard
there's also https://discord.com/channels/1116389027176787968/1228149931257237664 if you use lovely
where is NOW
wait can i choose 25
^^
too tired to set up github for a now option
hope some of mine can sneak in before release
the real answer is when you feel like it
also just wanna say yall are cool, its fun just chatting about mods and stuff
so true
im not even a dev. this is just the best part of the balatro discord
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
SO true!!!
its part of my nightly communal gathering
im a DEV
you are
correct
im lyman
hi lyman
hi lyman
im also a madman
hi lyman
i feel that
btw how does one download a thing off github if there isn't a "release" made yet
i thought i fixed that one
oof
try redownloading it from github
sure, give me a couple minutes
btw cheese your jokers are very fun and interesting
then look in the collection at autumn circus’ tarots
i second that, they're some of my favorites so far
tbh i love all of the joker mods. they just add a ton of flavor to the game which i can really appreciate
theres a few i haven't been keeping up with out of laziness but i do agree
yeah ik about that. the issue is, i suck at art, balance, and dev stuff
i can't really contribute meaningfully
i don't think the mod is very balanced, considering the imbalance of suits
i don't really get why you'd want to dilute the suit count tbh
funny
fair enough
real funny
i hope someone makes unique face cards for the garfield suit
the WHAT
the garfield suit


yeah the game's crashing when i go to look at the extra tarots
and i redownloaded your mod as well
hmmmm
sorry for this weird capturing effect
i should probably use a proper one instead of windows capture
omfg i forgot to comment something out
oh no
thats so sick
i love all the extra little
-like effects you add for the xplaying cards
kenny on their way to make the best marketing campaign for an anime youve ever seen
I have to say the show was not that good this new season
lmao
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
I am getting a little cocky now, I think I take more credit in this mod than the show LOL



