#⚙・modding-general
1 messages · Page 597 of 1
abstract
lol this is my experience with terraria too
i have more hours on tmodloader than vanilla terraria and that isn't because i was playing with mods but because I was making my own
boss blind that unredeems observatory specifically
so this is just the plant
effectively
no the plant is stronger
but yeah 42 jokers, 24 consumables, 15 blinds, 2 enhancements, 3 new card modifiers, 4 tags, etc adds up to a pretty huge amount of stuff we've added lol
this specifically counters baron-mime
got dam, nice
plant counters trib as well
10 boosters 😭
mothership eating good
smh... a blind that hates gay people??? shame
oh and like 5 decks too oops
ive got 20 jokers, 2 spectrals, one tarot, 3 boss blinds, 1 new enhancement, and an upgrade mechanic that lets you improve common through rare jokers to be about on par with legendaries
also one deck
blind that debuffs polychrome
we're approaching morefluff levels...
upgrade mechanic sounds sick
the last couple features i need to add before i drop my next update are a couple new jokers, a tarot with 2 enhancements attached, and mayyyyyybe a couple of visual enhancements to vanilla
the 24 consumables in lucky rabbit are a completely new type which i'm super happy with
i love visuals, particle effects are kind of my Thing
oooouh what sort of consumables?
visual enhancements... drspectred will find you
silly cards, focused on deckfixing!
they're really nice
silly packs are very fun lol
they're generally focused around the idea of the circus and clowns
did i win guys
they're also the way to get the mod's enhancements and card modifier called markings
nice! i got a concept for a consumable type myself
i don't have a screenshot on hand but they're chill
what do ya got?
ooh we talking about custom consumable types?
Hi, is there a Balatro mod that improves startup? I know I'll sound lazy, but I don't like hitting the R key every time hoping for a good run.
yee
consumable type gang
trick cards: temporary one-hand consumables that have multiple uses
ooh that sounds cool
i have ritual cards
silly cards are focused on being vanilla+ so they don't really add new mechanics, moreso a bridge between spectral and tarots in a way
for instance, one that might cause you to force-draw 4 extra cards, 3 uses
lots of placeholder art but
getting silly card screenshots rn to show off lol
im definitely trying to slot my concepts in with vanilla's balance and gameplay but im abiding by a philosophy that i call "vanilla++"
im doing Upgrade Cards (add permanent upgrades to a number of selected cards)
these look fun
i think i remember seeing their old art
probably sounds a bit pretentious but it basically means I strive to create something that works with vanilla but also stands out aesthetically
first try!
its influenced by risk
is this crash ace
even better, memory leak ace
if it failed it wouldve killed all my jokers
spoiler for why i did it so recklessly: ||i have one of the secret zenith jokers and what it does is let me make exotics and entropics with pointers while giving me pointers||
damn
silly cards!
anyways what arbitrary code should i execute
a silly card for reference
should i go to ante negative 999999
all the code
all of it
im just gonna go back in time
or an enhancement example
i like these ideas quite a lot
copycat cards are cool as hell btw
what does soully do lmao
creates a legendary joker from the mod lol
when the secret spectral
ohhhh fair enough
yea that's the case for my upgraded jokers
you can get a special soul type card called Rune, it shows up either in spectral packs or buffoon packs
it's great
when is the secret silly spectral
animation is slightly different from that of the soul
hey hey hey it can show up in spectral packs
oh yeah this is fuckin sick btw
never said it the first time i saw lol
hell yeah
booooooooooooooooooooooooooooooooooooooooooooooooooo
so far there's an attuned form for scholar, splash, cavendish, regular jimbo, all four sinful jokers, scary face
and im probably gonna have one for chaos the clown in the coming update
attuned legendaries would go crazy
attuned legendaries are not happening I think that would be too busted
what
its fine you need two rare spectrals
if I do make an attunement for a legendary it will probably be chicot
debuffs the boss blind twice
fair enough lol
oh hey aiko
hi
chicot 2
x2 mult
disables all boss blinds
if played hand would otherwise trigger a disabled boss blind, this card gains x2 mult
my boss blinds are
matador if it was chicot and also an xmult joker
pretty special...
chicot 3
kills all boss blinds
no more boss blinds only small and big
skip all the way to ante 1000
chicot 4
when you reach ante 2, win the game and get $4,000,000 in real life
get 4 mil in specifically monopoly money
chicot 5
disable your boss politicians irl
chicot 6
immediately ascend
to where
believe in magic

