#⚙・modding-general
1 messages · Page 1343 of 1
yeaah exactly, you got some parts covered by Glue, your own mod so atleast you get that out of your way and start focusing on the other stuff
goodluck with that tho
curious to ask about this, can you use custom images into a shader?
as in like import images into the shader
It's the kind of stuff I wanna make sure is there for 1.0 to make the mod feel more polished. Ideally I want it to feel like a full expansion, rather than a mod that's injected, haha
Also gonna have to force myself to mess more with the particle system and the shader code so I can set up custom animations for abduction & spellcasting
like a shader uses a different image as part of the shader
That should be possible for sure, though I don't know how to go about that
https://discord.com/channels/1116389027176787968/1356845095579549858 has pre-installed mod inside of the mod
that changes the background shader into a static image
goodluck figuring out how it works
i ripped hair like its a velcro trying to understand it
your first error is trying to learn shader
legend has it, the people who learns it never became sane again
It should all be doable. I've done a bunch of shader stuff in unity, at least
Final step in polish is figuring out if I'm gonna make custom music in any way, haha. Might save that for a later update in case I enjoy it
i mean, theres a couple of musician in here that could help you
although learning it by yourself sounds fun
I'm in the train right now to practice with my band, so I'd like to think I'm a bit of a musician myself but I haven't used a digital composing tool in ages, hahaha. But it mainly seems like a fun thing to try and get back into production again
I did already have Ren make a super fun Halloween version of the base music that plays on the Halloween Decks, so if I truly wanted I'd just bother her more until I had a full album, hahaha
you're a little bit of everything huh
the ice of all trades
It's called ADHD, yeah
Master of none
Originally had an idea to have an in-run way to raise the difficulty so you could unlock the true ending of the mod. Think I'm gonna replace that with Silver Stake (because of the silver screen. I'm so funny) that just makes the boss blinds a bit harder, which will give you a credits sequence after you beat ante 8 on it
your mod is probably the first ever mod to have an ending
excluding PWX since finding Godsmarble doesnt really count as "True Ending"
the show are still going after that
Anything to show people that I don't care about endless, hahaha
endless entropy

