#⚙・modding-general
1 messages · Page 1508 of 1
judging it from judgement 
in the arcana pack straight up judging it.. and by it.. well.. lets just say.. my ment
rascal was funny
-# Good point for me to add an option to not add to the title screen, I suppose-.
Guys what are your thoughts on qualatro
can we quote this
for the mod
sure lmao
I'm still very proud of the custom menu implementation I did for Maximus
now that hodgepodge is so close to a publishable state, i think i should go do something entirely different and dissect amulet to see if i can use its implementation for imaginarium
lowkey pioneered the menu sprite 
dont suppose anyone here knows how amulet does its witchcraft
Frost is messing with Amulet in Potato Patch rn if you wanna ask him there
im here
how tf does amulet work without metatable comparison stuff
it's like
creating a custom data type in C that lua can use
oh interesting
its native c type meant for low-level stuff
i have a PR open in smods that should provide a new way to add cards to the title screen without fucking it up
LETS GOOOO
useful for byte manipulation / native c api calls thats not exposed to lua
so its not as simple as just being able to use a function to convert tables to cdata
guess im learning c
Hopefully Eremel pulls this during his next PR roundup
guhhh
which is hopefully soon with lovely 0.9
real
hoping he looks at canvassprite too
you can actually, but you need to also know how to declare the type
you can use ffi.cdef, for example like
ffi.cdef[[
struct OmegaNum {
int sign;
int asize;
};
]]
interesting
peculiar
attempt to compare number with userdata
will this entirely remove the need for to_big or no
so how complicated do you think itd be to make a cdata implementation for imaginary/complex numbers? i already have a lua metatable implementation but obviously comparisons arent possible that way
there's definitely cases where i could see someone not wanting a bignum
How are you planning to compare complex numbers lol
just need to wrap the table with cdata and define the ctype metatable with ffi.metatype
you also need to handle save conversion
some arbitrary method that makes the most sense for balatro scoring
like converting to/from table so it can be saved
Like the modulus of the complex number maybe?
I.e. z = a + bi > w = c + di if and only if sqrt(a^2 + b^2) > sqrt(c^2 + d^2)
then theres some ways to init this, with ffi.cast, ffi.typeof, table / args init
ffi.cast("struct OmegaNum")
ffi.cast("struct OmegaNum", { sign = 1 })
ffi.cast("struct OmegaNum", 1)
yeah itd be either that or a+bi > c+di if a > c and b > d
theres a doc for it if you want to know more https://luajit.org/ext_ffi_api.html
cdata stuff seems a little complicated for me rn (esp considering i dont know c lmao) but ill def keep it in mind, it seems like a good solution
yeah unfortunately i am looking through this and i am so lost lmao
i am not very good with low level
understandable
heres the first bit of my complex implementation lol
im so annoyed that balatro doesnt use a version of lua with metatable comparisons, all this would be so much easier
its a very simple implementation. which makes me even more mad that it cant be fully implemented without this hacky stuff lol
make a new struct and set the struct metatable with ffi.metatype
you can do it only once though
so i suggest doing it at the end of file
also struct can't handle arbritrary lua data, so if you need to you'll need to do hacky cdata->table reference stuff
im. so confused
i ought to just stick to hodgepodge for now lol
alright lmak
What is this
complex numbers in balatro
Oh wait this is for Hypernotations
no
its for complex numbers
number whos definitions involve i, the square root of -1
Man I fucking hate being not mathematically gifted.
i first learnt the complex plane from a puzzle game
very cool concept with very cool math to go with it
its basically just normal numbers being used alongside multiples of the magical variable "i" which has some odd properties
Combinatorics when
take your age
multiply it by i
multiply it by i
multiply it by i
multiply it by i
thats your age
yeah the square root of i is sqrt(2)/2 + sqrt(-2)/2
draw fanart of the complex plane
survivorship bias?
no
ghhhhh
Man what the fuck is i
the mathematical concept of the complex plane on which complex numbers reside
its defined as the square root of -1
so basically its made up
its imaginary
√-1 ?
yep
I have a joker named EGO SUM, which is just my oc. It translates to I AM, which is I think another epithet for god?
i dont know
i should make an exodia-type joker that's IAMGOD
torture me atp
lol
am not reading all that
honestly this would be a cool food joker imo
i hate fold mod
can someone with the cyptid mod tell me what the "values" they are talking about is? like the sell value or like the numbers on the cards? (like mults etc)
whazat
all mutable values on a card
excluding editions i think
ic
the stats of a card
(well, exceptions apply)
if you have multiple of tropical smoothie, selling a tropical will multiply the multiplier for a different tropical
although this is cryptid so i shouldn't be surprised that it's fucking absurd
anyways back to playing limbus
good news! theres a magical button called the "delete key" that can solve that
so if i sold it, these mults would increase by 1.5 times right?
yea
they should correct
hmm never heard it
wait it even applies to how much mult you gain Wonder_Point_Yes
oh
i cant use nitro
hey so joker idea
boomerang (uncommon)
when a booster pack is skipped, create a free copy in the next shop with the same number of cards inside
(currently 0/3 packs)```
What in the Moving Box?!
what
rare spectrals are now guaranteed to anyone who is patient enough
unless that last line means it stops doing it after enough consecutive skips
is it already in a mod
oh no it just means that uh you can only copy up to 3 packs
since otherwise you could just yk
keep stacking
do u think i should make it exclude free packs? that would solve both issues at once since you can only reroll it once
yea i think that's a good idea
For context it's basically Moving Box from Isaac.
You can rename it to Postal Service if you want.
I dunno what to do for the rest of my monitor effects.
because all that's left is: Spring, Fire Shield, Thunder Shield, Gold Shield, Orbinaut Shield, Whirlwind Shield, Force Shield Ice Shield, Invincibility
yuri sleeve
Fr
Someone should make more oker versions of alternate jimbos
Is there a way to make a secondary atlas (I think it's an atlas) that specifies whether a rekoj is a bizarro or a bonus rekoj
Also how do you customize the color of them
this seems quite good
I just hovered over a random rekoj, the focus is the text at the bottom that says the mod name
Extraterrestrial is bizarro vampire, so I'd like a secondary thingy saying it's a bizarro
A rekoj version of oker is in the mod too, but it's not a bizarro of anything, so I want the secondary thingy to say it's a bonus rekoj
Check set_badges function in your Joker definition. https://github.com/Steamodded/smods/wiki/SMODS.Joker#api-methods
Oh so it's a coding thing
set_badges = function(self, card, badges)
badges[#badges+1] = create_badge("Joke (TOGA)", G.C.SECONDARY_SET.Tarot, G.C.WHITE, 1 )
end,
I'm assuming the colors of the badges are formatted like description text
White being the text color and tarot being the bg color
create_badge(_string, _badge_col, _text_col, scaling), yes.
Again, refer to the linked page. 🙂
hey guys if i download a mod which changes how a deck looks- just style nothing else can i still get achievments/progress?
Steamodded, by default, will prevent achievements, but you can enable those in Mods > Config, whether you have other mods present or not, be it QoL/texture or even content mods.
Idk, I assume the game doesn't bar you unless something other than appearances are changed
Oh
Nvm ignore what I said
is their any joker mods you guys recommend im new to balatro modding
I don't think ortalab likes rekoj very much
Whar is amulet
talisman but it doesn't cause "attempt to compare number with table" crashes
https://github.com/frostice482/amulet
Oh
u want to look at badgesµ
Is the mu a typo
this is so cool vro
I've only ever seen english keyboards in my life
All the letters are centered with the numbers and symbols and stuff spread around them
its a qwerty i just changed the key set because i'm missing accents
through a file
because i have less keys than usual
and can't code
And you just set it to a greek letter?
o
`<>\
Is it kinda like inputting symbols with alt+numpad
So ctrl+alt+symbols or specifically the right alt button+symbols
Right alt is just an easy mode button?
Alt Gr (right alt) is for alternate graphics
And for foreign keyboards those symbols are in place of $ and you gotta play a minigame for that instead
depending on ur input
in foreign keyboards we have to press alt gr + e
for the euro
the dollar has its own first level key
$$$
That's incredibly stupid
no
Why not have it to one's own currency
america
all suits related tarot done
No I'm confused cuz wouldn't it make more sense to have keyboards shipped to europe or something have the euro or pound in place of the dollar
International currency type stuff
france by itself has 3 different input methods
Whar
qwerty
azerty
bépo
The hell is bepo
belgium has its own azerty keymap
Is the belgian language special or smth?
no
o
not compared to french french
Is it just a customs thing then
how do i use vortex with balatro mods?
I know I don't even have to ask if nations with inherently different writing systems have their own keyboards
chinese has had multiple
Is it called dvorak cuz of the guy who made it or like
yes