chicot 7
fuck it. this card just causes the rapture
truly
aaaaaaand infinite pointers forever
it's so peak...
depends
lets go gambling
talisman is a required dependency
it is easier. just not on the mind because holy shit ive lost my mind at 30 antes
i could tell
the joker that instantly teleports you to the nearest casino
you can play this as practice instead
I LOVE MY MOD I LOVE OVERCLOCK
road to beat ante 100 😭
ante 108
denial did not save me
It begins
it starts with one thing
gambaling
yall wanna see the function i made to change the card vals
(please say yes im so proud of it)
yes
function CHAR.FUNC.recursive_apply_num(table, modi, op, visited)
visited = visited or {}
if type(table) ~= "table" then return table end
if visited[table] then return table end
visited[table] = true
for k, v in pairs(table) do
local current_value = table[k]
if type(current_value) == "table" then
CHAR.FUNC.recursive_apply_num(current_value, modi, op, visited)
elseif type(current_value) == "number" then
local is_old_key = type(k) == "string" and k:find("^old_")
if not is_old_key then
table['old_' .. tostring(k)] = current_value
table[k] = CHAR.FUNC.op(op, current_value, modi)
end
end
end
return table
end
function CHAR.FUNC.change_card_values(card,mod,operation,reset)
-- OBJECTIVES --
--[[ the conventionally changable card values are stored in config, or ability.
I'd rather use ability as that's going to ensure the values are reset when the run is.
I need to 'scan' ability for certain values, throw out the base game ones that have no influence on how the card actually works,
then change them through mod, and 'save' the original values for later reapplication. Perhaps by prefixing the original values with old_?
so I need to save the card's ability table temporarily, probably manually check for things that all cards have, then only change the leftovers,
then finally tack it back onto the card.
]]
local old_table
if card then
old_table = card.ability
else
return
end
if reset then
if type(old_table.extra) == 'table' and old_table.extra.flag then
local curr_val = {}
for k, v in pairs(old_table.extra) do
if not k:find("^" .. "old_") and type(old_table.extra[k]) == 'number' then
curr_val[k] = v
end
end
for k,v in pairs(curr_val) do
old_table.extra[k] = old_table.extra["old_" .. k]
end
old_table.extra.flag = nil
return old_table
else if type(old_table.extra) == 'number' then
if old_table.old_extra then
old_table.extra = old_table.old_extra
return old_table.extra
end
end
end
end
if type(old_table.extra) == "table" and not old_table.extra.flag then
old_table.extra = CHAR.FUNC.recursive_apply_num(old_table.extra,mod,operation)
old_table.extra.flag = true
return old_table
else if type(old_table.extra) == 'number' then
old_table.old_extra = old_table.extra
old_table.extra = CHAR.FUNC.op(operation,old_table.extra,mod)
return old_table
end
end
end
I CAN'T STOP WINNING
holy shit inscryption
sick
I FUCKING LOVE RECURSION 🔥
when are we getting Balatro Kaycee's Mod
its basically just going into ability.extra and changing all of the number values
which, if a mod is coded right
should boost it up

