#⚙・modding-general
1 messages · Page 542 of 1
what the fuck
i stay on both sides so i always come out on top
guys i broke my game
o.k.
large
aww yeah!
wtf!
WHY are you on black deck
tho i honestly prefer my vocaloid pack
BABA is TENOFHRTS
i clicked on whatever deck i had to test that
red deck is my goat for testing
yellow deck :
(the letters remind me of baba is you for some reason)
the letter deck
debugplus +$10:
debug plus $10:
roullette joker, spend 10 dollars to spin the roullette wheel and pick a number, if you hit the number you picked you win the round and get 36x payout
gambling!!!!
@half harness should i make the thought appear on non letter mode just to fw players
I thought we don't do multiple lines, Exa...
how we feeling?
i made it so that you can reasonably survive
I just read should i, please explain lik eim 5
i gotta edit 3 of a kind and full house
Jeremy moment
ok i have boss blind
basically wordle in balatro
writting is fine i can write an essay, but reading my god
snore mimimi
do i make it appear with no letter appearing
yes
tl;dr joker with pages
wtf!
whats cryptid's mod id
i believe just cry
thanks
id = cryptid, prefix = cry
balatro when they cryptid
cry
i see
cry
cry
😭
donate me some bigger atlas
i could go for 10
Innit?
i am adding women to balatro
astral...
pack
yes...?
i need to reclaim my throne as THE gacha mod soon
i think with what i learnt from yggdrasil i can make actual banner ui now
i only added gacha deck to shoehorn another ba reference
my mod isn't even completely focused on it
no the whole point of bsr is to fk up your econ by making you pay money for 5 trash jokers
guys help
trash jokers?
gacha, jokers with description pages, equipment slots and stats
guys is this a reference to cryptposting
are you British
the ever-reliable luajit2:
so basically i had to redowload the game and delete mods and it would let me play but from beginning and now everytime i use mods it crashes
I need more british words
we have astrapboy theastra astral what's next
we are NOT requiring luajit2
bit rude innit
oh hell no get me out of this parallel universe
how do you add a card on the main menu btw
My joke was that you do it often
its not that hard to make people get another dll
lovely already exists
this has to be a joke, people can't even install normal mods correctly 😭
Solution: delete Talisman
uhh i have code for it in main.lua of cryptposting
the joke is that i don't know
i might be evil
so let them have their problem
Astroboy
of not being able to read
then why say this 😭
#⚙・modding-general message
Astronomer
thats for normal people
sigh
im adding talisman crash next update
imagine using SMODS.Gradient smh couldnt be me
actually technically my mod already doesn't play well with talisman skipping animations as of latest stable version
aka the build from a month ago
handy has animation skipping now
development resumes tomorrow
@mint spindle hows the sheldon joker
where are you at in the game rn (put it in spoiler)
here's my code for the joker i was mentioning; i give up there's so much wrong happening
-- god help us all
local function get_numeric(val)
if type(val) == "number" then
return val
elseif type(val) == "table" then
if val.value then
return tonumber(val.value) or math.huge
elseif val.toNumber then
return val:toNumber()
elseif val[1] then
return tonumber(val[1]) or math.huge
end
return math.huge
else
return 0
end
end -- yeah idk why i made this
SMODS.Joker {
key = "love_is_not_in_the_air",
config = { extra = { dollars = 25 } },
rarity = 2,
atlas = "crp_placeholders",
pos = { x = 3, y = 0 },
cost = 6,
blueprint_compat = true,
demicolon_compat = true,
loc_vars = function(self, info_queue, card)
return { vars = { card.ability.extra.dollars } }
end,
calculate = function(self, card, context)
if (context.after) or context.forcetrigger then
local chips = get_numeric(G.GAME.chips)
local blind = get_numeric(G.GAME.blind.chips)
print("chips:", chips, "blind:", blind)
if chips > blind then
ease_dollars(card.ability.extra.dollars)
return {
message = "$" .. card.ability.extra.dollars,
colour = G.C.MONEY,
}
end
end
if context.joker_main then
local chips = get_numeric(G.GAME.chips)
local blind = get_numeric(G.GAME.blind.chips)
if blind >= chips then
return {
message = "WRONG!", -- WRONG
mult_mod = math.huge, -- fake infinity
colour = G.C.DARK_EDITION, -- this doesn't work idk why
}
end
end
end,
}
great timing
||No hitting Roaring Knight with no mantle||
preaaach
thank you glitchkat
hmmmm
i mean it doesn't work 😭
what to do with these 5.1k jokers
fuck
A Br*tish person gave me permission to do this
this is just my attempt for somebody smarter to build off of
play the videogame?
...do you have to censor british 😭
goddamn don't throw slurs around like that
why doesnt it work tho
yeah man
i got something better than those 5,1k jokers
it keeps saying that everything is equal to inf
holy peak
what if rivals of aether was good...
U*nited K*ngdom
im pretty sure you have to calculate the current chip count at that point
G.GAME.chips only updates during an event
yeah i'm not even trying
so you'll have to check for hand_chips*mult
is there even a way to just get the current chips/mult
“mult”
hand_chips and mult respectively
i would also say do -math.huge but since omeganum infinity is always infinitely small it doesn't really matter
right
the world's about to end
1 more
im going to ask smthcom about this
How many of those are the same name of consumable added by different mods?
i'm trying to code it rn
bet it zodiacs
how many reverse tarot mods are there
sure
depends on if you're talking about mods that add solely reverse tarots or mods that have reverse tarots in them as a feature
js tell me how bad it is doc 🥀
SMODS.Joker {
key = "love_is_not_in_the_air",
config = { extra = { dollars = 25 } },
rarity = 2,
atlas = "crp_placeholders",
pos = { x = 3, y = 0 },
cost = 6,
blueprint_compat = true,
demicolon_compat = true,
loc_vars = function(self, info_queue, card)
return { vars = { card.ability.extra.dollars } }
end,
calculate = function(self, card, context)
if (context.joker_main) or context.forcetrigger then
local hand = G.GAME.current_round.current_hand
local hand_score = get_numeric(hand.chips) * get_numeric(hand.mult)
local blind = get_numeric(G.GAME.blind.chips)
print("hand_score:", hand_score, "blind:", blind)
if hand_score >= blind then
ease_dollars(card.ability.extra.dollars)
return {
message = "$" .. card.ability.extra.dollars,
colour = G.C.MONEY,
}
else
G.GAME.chips = math.huge
return {
message = "WRONG!",
mult_mod = 0,
colour = G.C.DARK_EDITION,
}
end
end
end,
}
ref do something
the fools
REF DO SOMETHING
this works now?
would you guys use this
I also have one:
sutpid
hmmmmm
where can I get this
im not a good pixel artist tbh
i should commission one someday
maybe setting it to false infinity was a bit of a hassle
yeah sure
You can't, it's unreleased.
0.9 can't hurt
:(
the urge to just reply to this with "idiot"
right, reducing it to 0.8 then
:(
alright then
It will be released in 3.0.0
balatro v3.0.0??
:)
ok im just gonna say this why is there an entire check for big numbers manually here
lose the run
Seals on everything 3.0.0
and your profile is wiped
be a normal person and just wrap that shit under to_big
ref do something
if its already big it should just return it as is lmao
because i don't think talisman is required for their mod
i will have an effect with a downside that can wipe off your profile
yeah nah
scrap the false inf
then make a dummy function 😭
attempt to compare number with table:
im setting it to 0
to_big = function(a) return a end or to_big

coding false infinite is tedious
to_big = to_big or function(a) return a end
-naneinf
wrong order
iterally just math.huge
idek anymore 😭
it didnt work tho
can you make it so like it sets your score to 0
yes it does
i don't know
You now pay with pounds
how splendid
probably but it'll be harder
if Talisman then love.event.quit() end
so true n
local crash = nil
crash.nonexistent = true
NO
That won't work with crash preventing mods.
im adding this to my mod
how do i make it always crash
error("error") or assert(false) or if {} > {} then end
(it's for a consumable effect dw about my intentions)
error("ERROR",100)
just this?
ok then
Thanks to Justin Willman for showing me this stupid trick.
aha
malware in the work
kill_me.sure = true
hey wait i did this too
or at least
i tried
(asked the community for if i should have this as a thing in a consumable and most have said no)
how do you make items appear in a shop
yeah we already have //CRASH
Rarities or consumable types?
make a mod misew
this one for the cryptid addoner
astral, this is crazy 😭
thank god for the censor
@round pilot
just a joker
Gregor Samsa?
you guys know DougDoug
It’s always Tokyo
yes
yes
KYOTO
Al generated video
bald
mugmug consimable
Queen Elizabeth of hearts
Why are you talking about yourself
KYOTO AT ALL COSTS
i am NOT bald
Douglas Douglas gain XMult for every://seed used
"i am NOT a moron" ahh message 😭
That’s what bald Nxkoo would say
and it has lcorp crossmod specifically you're bald
yall bald as hell
Then it should show up in the shop if you give it a vanilla rarity.
crossmod with me
Recently someone tried to pull the “I have 200 PhDs against Neuro”
i remember autumn (a youtuber) saying you're bald is a northernlion reference 😭
not a mood no
Say that but like that scene from Inside Out
how tough of him!
Hell yeah, I love crediting artists
nahhh wtf
arting it 🔥
Ortalab
unironically this would be a lot better than my current implementation of deleting the current run's save file
idrk how to make this work though
it would just be setting G.SAVED_GAME to nil then, I think
Do you want a tooltip for Credits
😭
Probably not necessary for each Joker,
love myself some placeholder art
But one in the mod settings would be good
How placeholder
Ah I mostly have it per Joker
eh? is he (me) stupid?
-- function to delete all save files
local function delete_save_file_for_focused_profile()
if G and G.focused_profile then
G.SAVED_GAME = nil
end
end
time to play rival of aether
The latest art was this Sunboy
part in consumable that causes the deletion
G.E_MANAGER:add_event(Event({
trigger = 'after',
delay = 1.5,
func = function()
-- delete all save files before crashing
delete_save_file_for_focused_profile()
-- this will cause a crash
get_crashed_noob_lol("get_crashed_noob_lol")
return true
end
}))
return true
well
i should go to bed
it's 4:41 am and i haven't slept
sob
hell yeah
COMIN' IN HOT
i love messing with soul pos
is yggdrasil getting better with each update
It kinda sounds like Tusk(but already taken)/Echoes or maybe also Lucy Steel with all the Holy Corpse parts
Something of staged evolution or “additive” kind of concept
Maybe Naruto?
I am still trying to pool some thoughts in
wait shiiiii lovely 0.8.0 is out?
Spider Bud now only triggers once per round, and reworked to use hand size
I love you
i think spider bud is the only problematic one
Brick be upon ya
im taking that
what do you mean myst is working on lobcorp
FUCK
someone already made the joke
Well guess what, I'm working on my sprites
Today's a crazy day
i should probably have ATLEAST 1 Jimbo
i am having fun
is that super mario
Would it hurt
Yoo rivals
-# would it hurt tho?
what does this do
Your mother
also may I use this as a reaction image
@harsh glacierUnbelievable
France calling me a quitter 😔
that is EVIL
that's literally just the needle with no upside
(or the needle with reverse it's upside even)
chicken
buffing stone cards
.........how
yet to be planned
im so lazy rn help
this is peak
Showman hat
And turn the hand into a Four Fingers reference
And yeah just give him the joker make-up 
shit i might be bad at this
What about editing the jacket
Just something to make the joker more balala
the amount of placeholder art in here will make all of my mod's artists cry (including me) :3
helloooo
hi
later, i got classes rn
yes
wtf!
when
Idk
WHy does all your stuff have the negative tooltip?
i can explain
negative aura
jk, its from perkeo template, i havent changed the calculation yet
im brainstorming for one
Redid the dynamic button api I made, now supports actually aligning to different sides instead of JUST the right side (and also doesn't take up an entire CARDS WORTH OF SPACE to the right
)
whats the forth game
job
when the sell button is the same size as the joker
What the helli
Quality of life changes
Do you use smods or lua directly?
gah damnnnnn
Wee Wee Joker
💀
Would it hurt
Would it hurt
I’m asking 😭
I mean I could do the math but I don't think It's what you're wanting
Holy shit feintha been typing forever
sorry
tiny ant + big speed = big knockback.
(I’m afraid it’ll take me forever to read)
Does anyone know what happened?
Would it hurt
it would send you flying
button class (using custom lua-oop)
| -> button array
| -> smods.draw_step (to create and manage the buttons, nothing else)
| -> create button wrapper (individual uibox per-button)
| -> parent to card
| -> button-hook using ref_table
| -> call button-class-object:process()
|
[-> button class object -> can_display()
| [-> false -> remove button
| [-> true -> check if button doesn't exist, if it doesn't, create it
I dont think thats how life works
so depending on what wall you smash into at ??? mph, yes.
WAIT
if an ant (normal size) hits you at a high velocity, you would feel it
most simple form of how i did it
So you use smods
pain is a VERY annoying version of feeling but it's still feeling
Would it hurt
I could just hook into the update() function too but thats the only smods part
THINK MARK THINK, WOULD THE ANT HURT.
Mhm understood
Are you sure ?
I'm gonna add the ant joker that launches an ant towards your house at 3000MPH
Uhhhhhhhhh
It would hurt chat
!!!!
anyways, mrow
furry amogus moment
Development resumes TODAY
Procrastination tomorrow, just like Deltarune ‼️
Development resumes TODAY for ONE of the THREE MODS i am WORKING on
FUCK the OTHER TWO
dont look up Sinhala script on wikipedia
does anyone know where to get the smod alpha version
I love amogus
cos when i try going to the github i cant find them
As a concept, not as a game
or it says 404
ඞ
Has anyone made a Saiki K joker before
that's the guy with the pink hair and balls right?
Yeah
never heard of him
What do you usually use to edit and do jokers and cards designs?
Aseprite
Aseprite
will look into it tyty
ITS PAYED
@gray cove is this what the stories talk about ?
nuh uh
you can use the free version
just get it from the github
If you can compile it
can someone help me find the steamodded old calc that works for cryptid
Hey, just asking. How do people mod mobile balatro? Saw someone on youtube playing the Cryptid mod on a phone
Libresprite
If they're modding balatro they can figure out how to compile aseprite.
Bro uust download the latest version of cryptid from releases and steamodded from the code
(Not really )
I am NEVER using aseprite!
The hellyon
What the hellyonte
Celeste joker real
With the helly on
I actually havent done joker art in a very hot minute
is the required steamodded version there cos i saw some ppl tweakinig abt it on reddit
what the hellyhell

What the helly berry
Download smods from the green code button and not releases
And download cryptid from releases and not the code button and it will work
thank boss
free shawarma when i see u
oh no
Can anyone tell me what failed here?
bored
Were you in a run?
Yep
Happens whenever I hover over true planets
(Cards like The Universe in its Fucking Entirety)
On the jokers that have 2 parts in their design (like the legendary vanilla jokers) how do you apply the SMODS.Atlas?
You do soul_pos = number?
im doing it like this
@tacit crescent Got any fixes?
The path is just the path from the 1x and 2x folder.
Oh okay
m
No clue yet but issues with 3 mods(Cryptid then Entropy then Aikoyori’s Shenanigans)
Did you update all three of them recently?
does anyone know how to install the balatro mods?
im following the tutorial but stuck at the part where you make the folder because it gives me an error when I press windows and R to input %AppData%Balatro/
you can try to turn off hiding folders and find it yourself
so like look through for the exact files?
i need a deltarune chapter 1-4 texture pack on god-
Starwalker is space joker 100%
we can only mod steam version of balatro currently
either that or a rare
good idea
I'm surprisingly decent at pixel art for someone who likes cutting corners sometimes and used to barely do pixel art
I wanna play that so bad but I don't have my PC yet
what's with this
:D!!!
why rec tangle. ..
Oversight
clam
bruh!!!!
rouxls kard is that you
How excactly do i start making my own mod
well i cant get the mods section to pop up in baltro
I put steam modded and injector into the mod file
i'm the original Star joker
I love this part
I barely even did anything too
This Joker is Pissing me off...
I just did a fill with 1 Pixel expansion
It is indeed complicated
Damn
Gains .05 XMult when Planet Card used - increases by .05 when Blind is Skipped
This Blind is Pissing me off
Since Star Walker is a placeholder character, I think you can get away with making the art simple as Fuck
Nah IDC he's my baba
he's so awesome
it's not gonna crash, right, infinite tag engine
Eventually I just get a vertical line on the right
Does anyone know why mods tab in baltro isn't showing for me, I put the steam modded and injector into the mod folder and still isn't working
Ohhh let me try that
and make sure you put your mods in the Balatro folder in the C:/.../AppData/Roaming/Balatro directory, not your steam installation folder
Well that's the only way to access it is through steam folder
I've looked everywhere
This is where my mods folder is
I'm walking around in a Walmart rn
again, put it inside your AppData folder
Aiko's, but not the rest
Just finnished making my first modded joker 
yes
I had to type that out to find it 😭
For some reason is wouldn't pop up till I typed it
windows file explorer hide AppData (and some other folders) by default unless you have the option to show hidden items
I don't think it's getting any denser
you gotta copy negative tag
it's not even double tag, it's just whatever tags pity prize generated
Ohh okay thanks for the help and just double checking, keep version.dll into steam folder for baltro right?
gros michel on steroids
Horrifying joker 💀
Imma make a savestate and just see what kind of deck I can build off of just tags alone
Is there a mod that just increases the rate of negatives, or a way to change the game files myself?
YES GUYS I FINALLY INSTALLED MODSS
i cant find crypted and it seems fun
It's on github, not on nexus
Just google "cryptid balatro" and look for git page
Does anyone have a mod to reccomend
Pokemon is awesome, Cryptid if you want to have a broken build
Is pokemon one on here
yooo I can see the shop!
Thank you
still don't know how exactly hook works tho
It's on nexus
When a hooked joker triggers, the joker it is connected to is forcetriggered.
Nexusmods is a website for mods, go to balatro, and it will be the top one
oh okay
:3
it has uhh crafting from minecraft, cool skill trees (i think)
alright i wrote down all the mods yall reccmended me im gonna try them one by one
thanks, if theres any suggestion/feedback for any mod you have then feel free to send them in the respective mod's thread :p
What did you do 
Did you have Energia or Cucumber?
just the infinite tag engine
Where Pickpocket
if you ever find the tags laggy then dont forget to download #1365907030413414431
wtf
aikoyori
Banana joker only run
shilling again... smh
how do you flip a double-sided joker
Meow meow!
ah, nvm, jokerdisplay was covering it
Hey, are there any mods/ways to limit what jokers can appear in any given game without editing profile files or something janky like that?
@stark shale How much RAM do you have? I just added 8GB to my Steam Deck (through a method that makes it a bit slower), and I'm trying to see if that'll make a difference and make it work.
Banner mod
Lovely, ty!
Yw! Really comes in handy when making your own jokers.
I’m actually in the middle of trying to make a bot to play the game and too lazy to write out every single bit of joker logic for a PoC
Ah
why does this work man 💔
horse balatro beer
horse balatro beer

my real name is mr liquor
It just works
the original horsewalker
E
Idiot there's no Doctor
💀
E. A.
I’m a doctor
Pay 2,99$ to continue this conversation
why does cryptid have to conflict with saturn
i officially turn 16 today 🥶🥶🥶
happy birthday
CONGRATULATIONS YOU ARE ONE YEAR CLOSER TO YOUR DEATH
Also happy birthday 🎉 have some cake 🍰
you are slowly aging while reading this message
Wtf is this
fp
now i can pick to put myself on the end or on the floor
frankly it's probably more respectful to be on the floor
but no
someone else can be eeping on the floor
Probably me
Can i be that person
Chat we should make a community art like those
what if atlas from portal 2 was sleeping on the floor
bocchi
Like those
I may be missing something quite obvious, but I can't find what you mean?
https://github.com/AkitaAttribute/ReplaceJokers
I have found this but I don't know if that's what you intended?
Balatro Mod to replace/remove jokers for custom runs. - AkitaAttribute/ReplaceJokers
Chat is sza a real artist?
why would that not show up... search engines are useless. thanks!
shes a figment of our imagination
Send your pfp
I need it for my horse collection
...
How do I fix this? I have 205 mods.
Can the lovely injector be used without the game files being attached to the steam client?
No, I think it is just google specifically.
this is literally the discord server for balatro can't you just search in #1209506514763522108
this is a good point and something that didnt cross my mind
As it turns out, yes
(On windows)
98% of balatro players can't think
If the game shuts down after running for a bit, does that mean it ran out of memory?
I don't think the better tag mod is helping much
wait cat tag stacking is real???
been staring at code for too many hours 😔
Can you play cryptid on steam deck? I’ve been playing it on pc and wanted to try it out on steam deck
i think i lost it
Yes.
god damn it playing with the yahi mod is hard (sometimes)
so abort just unplay your hand right?
I have made a critical mistake
Abort stops it from scoring but it keeps the score
It doesn't undo the scoring
I'm pretty sure
Hear me out: Ortalabs your Yahimice?
dr whatsapp? Nah Nurse Zoom Call
It's a reference
hmmmm. sell value jokers
nice
Just getting started using mods with Balatro on mac (apple silicon); saw this in the Lovely docs You cannot run your game through Steam on Mac due to a bug within the Steam client.
Are there any more details about this? Searching around I can't find anything similar online, but also the usual process of setting launch options in Steam isn't really doing anything so 🤷♂️?
The fix is opening the run_lovely_macos.sh directly.
yea, i'm able to run it via the runner, just was curious if there was any documentation about the steam bug itself since I didn't see anything online about the bug (and would like to follow it in hopes of it eventually being fixed/etc; i'd like to keep my hours played/etc up to date)
fair enough, lol
you could ask here https://discord.gg/5BgE2nWB
You could probably use a third party launcher for the hours played thing.
Everytime I change a card in my deck, and I try and preview my deck I get this crash
I already turned off all my mods and the crash still happens, I have been using these mods for days without issue. I feel like it has something to do with steammoded or lovely but idk
@ashen tide
0.8.0 running ok?
yup!
i'm seeing these [##] for color in more fluff? but other than that everything's running great 🙂
that's the progress bar
ohhh
Can i join
i thought it was a template or something that wasn't replacing correctly, lol
I thought that too looking at it
do we have space
new to the mods, lol. was waiting till i got c++ before i dipped into them
hello i come before you to kindly ask whether does anyone have the invite link to the infamous critically acclaimed balatro multiplayer mod
🙁
what site
That one girl looks like lain
Fuck
FUCK
Couple enhancement and joker ideas I’ve had while at work.
How would I get the current value of the UI's chips and mult?
I installed cryptid and it loaded fine, then I disabled Ortalab and now when I load the game it just closes itself after reaching the title screen? Anyone have any idea what happened?
what mods are useful in balatro
Hehe I had a silly idea
Edison’s Successor:
Retrigger all Jokers. 1/4 chance to get struck by lightning (get destroyed).
Handy is one of my favorites :)
Brainstorm is pretty good
what they do
vro
for what
is
that mod vro
like i need mod to keep the game vanilla
i dont want to put weirds things
Balanced 👍
It stacks jokers and playing cards that are the same.
woo all [deaths]
lol, somehow I got a cryptid run so janky that if I have cryptid in my mod folder the game crashes on the title screen
I’m having the same problem but I didn’t even do a run with it
does anyone know what functions/misc_functions.lua:2131: attempt to get length of field 'ranks' (a nil value) is
This is what i get for trying to mod on mobile
Starting to give up, did everything i could
which one do yall prefer
Right one
are you sure
Now that you say that
The one on da rifht
Still right tbh
rghyt
Why left got the McDonald's pallette
he's got a hardhat on
is it modding on mobile
the right
????????

how's that software that lets you export pngs from jokers called
7zip? Or sumn else?
For something incomprehensible
no it's a thing that lets you get specific jokers from atlases
Heres what i got btw may be of help
This is all that's printing to the thing now:
Left, more balala, the better
why does forge crash balala
yooo someone can tell me mods that keep the game vanilla but includes like data, and like that
I want flans mod
...bruh
JokerDisplay?
do I need to update java
ehem #📜・rules message
That was to myself, the bruh
Was it this: https://github.com/Mysthaps/CardExporter ?
What did i do
Anyone help me out, I really wanna have some mix up in the music but keeping the same vibe. Anyone got that modded in?
Is mobile modding so unspeakable it breaks the law
that leads me to site not found
Wow ok
DuckDuckGo. Privacy, Simplified.
thanks
Ill go hide in my corner
this Ethan guy seems sus
Ethan
idk gives off bad vibes
what is that vro
yo that's sick
hiiiiiiii
hello!
hello
what you doing chat?
trying to install lovely
modding
new update?
(waiting for my bus)
oh, what is the mod?
When will lovely 2 come out? 
guess what i was doing when i have balatro open for 7 hours
playing balatro
aikoyori
💤
😭?
I forgot what jjookkeerr did (wide joker(
I'm gonna go look
jjookkeerr add + or × mult for every joker with the word joker in his name
guys my balatro keeps crashing 🥀
Log?
I can't find it
ok wel i think that's the limit yeag
ill get it to crash again cs that was yesterday 🗣️
I'm gonna make it 3 OR MORE cards
if only he did something 😔
Poggers
new challenge where if you play anything below or above 3 cards you DIE
🤏 🎻
i am so cooked
Small violin ?
writing that down lmao
All face cards act as the same rank
:3
sounds fun as hell
Same
Start with a negative eternal wide joker too
yea he don't do anything tho
Oof, is that hard to code?
play or score? with only play cards sounds easy
Yes, very much so.
5 of a kind
y'know what
three of a kind only, start with 4 discards
adding bocchi joker
flush five with my 2 kings 2 queens and a jack lmao
Does that mean you can’t make straights ?
what I'm making rn:
ngl that will be fun
Hides in a box at the start of the round
Omniman?
mango box
Are you sure ?
Cryptid has a joker that makes all face cards count as kings and all numbereds count as tens
Are you sure ?
maximizing or something like that
I haven't done it before though
Yes
looking at how the smeared joker works
my game keeps crashing when i summon a specific link monster in the joy yugioh mod. its been multiplae updates already so i dont think its the monster
Contribute to survovoaneend/All-In-Jest development by creating an account on GitHub.
Its only joker effect wise though
hmph! all in jest
I see