@plush hound whats ur pronouns (for my mod)
any
imossible
cool
fair enough
what
My pronouns are any/none. I have let go of all earthly possessions and reached nirvana
actually dead?
endless isnt real
true..
i should try putting Hot Potato and Collage in the same folder
see if it works
probably Kino for good measure of contents
key?
i cant believe he'd do that he couldve gotten a legendary with that
it_is_forbidden_to_dog
he'd kill a person if he gets Chicot
Collage is such a cool effort! I love the work put into making it more cohesive
Also love that you're trying hard to undo it by stuffing more mods in, hahaha
i should forbid jokers to exist
the only limits are the sky
- Batman
but yeah Collage is pretty cool
hi ice
i don't know if i could suggest that modpack to the first timers tho, theres alot to unpack
Hey hey autumn
hello aut
I don’t get it
thats the key
I reckon any modpack is kinda a bad experience for your first time modding. Unless you want to be overwhelmed
God, I’m trying to make Astro spawn by requiring you to beat the goad with only spades
modded balatro
help
one of my 78 mods is preventing me from advancing antes (goated) (forever in limbo)
fair..
You don't want to check the card for being a spade without checking if the blind is the correct one. That's just a lot of unnecessary calculations
is there a way to import custom images into the shader?
I can’t believe i have to ask for a snippet again.
did I miss something?
I’m supposed to be knowledgeable in this but apparently I’m not.
Ok well, how would you write it ice?
I'm on my phone in the train rn so I can't check the proper contexts, sadly, but you'd wanna check for the blind first. There's no reason to check for the card's suit om every hand played in the entire run, after all
Also, you'll want to check for cardarea, because this will check every card in your hand including at the end of the round
or you can do context.main_eval
None, all consumables go by c
thats what i mean
Main_eval filters out Retriggers, no, not cards in hand?
c_modprefix_blah
main_eval is for everything
@frigid mica send code so i can copy paste
this
SMODS.current_mod.calculate = function (self, context)
local onlyspades = true
if context.end_of_round and G.GAME.blind.boss and context.main_eval and G.GAME.blind.config.blind.key == "bl_goad" then
if context.individual and context.cardarea and not context.other_card:is_suit("Spades") then
onlyspades = false
print("loser")
if not onlyspades == false then
SMODS.add_card{ key = "j_busterb_astro", edition = 'e_negative', stickers = {'eternal'}, force_stickers = true }
print("winner")
end
end
end
end```
You don't want to check end_of_round first, because that means you're not actually checking the cards that are scored during the blind
"beat the goad with only spades"
Yeah, you have multiple hands to do that, no?
SMODS.current_mod.calculate = function (self, context)
if context.end_of_round and G.GAME.blind.boss and context.main_eval and G.GAME.blind.config.blind.key == "bl_goad" then
local onlyspades = true
for _, other_card in pairs(G.hand.cards) do
if not other_card:is_suit("Spades") then
onlyspades = false
return
end
end
if onlyspades then return end
SMODS.add_card{ key = "j_busterb_astro", edition = 'e_negative', stickers = {'eternal'}, force_stickers = true }
print("winner")
end
end```
this is for if everythin at the end is spades the go on
so wrong
let me code stuff
do i have to wait or is this the complete one
no do wait
i gotta code a fair amount
SMODS.current_mod.calculate = function (self, context)
if context.setting_blind and G.GAME.blind.boss and G.GAME.blind.config.blind.key == "bl_goad" then
G.GAME.blind.boss.onlyspades = true -- set the initial value
end
if context.individual and context.cardarea == G.play and G.GAME.blind.boss and not --[[Important this is not]] context.other_card:is_suit("Spades") then
-- beeg line ^^
G.GAME.blind.boss.onlyspades = false -- ohhh noooo, the guy played a card that wasnt spade whilst being in a boss
end
if context.end_of_round and G.GAME.blind.boss and context.main_eval and G.GAME.blind.boss.onlyspades then -- Dont need to check for goad, since its only ever true if goad is the boss
-- give astro
SMODS.add_card{ key = "j_busterb_astro", edition = 'e_negative', stickers = {'eternal'}, force_stickers = true }
print("winner")
end
end
hopefully @frigid mica
looks awful on discord
long if statements tho
ig u could make them multi-line, but i hate multi line if statements
heres how the thing goes
go into blind > set value true
play a card > check if its not a spade > make value false
end blind > check if the value is true > give astro
warning this was made whilst it is 1:34am for me
G.GAME yea
i thought you were gonna make a local value, not make it a G.GAME obj
G.GAME.blind.boss object
it saves too
important that it cant be cheesed by reloading game
oh yeah i'm wondering
MY FUCKING TEA, I FORGOT TO DRINK IT
NOOOOOOOO
Mmmmmmmmmmmm cold tea...
okay gn ft im going to sleep
ok i'm reloading
the game not the run
byeeeeeeee
crash
i can't ask paradox for help, i can't ask jamirror for help, i can't ask ice for help, i can't ask something for help, i can't ask ali for help...
WHAT THE FUCK IS WRONG WITH YOU
I HATE YOU SO MUCH
FUCKING SPAWN CONDITION
G.GAME.blind.boss is true/false depending on if the blind is a boss or not
so whatever youre trying to do youll have to do differently
beat the goad using only spades
and what is the check youre using
this one

gosh looking at the others, they seem tough to implement ;u;
store the onlyspades in G.GAME.blind.effect instead
i can deffo do Mad Salesman
Counterfeit, i'd need to look into Joker retriggers and how they work