Minecraft
Doing my best to translate the mechanics but I wont know how well it plays until I finish
me resetting balatro until i get ring worm and campfire ante 1
god imagine skull storm in balatro
im gonna make a legendary called 'maximum overdrive' that squares joker values
theres a ton of restrictions
everything is restricted
does it stack
dubious design
and its erratic deck
indeed
you have a single ace of spades
Im quite literally stuck
but development
wrong
you just win at ante 2
both antes have showdown boss blinds
they banned something
its significantly harder than it looks
they just didnt show it yet
mult and chips are crippled
op are just being sarcastic
thx
the rules are exactly what it says
theres nothing hidden in the rules
aikos first guess was close
you become bri ish by the end
if there’s a way to store preexisting joker’s effects, then I can start on 8.
I’ve already filed a bug report to steamodded for number 9, so all I can do rn is wait
im not that good of a modder yet
all hands are debuffed except high card
cant turn people bri ish
you have a standard 52 card deck
wdym yet
i have something in the works
all cards are 3s
antes are 12 blinds
you have nothing???????????????????
one stone card
deck of stone cards
😭 ???
its theoretically possible to beat
did you disable the standard pack tags
yeah it easy i can just
no
play none
you watched the video didnt you
from cryptid
yes
me too 
with my modpack it's easy asf
you lose instantly still
you do
you need to get some source of mult and either marble joker or certificate
development....
there's gonna be random tag out there that just gives random shit
development
SMODS.Challenge{
loc_txt = "Easy...?",
key = 'easy',
rules = {
custom = {
{id = 'win_ante', value = 2},
},
modifiers = {},
},
jokers = {
},
deck = {cards = {}},
restrictions = {
banned_cards = {},
banned_tags = {},
banned_other = {}
},
}
needs challenger deep
no thats gonna be a later release shush
wtf.....
hi, im downlanding cryptid mod and i have an error in the game code
the cryptic mod
send crash
share crash
how…. Cryptic….
i've discovered the most insane unintentional synergy
every time you play a single scoring copycat card, all of them will gain +5 mult and i'm unsure if i should keep that in or not lmao
change Talisman to talisman
keep it
try it :v
Having multiplayer mod and trying to play single player causing crashes rn?
+1 chip for every unique site in your browser's search history
if you remove it i will explode you
okay fine lmao
kafwoosh
it's slightly overpowered but so fun
that doesn't make sense
I love prioritizing fun
I have multiplayer mod loaded, click single player, game crashes out. 👀
I don't even get an error like usual, lol.
Car
minor deltarune ch3 spoiler
goodness me
still :vvvv
amazing
congrats on the transition
it's such a fantastic synergy that i'm keeping it in regardless of how non vanilla+ it is
trans rights ftw
trans people = infinite mult
trans people
can confirm
it quickly gets a bit absurd
pls nerf not only they can double jump they call also gain infinite mult by existing smh
not enough
a very goodstart
ortalab tomorrow
nuh uh
what is god tier
just him?
jockington gif
Why is it spelled like that
is the card sleeves mod not working for other people?
send crash
chapter 2
what does set_edition do
when i streamed deltarune to my friend in vc i did every voice myself radio play style
wait sorry that stupid
queen's was very fun to do
what parameters does it take
I've been playing Balatro for awhile now but I just heard about modded versions. I read in the rules not to mention modding other platforms, but I'm just a little confused about how modding works and how to do it and what's available. I only play on iOS through Apple Arcade, so o assume that means I don't have the ability to play any modded versions? (I'm autistic and have a language disorder so I'm not trying to mention anything I shouldn't, just trying to understand and will delete if this question is not ok)
well shit
yes. you can only mod the steam version
oops
i solved the talisman mod problem, and what is happening now 😭
my boss
dont get fired
how do i do that
take a screenshoot or copy the crash log
sorry, only the steam version is allowed to be modded here (also, your question is just fine!)
Oh ok, thanks. I wasn't sure if you couldn't change anything about the iOS version like in coding but somehow would be able to play one that was created for pc on iOS. I'm not sure how my brain came up with the thought that would EVER be possible, but I figured I'd ask
wasnt a direct crash. the visual aspects of the sleeves are working but not the benifits
oh thats rare
game pass modding will be available in approximately 99999 days
the question is 100% valid and okay to ask, discussions of "rule breaking" topics are usually okay if the discussion is simply to clarify the rule itself
it is technically possible, but can't be discussed here as it breaks... a lot of rules for both the mobile platforms as well as the rules of this server
id advise against it even if it is possible, seems like a hassle and a half to figure out
yeah it's not exactly easy lol, and i'm also unsure if it even works on ios
that said , do consider getting balatro on PC! lots of cool mods
i search something with that and find nothing, you have the lastest version?
just downloaded the latest version
are there any mods known to go against card sleeves
Can anyone suggest me some mods to try out, I've liked the ones I have tried but I wanna play more :e
I downloaded a lot of extra standalone decks
is the first time i hear this problem
yggdrasil
I would LOVEEEE to, I just have to get a PC that's not like 16 years old and ya know, doesn't basically crash upon opening to the point I gave up using it like a decade ago 😂
don't blame you on that
where does the mod button show up
right
god that's fair
you have lovely and smods installed?
I tried desperately like a year ago to update it from windows 8, but was unfortunately JUST past the point of being able to without having to actually buy the new version of windows, which o sadly can't afford at the moment.
i think so i put version.dll and such
there's some crazy shit people r developing for this game man
i've heard lucky rabbit is fire...
windows 11 is the current version
How crazy...
probably you have the smods folder nested
where did you put lovely
ill shill my mod rq but i also have a bunch of genuine suggestions after
if ur talking about the folder it created it automatically went to the mods folder
my mod is called SuperFine, it adds a few things (probably not super fun on its own yet cuz not much stuff in it)
anyways
my mod is so ass
Yea, but windows 8 WAS able to get a free update to window 10, which you could then update to 11. But once the free update to 10 was gone, there was no way of doing it after speaking to Microsoft for like 4 hours 3 separate times 😂🤦🏼♀️
Grab Bag, Bunco, All In Jest, Paperback, Ortalab, Yggdrasil, Balatro Goes Kino
did you put steamodded inside the lovely folder..
no
wow thats crazy
Ortalab tomorrow
yahimod my beloved
share a photo of the version.dll and the smods folder
where do i put it
yahimod inspired murder joker, my greatest work
madness?
I actually really like it lol
chat what do we think
why
because I'm a VISIONARY!!!!!!!!
you have a smods folder inside the smods folder?
and there's no mods button?
I'm now thinking of a deathloop themed deck or texture mod lol
i put it in the folder it created
11
open the smods folder
either of those should have no problems
no i mean, you have smods nested?
idk what that means
Nested is Mods > SMODS > SMODS > Files
does AppData/Roaming/Balatro/Mods/smods-main have a single folder inside it?
Normal is Mods> SMODS > Files
because if so you need to extract that single folder out into smods-main
mods>smods>smods ✖️✖️✖️✖️✖️
mods>smods ✅✅✅
so i need to do something here?
Show the path
where is this located yea
wait this wont even naneinf talisman is a required dependency
yeah this should work
Well you can put normalnum in talisman
you buy balatro from steam?
yems
He did
i have a deck that requires you to go to ante 108
yea, then it works
and a challenge that makes you beat ante 1000
wait yeah its working now
from where you install lovely and smods?
yippee
bruh
yeah, if it continued to not work then it'd be out of your hands
that's the correct setup
development resumes tomorrow
so if it refused still, that wouldn't be your fault
thats was rare ngl
also very good choice of first mod
Thanks
install QoL mods
handy is always there for you
just changes some small things like you can click and drag to select multiple cards, etc
quick everyone promote their own mod
Real
nope! i refuse this time
it's in my username, I already shill it by typing messages here
i love when this happen xdd
fair enough
as soon as my textures are done i'll join you
until then i get to be SMODS.Fool
late
Adding to my list
Any significant conflicts with other mods
not that i know of
And or should I run some of these solo
i don't think any mod is large enough to warrant a solo run except maybe cryptid
ok
Cryptid my behated
id recommend using SuperFine in particular with other mods bc I haven't been working on it for much longer than a week, so it's barely got anything in it
what mods do u have?
just so I know what'd be redundant to suggest @knotty sierra
what
ITS PEAK
Bunco, aikoyori's, deck sleeves, galdur, uh and some others that id remember if I saw the names lol
Not @ my PC rn so can't check
How do you make the mod menu that big?
ok so immediately Paperback comes to mind
whats the max ante with talisman omeganum?
i love the trope of naming modding APIs and library mods after parts of the game btw
idk, i reach 1.2M
"Handy" "Cryptid"
I tried finding it but never found a download link
Is cryptid an api mod
do u have the mod manager?
Playing on Linux so the mod manager is a no go
no but it has enough systems that other mods replicate that it may as well be
fair
aaaah, I'll try and find a link to paperback
working on it ...
~1.7e308 because ante isn't a bignum
new mod menu lookin sick dawg
oh cool
the size limit of omeganum is far from the problem. there just aren't enough antes to reach any """"limit""""
would look better with too many decks
would it be winnable if i made a challenge to beat that ante
i always sort of thought that the existing smods mod menu seemed sort of.
probably
blind scaling is pretty light compared to literally any tetration/high exponentiation or something
like it was designed for having 4 or 5 mods installed
Bad
it fucking sucks for navigating
at some point you couldn't go up an ante though no?
like if you have at least 20 of them installed
like ante 2^64 or something
wdym, you can always get higher
smods' existing mod menu feels like they never expected the modding community for this game to extend past the fringes of the internet, which is very fair lol
floating point precision gets too inaccurate i believe
Would it be possible to implement a search feature? Probably not necessary but still would be nice
is this something you implemented your own but not yet merged
yea
looks cool ngl
it is
thats like 1e17, surely you can surprass that
hrmmm can’t help but notice something missing
youll be stuck
i dont have all mods i knowinstall
this is just the modpack i work my mod in
The Modpack I Work My Mod In
unless you can go up 2 antes at a time
why did i make these
i will try that later
but think of the crossmod…
wtf make daft punk
shucks i wanted to add the chuckler
whar
OH MY GOD IT'S THE BLUE GENTLEMAN
Any luck :?
you can go up more than 1 ante at the same time
hey if yall want an effect of my U.S.M joker that gains effects based on the mods you have with it (kind of stolen from aikoyori- sorry 😔 ) please dm me
i also made these joknlers today
ur art is super cool wtf
is that ba
chicken
ba?
balala
:D
your art is actually elite
john madden…
me when I'm a travelling koopa and I have to dance to the music because I'm bored:
lmao
Oh Nice
goddamn
f:5?
u know ur getting somewhere w modding when u break the game in a way u didn't know was possible
oh hey
ok so
to make japanese font appear
you need to set the font to Japanese
ohhhh
inscrypto?
oooooh
so close to being
what all sigils r u planning on adding to these?
Inscryption x Balatro
mycologist deck would be rad btw
bocch...
gn yall
uh i dont know that, let me search
bocchi...
Most of them, I'm splitting them between joker effect and card seals depending on what works better
Many have to be tweaked and I think Bloodhound is the only one left out
i see
i must be stupid
What are som qol mods you all recommend
and if there do end up being legendaries in the mod there's a few characters they'd obviously need to be
handy got updated iirc, if u can find the thread in the server and haven't updated already id def recommend doing so
besides that, Galdur is huge imo
Have it :3
Extra Credit, Yuri Blueprint Brainstorm, Legendere Jokers
mfw a custom rarity had a 0.75 rarity weight
true , true , very true
Good point
I would go for yuri brainstorm and blueprint but unfortunately my family have heterochromia </3
(Hopefully this reference works lol)
UnBlind makes the blinds and tags for the current ante visible through the shop without checking run info btw @knotty sierra
only caveat for u is that i can't point you towards a link myself because i found it on BMM which you've already ruled out cuz linux
@hard plank aikoyoris shenanigans 4k
I can probably search git for the repositories
is yuri brainstorm blueprint on anything that isnt nexus yet
Also someone should make a joker based off of Spider (the solitaire variant
Have it be in a similar style to paridelia art wise
Except it forms a spider
:p
balatro themed deck of cards, my god
absolutely wonderful
wtf!!!
Any really big mods other than cryptid? (I haven't played it yet cuz I like my mods to have some balance to them)
uhhhh bunco has quite a lot i suppose
ortalab
but if ur looking for vanillaesque, it's probably best to install multiple different mods
Have it :3
cryposting 
anticryptid propaganda (morally good)
maximus should be one
most vanillaesque mods tend to mesh better and be significantly less buggy together than stuff like cryptid
the deal was impossible...
cryptid is mean to be unbalanced
Have I interacted enough here to go on the alignment chart
cryptid is meant to be unfun
yeah but that does make it buggy with other mods
depends the person
instead of cryptid why not lancers
uh?
Also should I be able to post gifs
no
I don't think I should lol
ho ho ho
Discord mobile not having parity with PC go brrr
fella is it stupid to install vanilla remade just for the increased chances for vanilla stuff to appear
aikoyori what the fuck is a ch4 spoiler here
lancer
did we play the same ch4
lancer sprite...
aiko thats ch3 you dork
this is the most minor spoiler and it not even the right chapter
aiko boo spoiler
im scared
are those tags
no its yggdrasil relics
oh neat
the bow
what is mr beast doing here
Ydraysil seems cool but I feel like it may be out of place if I use other mods with it
did i miss something
I don't think so :?
i am curious as to why this is occurring
still cant believe they slid glop into the exotic misprint
May be stupid
i think this is the wrong game moding chat
No.
there's a joker that inserts themselves into every single rarity
im trying to add ygg support to my mod(s) that may or may not ever exist !!!!!!
i think it is pretty cool even if you have other mods
what's the point of adding it if it won't ever release anyway :clueless:
because i mod for my own enjoyment
based
however i will enjoy playing my own game and spinning my own little hamster wheel
really
bepis.
haya.
you two.
hmm!
i heard a rumour about smod is changing the way probability work
yeah they should do that
hi autumnmood
oh no
i hate when smods does things
hiya haya
i hate things
Meowww
the fuck me for???
:3
flowey's gonna look at your notifications and run tf away dog
i hate smods
joker unlocked!
heaven
Hey haya
teto
what the fuck
what the fuck
Guys which one should I get?!?1!11!
Hmmmm the back ground
Is it worth getting Balatro on my laptop just to mod it I play it all the time on my xbox and have been enjoying it
pink deck?
thmbs up
Chat im so happy for no reason
hmm yes recommending shit that we cant get
it was a separate statement
Are you perhaps under the illusion of this you call a job
Ahh not the j word anything but that
Job
Nooo I must stay unemployed I'm too young to die
Manifesting good luck 🍀 and beautiful day for everyone ✨
good evening everyone
good evening bepis
you know when you can select up to 5 cards in hand to discard/play?
"Hand and Discard selection limit"
here i have +1 on both (different deck)
pink deck + the psychic = death
Job
we're back
No more talk about the j word I already have to get one soon
naneinf.....................................
bepis
how hard would you say it is to have a relic that adds +1 hand size
im trying to think of how to do it and i might just be overthinking it
Lore accurate v1
Ah yes something I still can't get yet
I might convince my friend ti get Balatro just because it has an ultra kill mod
oh, hm, i should probably add something like on_equip = function(self, card) to make this easier
Meowww
How is everyone
i do have a few ideas in mind with how relics currently are set up but they are a bit finicky
Good morning Corobo
Hiii
i guess the problem arises that you could just equip and unequip it every hand
Oh numbers are nice to see go up makes brain happy and gambling addiction must grow
I hope you have an amazing day today , you and everyone in chat✨

oh, should i add something like can_equip = function(...) too 🤔

then you could implement something blocking it from being requipped after being unequipped until after a round is completed? i could see that
Balatro is such an addicting game even tho the gameplay loop isn’t that interesting you just play poker with extra steps but the builds and stuff makes you wanna challenge yourself and try different builds and not play Photochad every time
yeah, you could definitely do something with can_equip, let me see what i can add
So real
I think you’re a pretty good modder bepis and a person aswell you’re pretty talented i wish to be as talented as you but i’ll try my best to compete
too bad yahimod is very "use just me or i'll crash your game" in terms of jokers
:D
so
not really
aww, thanks, you will get better the more you mod dont worry :p
how so? 👁️
Dang good thing my friend doesn't have to play games on a laptop like me lol
yahimod has no cross compat in mind but this just means it has the default "talisman bad" state
Cryptid mod + my school laptop might make for a good experiment
fuck talisman all my homies hate talisman
I already figured out how to make basic jokers and i understand the concept after exams i’m gonna make a small mod
to this Simply Don't Play Yahi With Cryptid
yea no i get that
Talismen are scammers
based
would've loved to try lydia with double scale/scalae
hehe
i know the mods hate each other though
yahi mod isn't the "use just me", it's talisman that's "force everything around me"
yeah fair enough
alternatively you can play the best balatro modding minigame
Does That Have A Table Comparison??? the gameshow where you play bomb squad with jokers
Unreasonable ☕️ crashout
hii guys! just wondering if modding has any risks ?
Nope
yes you might lose sleep
There are no risks its just fun mods
its 1 am should i get unhealthily addicted to making a mod rn
🤔
don't download sketchy shit from other sites
Okay maybe this but other than that there are no risks
ty :)
Please don’t, sleep instead
Have a great modded journey
thank you. honk mimimi
Eu supremacy
Its okay :3
Do you feel okay using light theme ? Doesn’t that hurt your eyes
Wait I'm bad with time zones is EU nvm I figure it out
not in the afternoon lol
Oh right
That hits like a flash bang though in the morning
yeah
I winced so hard when I zoomed in on it
another level bar???
what the FUCK
it's ok, I don't have it
oh no not levels don't die only lvl1
what the hell
she look awfully tinted
Your bar is better bepis
the mirror dungeon experience
mucho texto (it got cutoff)
yeah lol
Skill Tree-mageddon
WHY DOES IT CUT OFF
we live in a society where three skill trees at a time is acceptable
lol
skill issue
I’m the only one in the right as I made the first skill tree /j
hey I'm considering getting balatro on steam just for mods should I wait for it to go on sale?
Wait for inflation to increase the price
i think it should be made so that if you press on the blind then it flips to another page of the passives
🤔
I think you’ll have to wait for long time
Maybe not
all i got is YOU MUST BE HAPPY and v1 brah
my mod adds minecraft crafting so im half in the right
:3
i think a mod conflict had happened
between oh i dont know
Vellkari and LCorp?
i cant see the skill
where is it
you don't think its going to be in the steam summer sale?
that's aikoyori????
Since it had massive sales
ngl this look cool
those are from aiko shen, yes
Probably yeah
skills are supposed to be there
well yes but the overscoring thing from vellkari
why is your deck invisble?
oh then maybe :3
no placeholder sprite
skill deck breaks with aikoshen
ah ok
rip
skillful
ok buttttt
how do I mod Balatro because I want to know from people who have done it before and not a random website
ok thanks you
update finity to latest commit, freh fucked up and accidentally removed the placeholder from the atlas (twice!)
uhm
My advice is start slow
🤯
after this bossblind
get a yorik and trib to make it go fast
( IM FIGHTING KALI)
Linux ?
Space joker tweaking
lol why does space look like that what effect did you give it?
hey guys, is there a specific guide i should follow to download balatro mods?
cryptid's glitched effect
basically, random values
i happened to get like a 2.1 in 2.4 chance
(entropy revamps the glitched shader)
cryptid MOD
not the spectral
sweet hopefully when I get Balatro on my laptop cryptid doesn't kill my laptop
hey can you stop react spamming me please
thats added now
hooray
stone joker but small?
bait
not
hey bepis i was playing entropy alongside your mod and i had the same issue i had with partner and thats if you somehow get it in the shop it does nothing
basically, parakmi
Oh sweet it looks cool and now I see why it's called fixed joker maybe only 1 small suggestion to how the sprite looks is to add table on the cracks of it
i mean the materials btw
Arachnida class
hey guys, is there a specific guide i should follow to download balatro mods?
oh my fucking god RIGHT
no_doe
Because it has nowhere to go.
ermmmm,.,.,.,.,.
so much for crossmod compat 🙄 /j
oh ywah
what
fifth atlas!!!!!!!!!!!
I love this
aw hell nah at this point you boutta make a final boss where its just all of them at once
like the blind selection takes up the whole screen, its only that one
The Hammer and The Manacle and The Serpent and The Greed and The Joke
Wish I’d thought of this for Cruel Blinds
it alway cryptid brhahahhasksarh
blame it to smods
The Outcast
Daring Group is 3 of 5 showdowns
except it's built like the double blind they got goin on over there where it's just like a huge roster of all of them and it's the width of all 3 blind selection squares combined
can i have a deck where i have to fight 5 bossblind at once at the end of an ante
silly boy
The final boss is 5 random showdown blinds (can pick from modded ones)
That would be a brutal challenge
and they dont respect min ante so showdown along with min ante 5 that can show up
i added these two
Needle water wall first boss blind and you just
die
Horrendous Blinds mod
Probably
sound like a misson for you to add
takes hammer space
80% of the cards get turned into ccd crash cards
R u using mission in the normal sense of the word or talking about my Missions mod
your mod
And wait that’s actually not a bad idea
daring group ante 4 and Rainbow Party ante 8
Each ante shoves in an extra final boss blind
tbh I’m considering a combination intermediate floor
But all jokers are forcefully raised a rarity
Which combines the previous three missions
i wonder how many people actually interact with certain aspects of a mod if all steps of it arent explicitly noted somewhere ingame 🤔
wdym
this server has made me dislike the thinking emoji
🤔
why? 🤔
ASTRAL I SWEAR TO GOD
🤔
🤔
🤔
like my mod has a ton of jokers that work like gros michel in terms of adding secondary, more powerful jokers to the pool
but from what i can tell only one person has tried actually engaging with the mechanic
should i add anything else
Skill issues on the players’s partd

😭
make it so theres a recipe for Misprint that uses 8 card scraps and a misprinted essence
what is this shit
I might add a mission called “The Minor Trial” blocking off later Missions until you win
"The Minor Trial" -prevent people below the PEGI rating from playing balatro /j
They made Balatro woke. How? Clowns
(very) minor deltarune ch4 spoilers
hee hee hoo hoo funni equipment
fair, one sec
ooh neat
They look like forager items.
I would smack a rock with that scythe
Probably would have a multi-stage Ante 6/8 boss
you can do anything with that scythe
imagine a boss blind that spread itself across 3 antes (3, 6, and 9) getting stronger each time (ultrakill reference)
I love Balacraft
im actually gonna start adding more joker recipes, hold on
What if
Eat
banana blast
youre not even too far off given necron's blade and hyperion are in it
i genuinely got caught off guard updating to 2.0 and seeing hypixel stuff
baja blast
i have a really stupid (set of) idea(s) for yggdrasil my mind just thought of
turn delete into sell, make a separate currency called material bucks, have a material shop every shop where you can buy certain (common-rare) materials using material bucks
partly fixes some issues with certain materials being extremely difficult to obtain while also not reducing the actual rarity of finding legendary and above materials/relics
Yo chat, I need some people to help me test something
Nevermind I found the issue immediately
Have a good day.
most normal modded chat conversation
legendary recipes when
heartwarming: balatro fan learned how to read /j
another 14 jokers
perkeo 2
i love the im nothing joker
guys why is my balatro crashing after it loads
like its not a crash log
it just closes
oh you'll love what im about to do with it
Nawr I was trying some cross-mod content and I can't figure out if it's my doing or the other mod's doing
does it delete itself
close one
delete cards?
more use for the suit materials
This Gains for each