experimen,tal chinese keyboard
Alright this is more up my alley
wubi
Aw hell naw
tried putting a balaclava on a joker and it turned out looking like old extremely racist propaganda
Isn't that the thing that gets confused for ski masks a lot
Like what does the joker look like
he probably accidentally drew mr popo
the black face character from dragonball
nah i got it to look not racist
holy fucking shit i get what u mean
oops
Try making the eye holes bigger to have more skin show
That way it doesn't look like pre-recolor jinx
my game is so cooked that sometimes things dont work
for example i have vampire but sometimes it just skips cards
Also it's hilarious how burgler is the template
nah i just gave it a crowbar

thanks, the height
how do i use vortex mod manager with balatro?
please dont
theres another one?
nexus is an awful place for balatro mods as it is right now
vortex is nexus' mod manager as far as im aware
how so?
oh
nexus will always be an awful place for balatro mods because no one uploads to any mod hosting website, we just use github
nobody uploads their mods there except like deckskins and a few people
and if we do end up shifting to some sort of mod hosting platform it'll be thunderstore
it is recommended you download them manually or use BMM (which is not particularly good, but miles better than Nexus)
there's also IMM which is actually good
i can find some mods from nexus that i like on bmm
whats IMM
ingame mod manager
its like bmm but its ingame and actually good from what ive heard
yeah but how am i supposed to get chud joker on bmm?
-# or you could just find them on github or in the discord
or subreddit
or
uhhh
i mean, up to you if you want to use a worse mod manager
nobody's gonna stop you
your local library
you can also just download it via nexus and not use it for most mods
whats the mod called
chud joker
chud joker
Does amulet need talisman active to work or can I deactivate talisman
gng judge my monopoly card
amulet is a talisman replacement
Alr
lol
the blue spot on the left in the black si lowk annoying me but this is awesome vro
woops
@mighty horizon here just put this in your mods folder
Help me! An eastern European is chasing me!
then cant i just do that for every mod on nexus i want?
uhhh ya i assume so idk anything about nexus
i just downloaded the zip and put it in
wait i can just put the zip and not have to unzip it?
u do need to unzip it
Lovely recently started supporting zip files I think, but smods still not there
Zips don't work, it needs to be a normal folder
So just unzip it into a normal folder
what about this
Why are they wearing 2 hats
It's not bad but it does need something
Are they rupid
its called being classy
what's the card supposed to do?
jimbo used to play payday 2
shoot people
give it a gun
also just make the red and blue dark gray
and the little pompoms red and blue
or like
navy blue
It will probably look a lot darker in Balatro I think
Shaders and shit
When the pixels stray
Maybe widen the eye holes a bit
pdn
theres a mod i have in my mod folder but its not showing up in my mods section of the game does that mean its not a steam mod or does that mean it doesnt work?
Check if it's nested maybe
I wanna use firealpaca to try and make my own art
nah already did that
Oh
You might need another mod to use it
Like talisman is needed for cryptid
(Or amulet)
is it zipped?
Shouldn't it appear in the modlist anyway?
nope
nope
did you add it to %appdata%\balatro\mods?
yep
God hates you then
Its divine intervention
what mod is it?
Maybe go on to your mod page, there's a button that opens your mod folder. Idk, maaaaybe there's something wrong with your mod folder? Idk?
Actually that happens with a certain mod I have for crossy but it doesn't load too
Maybe the mod isn't in a nice cozy folder and is dumped all over the mod list lmao
Wait how would you have smods then. Brainfarting
wdym?
wait does nesting mean i have to take the assets and what not out of the unzipped folder and merge it with the other assets folder?
Oh yeah another question, I wanna make a mod that is a deck only with clubs and Diamonds
how would I do that?
Copy checkered deck but replace everything related to hearts and spades
bruh
oh ok I'll figure it out
ok so I changed the code around, problem is I need to figure out how to change the deck so it isn't the checkered deck art
You need to make an atlas for it
https://github.com/Steamodded/smods/wiki/SMODS.Atlas
feel free to move this conversation to #💻・modding-dev
Okay time for challenge: make own tutorial in G.OVERLAY_MENU
Problems appear immediately: Card_Character renders behind overlay
so just copy and paste the stuff or what?
ok
also other question
for making face cards, does the placement matter?
or go willy nilly?
u can have a 3 card atlas and use the collab key
assuming they are in the order of the foj decks
btw is this allowed in mp or do i also have to cap the gamespeed
im not sure abt mp rules
i don't play mp but i'm just
guessing one of the banned handy features is the increased speed
i don't know exactly i'm not bothered to try mp
any way to increase speed is illegal basically
I forgot about this one too
ill cap it then
🤔
i might aswell generate mp-specific patches/release since its not very api-able
nvm it just makes it harder to maintain
any mod that hads more pokerhand types like royal flush and stuff like that?
a good number of mods that add new suits will also add new "spectrum" hands, which is 5 cards all of different suits. there's also straight spectrum and spectrum house/five
Cryptid 😈
but like is their any mod that adds a royal flush?
i think mayhem does that, but it also adds quite a bit more content and is. quite unbalanced, to say the least
royal family may be of interest to you though https://balatromods.miraheze.org/wiki/Royal_Family
Royal Family is a content mod created by SleepSpell with additional art by Fudge and Music done by StingrayV8 designed to be a balanced addition to vanilla gameplay. The primary feature is the addition of 10 new face cards, inserted in between various ranks. It also adds Jokers, pokerhands, and planet cards.
why is this worded so weird
i have no fucking idea what it does
so if im reading this right, it gains 2 if not a straight, but 20 if its part of a straight
and 10X it when a straight is played which i think is way too powerful but
assuming 2 is the lowest card you play
no like
if played hand contains a straight,
gains chips equivalent to (lowest rank card)x10?
ya
that could be worded so much better imo
hiii meta
i was scrolled up lmao
lmao
must’ve saw your message from…
11:55pm est
^
gains the rank of the lowest ranked card in hand as chips
doubles the chips if the lowest ranked card is part of a straight
alright so i’m gonna brainshock you
is that better
im making Incremental Mass Rewritten references
is their any mod that makes it where if you get more chips it gives you more money?
there’s uhh
a joker i made for gardenview that does that but
ehh doesn’t count really
if played hand is a straight, gain 10X of the lowest rank in played hand as chips
you could hypothetically put an example in inactive text but
dunno if it’d be too crowded
(ex. lowest rank = 2, gains +20 chips)
its good enough
anyways im probably gonna go explode tomorrow morning when i’m trying to figure out
how the HELL do i add 3 ui buttons to the left of a joker
-# redoing how pk love’s storing works
yes seraph vglm has a level button but that’s because i just
shamefully took code without knowing wtf im doing
Redid Thanos
god damn he thicc
what a funny fellow
You burned my house to the ground!!
My Family's Dead, What Do I Do?!!
the silly jimbo:
the condition for this is incredibly specific
1 in 3 chance to happen if its a boss blind, you have an odd amount of money that is over 16, and if you play a flush containing a pair
so street fighter 1 special moves in terms of working when they want to.
its quite unspecific actually 
or its not this and its just 1/50
who knows
wait
ill nerf it
blindside
and make the condition be it must have 2 jimbos adjacent to it
hiii luna
X8 mult if adjacent jokers are bolth jimbos
im making references
ooooh nice
i doubt anyone will get this but, if they do, theyll go insane probably
these vouchers are to try and [redacted]
oooh fun
I read the first one as pyro radioactive pasta
yeah... ima need that little jester..
cause I tried to draw my own card
and it was so pixelated
and grainy
Do you like make the art normal size
then export it small?
???
Chat what you think is it crazy idea rewrite mod from scratch again?
I did it once and feels like I can do better
Trying to make card art for face cards
you mean scaling images down look bad
draw at small scale
simply creating the art at the same scale as the rest of the game will ensure the consistency of looks or at least pixel size
Why were you making them at a bigger scale in the first place tho
wtf why it's on chinese
Chinese handy leaked
well I did make it small scale but it came out super grainy when I tried to fix it
I use fire alpaca
draw at the same scale the game uses not just small scale
Does it not allow you to draw at a certain scale or what
Whuh
Cause like I use this, erase everything but the suits I wanna use
but then it gets fricked over by scale
Could you maybe try to use some other tools
Like idk some kind of free pixel art software or smth
Never used it, but Piskel is a free option specifically for pixel art
you got a recommendation for the size?
Wdym recommendation for the size
nvm found it
K
I can finally mod again
A certain buddy's been helping out the mentality
AP is literally multigame stuff
i mean it doesn't hurt to add AP support
are we deadass
ah well finally
thats alot i think
oh wait the 3 things in the right look like they indicate the progress its just a legend for the colors
oh it is
havw u rolled mine yet
oh
Thinking about my stupid Not For Broadcast cavendish again
Jeremy Donaldson:
+30 Chips, +0 Mult;
Loses 3 chips on Spades scored, Gains 2 mult on Hearts scored;
When entering shop with either ((Mult - Chips) >= 10) or (Chips = 0), end of the "stage" (The way the stage is reached affects the route)
Alan fucking James:
Jeremy Donaldson is removed (even if Alan isn't bought in the shop);
Depending on the current route, XMult equals either (Jeremy's Mult * 0.1) or (2);
Next 3 Blinds, gives instructions involving Joker positions, following them affects the route
And then there's gonna be 3 final joker variants based on the route, didn't think about the effects for those yet.
Does that sound good whatsoever
Simon Fucking Cowell
banger
how do i install mods to the game
i have no life
Well done
Check smods wiki
Im on my phone rn
So i cant find it easily
now am a real clown gud?
Idk
ty
probably need to dial the art back a bit but what do you think!
That is very cool
I love it!
thx!
I dont normally get many ideas
So i love to see good ones
My recent idea is the painting legenndaries
Apart from that ive not had an origonal thought
Again, it is very cool
im playing slop again
Oh dear
please play slop with my shitty mod
I just copied the first link i saw 😭
ok
Lol
okay
Yo dude i think you got an error
Did you know tha-
ERROR
Hi rice 👋
Hai gud :3
Hey-llo
why thew fuck are there that many queues
Bro WHAT could be happening
cryptid is NOT like that even before
is it normal for the game to do this every hand?
Yes
Assuming your playing cryptid
That's very normal in the world of cryptid
You are guaranteed to see that pale screen at least once when you play cryptid
What is this for
idk
ts the gmod missing model error of balatro
Why does the sprite have a deck pattern
This is neither #⚙・modding-general or #⚙・modding-support topic, forward that to #💻・modding-dev . Also why the fuck is the sticker so small 😭
sticker is small because i defined my smods as px 115 and py 153 instead of the normal x y size
it made the art look way better
should i make shiny blinds for no reason
Yes
im making the amber midnight shiny thanoid
time for corpo speech
ah well, looks good enough
I'm sorry, what am I looking at
misprint taken to the next level
exactly!
i already did some util tarots and suits tarots
its time for the enhancement one
i can't login to github wtf
now we need 45 rotated misprint taro, then reversed and etc
im glad i come up with something untapped yet
I had this idea of having a misprint for every vanilla Joker but I'm ABSOLUTELY not doing that
misprint misprint
yeah
nxkoo kinda beat you to it
pouepfuul??????
funny if all misprinted joker have unique secrets , like baseball card: Show next uncommon joker name
Oh this is cool!
vbalatroa but asdasfogv
misprinted keyboard
the ware
soulware
interesting, steammoded and base game chance find soul is different or not 🤔
Hello people! I am really considering buying this game for my nephews, basic math and logic, strategy, nice and long learning curve, family friendly in every aspect, it has it all.
Maybe the language barrier could be a problem for them.
Since there is no hungarian translation yet, I'd like to do it, for them and also for the community aswell. I know that only around 13-14 million people speak hungarian which is like 0,2% of global population. Yet, around half of them don't speak a second language (the popular ones), which is an obstacle between them and playing Balatro. I hope there is room for more extra languages (especially GUI-wise). If I could receive a text to translate, that'd be neat.
Edit: The crowdin project (reddit told me) does not exist anymore, so I'm reaching out here to offer my help.
tl;dr requesting the file(s) or texts in english to translate
Why would smods change soul chances
Damn, there is already a hungarian translation for Balatro on Steam, but I'd like to do it on the mobile version of the game. Not sure tho if the devs are planning to add such rarely spoken language (0,2%)
Oh, I see...I'm one week late 😄 Thanks.
it is imperative #⚙・modding-general and #🎙・server-chat do not mix
if you want to mod the game on mobile then, you cant, we cant talk about it as stated in the modding rules.
Understood and sorry for bothering. Have a good day guys, I'm out.
i hate this bird (also wording is good?)
How slopful
big bird
Why is there 15 of each ranks in your hand
Do I code.... Or do I ponder.......
(mime)
Oh
I finalized the evil as shit superboss blind idea for one of my mod ideas.
Why is there 7.5 of each rank in your hand
(red seal)
Oh
SUPERBOSS BLIND Starting The Apocoylpse: The ONLY jokers you are allowed to use are The Horsemen Of The Apocalypse. 6X Base. Getting all four Horsemen Of The Apocalypse will instantly bring you to this blind. Upon defeating this blind, the jokers that disappeared upon grabbing all four Horsemen Of The Apocalypse will be returned to you and the horsemen won't appear for the rest of the run. The background theme changes to Dancing Mad's 4th movement.
i've heard there has been some drama around jen's almanac but I see several people still having the mod if one of those people who have the mod still could just send it to me that would be great (sorry in advance if this is something I am not supposed to ask for)
Scripted battles in my poker game
Epic Blind: when you take a shit, xChips by ur poo in grams
then win by doing a flush
and wash ur hands
The Horsemen Of The Apocalypse in the mod idea are ||corrupted versions of Team RWBY from the show of RWBY||
Does that affect my sigil stocks
Am I loosing money after that statement
The superboss blind is meant to basically drag you to their world for the fight of your life run.
not really it has synergy with double down
or is jen not up to date with current mods and screenshots just old
i rly need to build a framework for sigils
Most certainly
matter of fact, i wonder if i can actually switch around the atlas in the class extend
welp that is sad it was one of my favorite mods to watch and i wanted to abuse it
New technology vs old:
Old wins
i heard a mod called madness is the new big dog in town though would y'all reccomend it for big number go up
oof is it that bad?
what evgast means is that you should become ourple
No not madness I don't have a single idea of what madness even is lmao
Madness is a mod that modifies vanilla jokers to be unbalanced in a way similar to Cryptid.
As of 21.11.2025, 121 out of 150 jokers are modified.
It also adds a mechanic called Overscoring. It can be adjusted or turned off in the mod config.
Other config options include:
Raw Game Speed Multiplier
Blue Stake Rework (change Blue Stake to give -1 ...
neither do i lol i just heard it big number mod
this?
And that's what the joke was about :]
madness is funny name for unbalance mod
the only close to vanilla mod i like is paperback because of 1 singular card it is the card the scales multiplication when a suit is scored the idea of that form of scaling just feels so satisfying
Paperback is one of my mainstays of the mod hell
all in j
Joker
X823839238393829 Mult
im evil
Oh no
Hmm joker rework: +4 mult for all poker hand at next run
What
what are yalls opinions i fucking love this guy
That's more comprehensible
https://www.youtube.com/watch?v=bJ097CLnbdA&list=RDbJ097CLnbdA&start_radio=1 this is the original audio
AGEM. MEGA. EMAG. GEMA.
what (about my new nick?)
Old man ghost jumpscare
Wait exotica?
exotica
no its not exotic from cryptid i got it from somewhere else 
its from a roblox rng game im not fucking lying
Commona 
Vagabond: Death in poverty
I'm not ready for the responsibility
🤔
Well, who’d want to be jokerized?
Again, people don't even know what your mod is
Like
Show what you have or smth
The desire to add people is lowkey kinda weird too
Like I get it when it's people you talk to, or see in the chats sometimes
I've already had a self-insert in another mod
But just anyone is kinda purposeless?
i think people just wanna do that so you can have a community of people who care about your mod because their self-insert is in there
makes sense
The playbook
Then show the people what mod is first ffs
You know what, I will tomorrow
(busy today with college classes)
the self insert mod is real!!!!!
wow, I also have already had a self-insert in another mod
El gato balatro
who wanna be jokerised
These days everyone has a Joker self-insert in someone's mod
Actually that wouldn't be a self-insert would it
Okay
+9
X1 Mult when held in hand, gains X0.2 Mult if played and not scored
yea I’m competing against a fucking hydrogen bomb known as aikoyoris shenanigans tho 🗣️🔥
Layering
x1 mult for every self insert joker in modded collection
Has science gone too far

hi ali
hi i'm leshy
el gato balatro
300 is fucking ridiculous but I felt like the previous formula was ass
Can you stop swearing for one message oh my gof
yep, ee471
Now I probably should think how to unstupidify this
That’s not ee471 that’s e4e471
b

:todd_spin: :steven_spin: :todd_spin: :steven_spin: :todd_spin: :steven_spin: :todd_spin: :steven_spin:
Why is it b


i need make C, becase Clownery=c and Balatro=b
What
What
Its alphabetical order crochacho
No it’s download count
I’m on the content category
Lmao
8 hours of counting score later:
His ass is too dark and revolutionary for Balatro's shaders... Anyway
This IS dumb
Is there a mod that adds keybinds?
Handy?
how do you add custom textures/skins for balatro?
Thx
nvm i think i figured out how thanks to this https://www.youtube.com/watch?v=HM2D3KtSXOs
▼▼▼ (Click show more for important links!) ▼▼▼
◄◄ Links ►►
• Deck textures on my DeviantArt: https://www.deviantart.com/greenlinzerd/art/Custom-Balatro-Deck-1163121619
• GreenLinzerd Deck Skin download: https://github.com/GreenLinzerd/GreenLinzerdDeckSkin/archive/refs/tags/v1.1.zip
• 7-Zip download: https://www.7-zip.o...
winning
i never liked the huge snot bubble while sleeping gag but
funny idea
sad
This is in fact for broadcast
Is it? Not quite sure
the son of donald
Bist or meast
missed orb east
Hihi
It's Jeffrey. My name is Jeffrey Donnington.
polychrome bunny
me when starting ghost deck
What his name could possibly be
Polychrome Bnuuy
Olychrome cat
man im thinking

give me that x1.5 mult
i fucking love diary entry
anyone know if theres a mod to make it calculate my score faster because it took 20 minutes for my last one
Did you just sit through the entirety of it
i had it on skip all animations but the calculating took 20 min
the abort button exists
yeah ik but i want it to just calculate faster
do you know if theres a mod for that?
#1444227060527530065 is slightly faster
i once saw someone using a mod that changed the numbers and added more e but mine only has one e so it was like e200000
tysm
if tsutje ends up rolling balatro goes kino in the wheel it would be funny to have red letter media as a joker
fuck you its forever
!!!!
endless trash !!!
dont know what it would hypothetically do
balatro goes kino should add the new animal farm frfr
fnaf 2 movie
scary
lol
Morbius
nostalgia critic movie
you can't really speed up much more. The game slows down because of calculation. If you wanna keep playing that way, you can use amulet and have it be slightly quicker, or you can make builds that minimize retriggers that add calculations. It's kinda just how those mods are designed
which one
my favorite thing about Kino is people telling me to add movies to it that have been in for months ❤️
the bad one
retriggers are jank
use exponents instead
which one
how bad
threaded calculation soon (never)
i only watched kickassia i want to watch the rest
Balatro reference
well, that's my Balatro mod to-do list
||snapshot feature refers to the ability to store runs inside separate save files rather than just save.jkr, which can be loaded later on whether you lost the current run or not||
basically debugplus save states but as an actual feature for my mod
Earn $4 when you complete [task], task changes every week
👀
-# now to actually get a team of devs and artists and see if the pokermon team would be willing to lend some templates for this mod idea of mine to finally go from idea to fully realized.
what
hi aiko
@hard plank if I technically copy your style for one possible crossmod joker, that's okay or not?
i don't mind
Logo for a mod Idea project.
Attempting to make a custom legendary baseplate, any ideas?
guys i have finally finished making the monopoly cards
nice!
a static one could be cool
gray and white
Candy, cookie, chocolate (secret word: clown)
i dont like how second text look
hm
you need help?
how make japanese text look better
ill draw for you
studio pierrot
Sorry for posting the norwegian text, but my operating system is in norwegian. Does anyone know why I keep getting this when installing the new Lovely 9.0?
I think your system is flagging lovely as malicious
wacatac is the most false positive ever
lovely is a dll file which is generally considered suspicious so most antivirus software will flag it and prevent it from running, you should set whatever antivirus you use to exclude the file
yeah it look better
Aah, okay. I don't think I received the message last time, so I wanted to make sure. Could anyone confirm that they have white-listed the file on their computer?
why are your edges fucked
because emm im bad artist
i have it whitelisted myself because i was forced to use mc*fee
and
it isnt a virus
no i mean the card ege
edge
uk
the template
a wait
Yeah
bottom right
clown
will my yoda debuff jim or will jim debuff my yoda?
well

does crimson heart debuff chicot
No
funny guy to draw /j
Chicot overrides any debuffs that will be afflicted
Luchador I assume does the same when sold regardless of if it's debuffed
no?
Idk I never had a debuffed luchador
Well when you the debuffed joker on crimson heart there won't be any debuffed jokers until the next hand
is that debuff text under the joker necessary should i get rid of it
chicot cant be debuffed by heart because the debuff happens later
it can be debuffed if the debuff just happens earlier
and then ti does nothing
tru
Chicot and luchador are boss specific
(e.g. the pin from cryptid)
nvm i remember why its there