Monochrome is doable
Alternate has the same effect as a Joker from Bakery, except when sold and not when purchased, so it might be fine
Airhead is fine
okay so i guess Balatrue is the outlier ;u;
oh that one was another toughie
Oh
Ok
i've never made an ability copy joker 😭
o
Whar
Do you need to store the value in blind?
Oh my discord updated
MB didn't see it was solved
I should probably work on one of my most powerful legendary jokers: Saitama - Prevents Fantasy from Destroying Jokers.
My own version of Saint.
yo any1 have a good mod recommendation to play
Phanta 😇
this?
also Aikoyori's Shenanigans and Paperback and MmmmmJokers
yesyes :3
unsure why the banner's not there, hmm
should work fine
i think my mod manager is js kinda broken
ah ^^
do i play w all of them at once?
you can do! they shouuuld all work together
lmk if it crashes though
and send the log
also MmmmmJokers might not be on the mod manager index
yay ^U^
looks fun
i'm glad 
damn thats a lotta decks and new jokers lols
hehehehe :> 10 months of development does that to a mod
oh ya so, the whole thing with the Hanafudas is the packs are rare, and each normal sized pack has a Tarot-strength card, a better than Tarot-strength card, and a Spectral-strength card
since some Hanafudas are more powerful than others, in the games played with Hanafuda cards
Chat is this anything
lol i js lost w like 4 chips left
i need 4 more chips
was too focused on money oops
noooooooo ;u;
I think me from 6 months ago was making it loon like a 6
Because of oops all sixes
oooooooooooh i see
Since my old mod was just about rng stuff
ghost cards better than glass cards 😮
<@&1133519078540185692>
is zodiac cards just like joker cards but in consumable slots?
yepyep ^^
I like the idea. Kills the whole photograph and chad synergy
It'd work more with stuff like canio and other things that rely on playing card destruction
high card with one card,,,?
First scored card which means it'd destroy the high card
way better than whateve this is
It can be junk and it'd still destroy the first scored card
something something refridgerator
I havent figured out how to get the bossblinds to change the background colors, it crashed one time when i tried to make the bossblinds into a malverk pack
thinking of going old school and just manually replace the game.lua with the hex codes i need
when i can get back on my puter, i'll be making the ralsei joker i promised for starspace
can u make a joker for me too /j
have you heard of lovely patching
dont thunk so
shiitt you got that fr33xp.xen pvz...
that looks like Replanted actually
lovely patching directly edits the game's code for better compatability
you can just find the parts in game.lua that uses those hex codes and patch your custom ones in
what happens when the discount hits 100%
GMO plants
do you just get everything for free
It ticks to negative and everything is 5% more expensive
help
my GMO plants are too far gone
plants versus zombie
cornwall
those pvz fusion shorts
i think you mightve mutated them a bit too much
like idk just a guess
which balatro mod is this
who the fuck is sharing my video on messenger and whatsapp
hey undyne how many suits are there
if I may ask if you are actually modding plants vs zombies?
i can’t explain it but this has homestuck in it somewhere
nahhhhhhhhhhhh
wait, is this done in balatro?
is it because of the deck cover
no it just feels very homestuck
cause I was about to like, also share a non-balatro related mod to showcase but eh.
can someone tell me why this is happening(new run)
i added fantom's preview,balajeweled,malverk,and then since it was crashing uninstalled those mods,its still crashing.
do both crashes originate from the same error
i didnt take an SS originally
but before it wasnt even letting the game start
if they do not, send another screenshot
Fantom's Preview should be the cause for the nil field T
I don't think it can handle scoring parameter API
add these to simul
how beautiful
Hello all! I am currently using BMM and it's been a while since I've played the game, but, recently, I tried launching the game and it wouldn't make it past the black loading screen. After some trouble shooting, it seems that if Steammodded is enabled, my game does not turn on. Turning it off fixes the issue, but then of course, most of my other mods don't work lol, any ideas as to what could be going on? This is what's given on the output menu.
mrrrp
Hey, what platform and balatro version are you using?
Every time i click on start on multiplayer my game crashes. Anyone know why?
I was only able to play one round now it just crashes each time i click the start button
😀
windows 11 and the latest version of Balatro
1.0.1f or whatever it is
Launching through steam?
no, through BMM itself
Try verifying you game files through steam
latest version of balatro is 1.0.1o so you might need to update
its the 1.0.1o-FULL, yes
haiiiiiii!!
I'm having trouble installing Steammodded and I know I have definitely done it successfully before.
steamapps/common/Balatro/version.dll is 3.4MB from 7 Jun 2025
When launching the game with WINEDLLOVERRIDES on, and that DLL in place, no window ever appears
Hello, I'm having trouble installing mod loaders. Can anyone help me?
my ~/.steam/steam/steamapps/compatdata/2379780/pfx/drive_c/users/steamuser/Application Data/Balatro looks like this:
do i need to get rid of config?
nobody can help you because you havent said anything about the problem
Suspicious amount of new people trying modding for first time
What kind of video came out?
Hm, wasn't from a video I was just "let's boot this up again" maybe because desert bus
okay changing config/Steamodded.jkr to config/Steamodded.jkr.bak didn't help
stdout/stderr of the balatro executable is nothing interesting
and lovely apparently isn't getting far enough to create logs
After I added the Lovely dll, the Mods folder did not appear, but in the guide I was following, the folder appeared and the Lovely mod was there.
ok so
have you installed lovely
is it in the correct place
you need to launch the game once
yes
have you done the WINE command line thing
I've already launched it seven times.
where did you put version.dll
here
and where are you checking for the mods folder
AppData\Roaming\Brotato
yeah the issue is probably that youre looking at the wrong game then
its balatro
not brotato
i'm not in USERPROFILE\AppData\Roaming, i'm in USERPROFILE\Application Data
Do I need to uninstall reinstall
Sorry, I didn't notice that I was looking in the wrong folder. Thank you.
found the easiest way to break cryptid
3 jokers
whenever you use a planet card perkeo activates
if you use one of the planet cards that upgrades multiple hands perkeo activates 3 times
🥱
and then you can sell them for money for infinite money or use them for infinite scoring with this guy
Mlep
what about hooked tropical smoothie
smh
Me core (yes I keep spare change in my pockets)
just get the 1 in 6 crash ace and guarantee ace on use of any code card
or hell any card
I have a serious question, I want to make a texture pack that skins over existing card art. Is this possible or do I have to overwrite the games files. I wanted it to be a toggleable thing.
yes
you can use malverk
do you mean jokers or like friends of jimbo
let me find the thread
malverk is for jokers for friends of jimbo only smods is needed
I mean like jokers and deck art. I have the assets already made
malverk then
Winmore Joker
When you win, it counts as 1 additional win in your stats
I want to skin over them, but not replace them. What is Malverk, sorry I'm noob
@deft ore thank you
Another small thing, can the UI be edited? Not like positioning, I mean like the texture for it itself (ex: the gray boxes that form the shop screen and such)
Not with Malverk. You'd have to lovely patch the part that generates it
It's just a solid color
not a texture of a solid color
@deft ore ok, that makes sense. Thanks again
you dont have to ping me

is there a way to do this with smods or no
like specifically just the card art
Yes but it wouldn't be toggleable
ok thats what i wanted to do
perchance how would i do that
take ownership of whatever you want to change and modify the atlas and position
or just override atlases if you change every single sprite
but otherwise probably dont do that
i havent done this in forever holy
meow
Rap
Ye
🐀
is this ratboy
oh okay
I hope so
um so how would one go about this... asking for a friend
how much do you know about balatro modding
i used to know quite a bit
as in you forgot or things changed
um
forgot probably
id hope stuff didnt change
https://github.com/Jimmy-B3 this is some of my previous stuff
the stuff youll be doing for this definitely hasnt changed
i just need like the setup and then im good
take a previous mod and then replace the main file's code with an atlas definition and a bunch of take_ownerships
https://github.com/Steamodded/smods/wiki/API-Documentation#taking-ownership see taking ownership
i didnt remake card arts in any of my previous mods
Did you have art though
There be treasure
yup
atlas definition is the same
read up on the take_ownership bit
nah
Ah
lmfao
damn
hi astro
we should remake this image with our oc's and balatro mods
i saw a review once that said "absolute cinema" that got translated to "absolute cinema" but with cinema as in the building in my language
absolute kino
absolute jokester
Absolute [insert mod name]
wait can someone try out my mod i made a while ago i wanna know if it could still be improved upon
I'll do it when I'm home
Absolute Jimmy
yo
absolute garbshit
How do you read ":3"
smile
takes notes
a meow
smile with more silly
If anyone knows, when I see :3 I hear the polygon donut noise
yay!
Or some derivative
YES
meow!!
mrrrp
mew
Mow
so... anyone got some smods code i could use for replacing joker sprites
i mean uh... for a friend
Istg #⚙・modding-general is either actual modding chat, nonsense (shitposts) or just 🐈
yup
mrraow
Most of the time it's 🐈
so... anyone?
Nop, i do textures
You can prob ask uh what's his name
Balateo goes kino guy
Ice
I think
Or revo
Probs
Anyone realy
are any of them here
Revo probs
revo are you here
already tried with 0 response for now
AAAAAHHHHHHHHHHHHHHHH
yes!
bless you
On that note, is there a tf2 mod
eris do you have any code for retexturing jokers that i could... see and... use?
nothing that doesnt use malverk
sigh
What's wrong with malverk anyways
mostly because malverk is the standard for texture pakcs
There's a reason there's not code for this
What
like where do i put malverk in my files, just in the mods folder?
Ye
It's a mod loke others
Tho I don't remember how you make you own mod malverk compatible
!!!!!!!!!!!!!!!!!!!
my mod
the list
what the fuck is references
swapped abstract
ortacryptid hurrah
the list isn't even for jokers
bala(t)royale
ok but what if i get canio on the canio deck
should i be rerolling to find some sort of jolly joker generator? i worry that my build is soon going to die but i like having tons of money because compound interest is going crazy with it
that jovial M coupon only needs 1 more jolly joker to be soldd
damn is hould have taken blackboard a while ago
honestly i only have like 2 mods installed im basically vanilla
put that money to use
for winning
yeah i think that was a good idea
this is probably going to crash my game but whatever
grab bag
the highest prince or whatever it's called
it adds 300+ hands
rare food joker...
Is anyone else having problems with mods? I have the most recent versions of Lovely and Steammodded, and added Aikoyori's Shenanigans, Mayhem and their dependencies.
Yeah. I did. I don't think that it's anything with the mods, though, as here's the error message
ERROR - [♥] lovely-injector has crashed:
panicked at crates\lovely-core\src\lib.rs:204:45:
called `Result::unwrap()` on an `Err` value: Os { code: 123, kind: InvalidFilename, message: "The filename, directory name, or volume label syntax is incorrect." }
ERROR - [♥] lovely-injector has crashed:
panicked at core\src\panicking.rs:221:5:
panic in a function that cannot unwind
try reopening the game
I've tried like 10 times already, lol. I've removed everything except Mayhem and its dependencies and it's still not working.
I mean that's the mod I wanted to play, so that kind of defeats the point. It works without it, but I don't get why it doesn't work with it.
Question. What mods do you have that are required for mayhem to run
Overflow and Talisman
remove mayhem then
seems like a very obvious solution here
:clueless:
Welp... After trying to launch with other mods, it doesn't work as soon as there's any mod other than Steammodded, lol.
gotta love an unbalanced version and an even more unbalanced version
I expect for everything to be vanilla balanced because it hurts my feelings when things aren't to my liking
woe #000000 upon ye
Do you have lovely installed properly? Are there any nested folders?
AAAAAAAAAHHHHH
Chip
Nope. I just reinstalled Lovely and now it works for some reason.
thank you
i'mma eat the chip
KILL YOUR TV 🔨
KILL YOUR TV 🔨
KILL-- 🔨🔨🔨🔨🔨
like this?
just prated bloons td 6 guys
but if you die
then that means you die too
you ghost too
yea ur a ghost now too
go say hi to ghostsalt
hi :3
hiiii
hi
good afternoon gamers
experienced day gamers
i literally went through this today
the ice witch has to try harder than that
PTA based
no not yet
its like they're in some king of snowspace
Snowgrave?
I don't know that spell.
oh i should make a freeze ritual card
Cool art
i mean in Fortune we were gonna have a joker called "The Entity" that would give +1 chip per day left of "her awakening"
thats fun
Why did they trap a child in the cube
it's completely blown my Marble cards out of the water :>
Phanta 0, PTA 1
GhostSalt doing a little dance for owning GhostSalt
Also I almost called you GhostSanta
Cosmo crossmod????
i should add some crossmod thingamabobs
Cross my Mods
but right now i gotta actually make my mod stand alone
love me some growlixes
Cosmo is a mod I worked on yes
That’s my mindset too
i hope me not being able to think of ideas i am happy with for these is because i'm tired as shit lmao
quantum ranks?
like should these be more closely related to gamesets where they affect joker abilities and the like or should they be more generic
i'm flip flopping on that
this may seem like a rhetorical question but if anyone could give a opinion that would be nice
the basic concept is that all of them are different ways to play the game but they aren't necessarily more/less powerful than each other
in a sense yeah
gimme an example doesn't even have to be for one on the list
i just want something to go off of lmao
hmm i like that format yes
and the soul card (since these DO appear in a booster at the beginning of a run) is the only 'overpowered' one
and that also means you can just skip
anywho i'm gonna try to absorb this effects if that is okay
nice
💀
i love it so much when a mod has their own spectral card
literally every single one i've seen looks so cool
your build should never die you have cryptid
turns out that i came back home later than expected
with cryptid ante >12 you should never lose
ill try it tmr
because the mod is unfun and unbalanced
thank you for your commentary
That one obsidian final boss blind:
that one chicot:
Nuh uh
i eventually found a joker that gave me 3 jolly jokers which let me trigger jovial M and essentially busted the entire game
unbalanced? yes! unfun? i enjoyed it so 🤷♀️
nah but with infinite econ (compound interest+value manip) luchdor can be guarenteed in the shop
differing opinion detected
Would you rather Have
Unlimited jokers but no mult
Or Unlimited mult but no mult
if youre on doe so is chicot
oh it definitely does get old
that's true
the difficulty comes from having to watch the "calculating score" screen instead of making sure your build survives
abort that thang
a test of endurance over a test of skill
or just. KIll all the retrigger jokers
score should never take more than 5 seconds to finish
because you only need 1 scoring joker
that triggers like 1 time
The difficulty is mostly in stopping yourself from making a build that lets score calc things build up. Cryptid's gameplay patterns really emphasize 'have a lot of stuff's regardless of whether it's actually worth having
yea e.g. canvas is really really strong, and directly synergizes with having a lot of jokers, so you're actively encouraged to pick up a lot of jokers
Chat i completely forgot about balatrue (the joker concept)
Ehhhhhhhhhhhhhhh
for some reason i find it kinda satisfying to watch scoring animations go while also calculating
this is good
I think the litan part looks kinda weird
so true
lol
still want the mod or nah
It's a lot of design that kinda is in tension with itself, but it works for Cryptid because it's advertised as breaking the game. Winning is less so the goal than breaking the game in every direction allowed is
i hate this
do you guys like my absolutely nothing joker
apparently sets mult to chips divided by mult...
and then does it again
so mult -> chips/mult -> chips/(chips/mult) == mult
that isn't right
oh wait
desmos is going a little insane 1/(1/y) == y
so chips/(chips/mult) = mult*chips/chips = mult
ok fine automod it's a stick of dynamite
multiplying by any number other than 1 stabilizes it
only 1 destabilizes it, not -1, 0, 10^1000
weird
which also means x^2 is stable
and it makes 2 fucking lines
ik they don't touch and it's curves but still
at x=1 it resolves to 1=1
i think so idk
gone
i didnt make the joker
no it's still there there just aren't any numbers anymore
what
y = x/(ax/y)
y = xy/ax
axy=xy
a=1
how is this curves
H
i can see how 2 lines would be curves
Ok, so I was originally planning on making a Random Deck mod that has random modifiers, but what if I instead made it themed around pins that you can select to modify your deck? (Kind of like stakes, but you pick and choose which ones, and there's both positive and negative pins)
For each positive pin you have to pick a negative one, or one has both an upside and a downside
every 0.1 it flickers between
cut of at 0
2 lines
3 lines
Yeah pretty much
this is so weird
lines are connected to even-ness somehow
🥀
I'm going to do either:
A. Each pin is about the same strength (but you can stack them) and you have to pick an equal number of each pin, or
B. Each pin has a score, and the total score can't go over a certain threshold
this is interesting
just like how x^b will go both same up or opposite
-1 does not blow up like 1 does
ikr
I think the first one would be a lot easier to implement a "random pin selector" for, but it also might be harder to balance the modifiers
Square root of -1
true...
lookit that imaginary expands the outputs that freak out
Undertale hotcat sound effect
hello, i dont know if this is the right place to ask, im trying to change the main menu on balatro, i want to change the card that you can play with in the middle of the screen to a polychrome, red seal, lucky king of hearts, how would i go about this?
how do you use tone() again?
thank you
thats quite expected actually factorial is quite freaky on its own
not surprised
fair
summation hold up
vrywhere i go, i see his face
"We have exponentiation at home"
Exponentiation at home:
Which one should I do? I think A would be easier to implement a random pin selector for and probably more intuitive to the player, but it'd also be harder to balance
i wonder if i can rotate 90 degrees and actually just create x^2 but without exponentiation
z = 1 vs various other z's (i notice that z = 1 seems to be an outlier in terms of its base function...)
Why does it dip that tiny bit
yeah
idk why tho
i see no reason why 2 would make it so normal but only =1 freaks out
z = 2 seems to be the proper start of the sequence
even 1.00000001 is stable
Also what are all these graphs for
=1 is like when you hit your elbow just right
It feels like this chat is always off-topic but never for the same reason
When you get that one joker in cryptid
wolfram alpha what does this mean
What would you do if you were making a Ralsei Joker?
alphatrue...
By doing what
Make it square?
balatrue...
Make him give off unintentional homoromantic vibes
jimbo is pretty ok, but man when you get one that synergizes with your setup theres nothing better
I GET IT
y=x/x/y is like a true equation but for some reason that fucks up the graph
but if you edit the function it becomes not true and it can be graphed
it basically ends up equaling 1=1
desmos is pissing its pants because its detection of true graphs is limited ig
and that one got through
so when we make it an inequality or something
it's only this true gif tho
idfk
we have exponentiation at home
exponentiation at home: (i did it yay)
feels like a flase win because it is but idc
Prince of Darkness - Uncommon - If scoring hand contains a Heart and 2 other unique suits, this joker gives x2 mult for this hand and the next 1.
I don’t get it
hey guys
oh hell nah
what
stinky paperback
??
very op
maybe i'm gonna make an Ace of Hearts related Joker?
well you still have to make it by without having the joker
and you cant sell a single other thing
oh shoot i didnt check if the sold item is a joker...
very op and then i get a copy of credit card
yea in practice youd have to fight your muscle memory
and if you dont roll the right joker its lost
it's legendary rarity?
? its rare
nah, i think it's rare
should be
also idk what character i could attach the effect to
Dora's Backpack
imo all legendaries should look like aij/paperback/handsomedevils/vanilla legendaries
just that style is part of the visual identity
what, we cant come up with our own?
i dont care if other people do it but i dont have any real interest to do it myself
not you
mostl because i cant think of a senario where xchips would really make it more flavorful
George, what's your stance on XChips
im not that creative
they are fine
Buffed flowerpot
ok, i just remember people told me somebody here REALLY hates XChips
i'm glad it's not you
I will judge you if you use xchips because really all it is is flavourless
You add flavour kinda if your joker is blue or smth but really it just spawns more unoriginal ideas
by fine i mean like
it's fine
it's not a deadly sin
Meow meow meow AAAHGHGAHGHGHGAHGH
i would never use them because i am above that but like
feel free ig
it's kinda just mid
also localthunk said he wouldn't
so
Isn't that just cuz it'd make everything op
it's a bad design choice
i live for the thrill of imbalance
Oh
with like 2 differences
Yeah I'll grab it and try it tmr
all my jokers are like game enders in their own right.
it does gain more differences if you have ^mult and chips tho
xchips only serves to make future +chips worse and future +mult better
Blue talkis are like the only chips I've seen that are actually blue
X09823400834083408 Chips
i never joke
astro, this is where you have to ask yourself, am i really gonna bow down to the standards of this guy?
🗨️
thats crazy
exactly, nobody has power over how you move.
Except your gym teacher
Homoromanticism
like actual sex?
i'm no medical professional, but you should probably get that checked out
I said homoromanticism not homoeroticism
hehehehehe :3
Me neither
67
fucking who?
what's he doing
boy do i love ban autodelete
???
I'm playing cryptid and just got like 147 consumables from perkeo! My computer is not nearly as enthused. Any suggestions for consumable stacking? Saturn isn't working and I can't find a download for incantation online.
I think there's a more modern consumable stacking mod, Overflow or smth?
@tidal smelt
Locke & Key | Creation Key
Wait these kinda kick ass I might use them again
You are a god send! Didn't wanna have to put my beautiful run out of it's misery. Fingers crossed it works with cryptid.
Hmmm i should try and draw one
Kaboom.
... I don't know what to enhancement draw
it's no longer a stick
rather a stick of dynamite
though I am thinking you should just be able to use it at whichever blind you want
something with fractals?
I think I forgot how to make sprites
i mean balatro is another word for joker
theres also my joker there
there is
Does anyone know what is causing this mod to crash? It's the Deck Creator Mod.
This is the error I get.
ts very outdated methinks
Well, it was last updated on March 3 lol
deck creator also has ai thumbnail art in bbm so like dont use it i think
ok first off, i'm gonna make the Universal Rarity.
Never noticed it was AI till right now, haha
and polterworx died in the middle of the year 😭
Is there any mod that's similiar to it?
I think the mod might work if I disabled literally all my other mods
Let's see
might not
yeah it works if i disable all my mods that modify the collection
ughhhhh
why use deck creator
i just wanna mess around with meme decks for fun
not really, there are some mods that do carry some stuff from it, but not all
Poltergeist (spiritual successor but only in some features)
Mayhem (Big fat numbers again)
UNIK's mod (OCs and legendary art but not legendaries and Epic blinds)
Valkarri
ewwwww mayhem
what does poltergeist do?
mainly just "tokens", consumables and stuff, not much in the way of other content
poltergeist or polterworx?
there's no jokers?
yup explicitly stated no jokers will be added in that
i'm making a custom rarity for a crossmod between mine and starspace
what should the color of "Universal" be?
or gradient
Next i'm thinking about making the 4th Grandiose Joker in my mod, it's obviously Golden Cheese Cookie but i'm basing this off of her Awakened form.
given those two you would need to bring the gradients colours closer together i think
i dunno if that would look good
actually this looks peak nvm
it depends on the colours but its probably fine
you said meta is the programmer?
ight colour pick time
the strip
imagine drawing a joker with only colours on this line
true and neo information
@sweet bramble - I tested things more, and it seems like your mod in particular breaks compatibility with Deck Creator, I can enable all the other Joker Addition mods without Deck Creator crashing, but the moment I enable yours, it seems to go haywire, any idea as to why?
hmm. wack. i haven't tested my mod with deck creator so i don't know why that happens. what exactly do you mean by "going haywire"?
color interpolation, basically how color be shifting
trig and linear are different in how they shift color
also do other joker mods that also add decks (eg. paperback, extra credit) cause something similar to happen?
took a while to get the polish nice, still could use a little more but check it
With more testing, it seems like Deck Creator is one finnicky bastard, I have the error code if you think that might help?
what woud you do if you were making ralsei joker?
idk in what sense
this is what i get upon trying to save any deck
if they were an exotic joker
what do you think their ability woulf be
something to do with dark suits?
something something, cards with dark suits give xchips equal to their rank
exotic joker
i dont have a frame of reference for what that is
cryptid
Cryptid adds 210 Jokers to Balatro, many of which were created with the help of the Balatro modded community.
(a rarity even higher than legendary)
cryptid gaming
Exponentia
oh euh
I’m making unbalance balaltor mod
well the three on the right anyway
"NOOOO YOU'RE SUPPOSED TO GET NANEINF!"
The three negative Exponentias:
Exponentia, gains ^Mult when XMult triggers?
yuh
yeah
Me personally, i woulda gotten scalae