#⚙・modding-general
1 messages · Page 1554 of 1
i use magma it literally is just a website installing is not a block lmao
peak shit though the brushes and fonts kinda suck ass
its not made for it but like its fine
it has a pixel brush and thats enough for me
piskel is cool
torment nexus edition
my friend who bought a new laptop used it and, it was fun to see him try something artsy
anywho if you wanted my rec for a pixelart focused online website i would choose https://www.pixilart.com
i reallly dislike pixilart
looks bad
if i want to draw it should look good
okay like you don't have adblocker installed
i don't think about those things because ads never enter my eyes
im trying to get my stuff moded but its causing so many errors
-# me when a free online service tries to make money (they are objectively evil)
dawg that is not a reasonable complaint
it really doesn't though
it's ugly
i like it better than magma even
the line snapping is bad it only has straight 45 and 22.5
where is my 15
anyway piskel my beloved
also bad-looking ui is only a reasonable complaint if its actually distracting
it is for me
i guess it's just not for me
also can you make the transparent texture in the bg dark mode
really it does its job making the tools look distinct
i think actually
hold on lemme look
oh yeah darkmode is default so it is goated by default
also why would you that ruins the contrast between the drawing and the ui anyway
why must they contrast
so i can focus on the drawing
observe
chat rate my new jokers XD
like this by default
ALL IN JEST AND PISKEL MENTIONED
anyway just to note i don't even like pixilart that much (i use magma remember?) i just think you're being unreasonable lmao
looks like it
because i'm goated with the sause
huge complement ig
oh this exists
why is this hiding in the settings lmao
give this a toggle
I'm making a fnaf balatro mod, what should withered freddy do? Has to be a bad thing
why is photopea not on this list
Because slipstream makes like insane shit with krita
Actually i dont know a single person who uses photopea to draw balatro art so fair enough
photopea is certainly a choice
I use it
One of my friends uses paint.net which isnt that bad
Another friend just uses Microsoft paint to draw jokers
this isnt related to anything, just wanted to share this moment with you guys
Enjoy listening to the CEO of swag:)
Oh I won't let you go if you don't subscribe!
Lyrics:
Oh I won't let you go
homeless five
contains 5oak, 3 cards share the same suit and 2 cards share another
not a genuine idea, i was just wondering why this hand i made once in a run didn't count as flush house
this is called dichrome five
cat became one with the code.
i also
What
i am too pure to be slop
Kwebbelkop said the same too
🤔
read the file name
let this show be SLOP!
What the fuck
poker hands if they were good
man I hate that I cant send stickers
that was: teto
i go back to cryptid
teto drunk on root beer
😔
nothing new ever happens
this video took 100 seconds of my life
this video took my life
Did yo uget it back
yea
phew
that could have ended badly!
omg wait idk why this video gave me this idea but this might be fire
A deck that does the chicot bug, but for all blinds
chicot bug slop
like you beat the manacle, then gain +1 handsize permanently
Whar is chicot bug
if you have multiple chicots and play the manacle you gain permanent hand size
Oh
yesssss
🥱
nothing ever happens: the modpack
Booo
wait what why is ending ante at 10
there's a stake that makes it go to 10 instead of 8
i forgot which one
but yeah a stake forces it to go to 10
and theres a stake that will make big blind go to boss blinds
hmm okay now I need to think of ideas for permanent bonuses
yo whats the name of the mod with the calculator?
? like hiker-like effects or
.
Diamond stake?
yo whats the name of the mod with the calculator?
most of them are easy except for
the hook
the fish
amber acorn
verdant leaf
Cerulean bell
after checking yes its diamond
oh wait also the pillar too
smallpox soon
i dream of a day with no phantom cards bug in any mod 
real
i think this time it's emporium and its seals (which are awesome conceptually btw)
chat what do yall think of this?
sounds hard to balance but also cool
at first glance, there's nothing really wrong with this 😭
also not too sure what to do for bosses that debufd cards
I could retrigger them but that seems boring and repetitive
considering there is uh
effectively 10 blinds that do this
also the 4 face down blinds
...why not SMODS.destroy_cards(card) instead?
true...probably because emporium had its last commit a year ago 😭
-# ough.
oh, destroy_cards even handles glass shattering
welp i might be able to just replace everything here with destroy_cards
No, you should replace it with return {remove = true}
i did both 👀
overkill or fine?
but yeah, i get it, {remove=true} is what actually fixes the bug
because i think the bug always is that the discarding flow continues even with "dissolved" cards
Hey so is there a way to stop scoring early
I think I'm in an infinite retrigger loop 😭
That or it's just really long and I've been retriggering for like 15 minutes
Nevermind it just took forever but yea
i'm quitting balatro modding
infinite retriggers isnt possible (in 99.9999% of cases)
the game pre-calculates everything before running the animations and it cannot store infinite items in a table
I’ve seen far worse
here's where i'm at
both do the same thing, probably fine but you might get some duplicated sounds or something
mine's way higher than what steam tracks
guys is there any mod that would make the game easier in terms of required chips scaling? i enjoy the deck building with tarrot cards part of the game and basically making up a certain build that comes to mind but i am too bad at the game to do it efficiently enough before ante 11 kills me off so i never get my build to where i want it to be...
i think there was a mod that changed the scaling to make it way slower but it was on nexusmods and idk if it'd work today
I wouldn’t bet on it tbh
it'd probably be easier to just make a mod that does that today
i mean off the top of my head a dirty solution could be to take the output of the blind size function, subtract 300 from it, divide that amount by some value, and add the 300 back
why add/sub 300?
theres a better way to do it i'm just saying its very easy
300 is base small blind
strangely, if you set G.GAME.modifiers.scaling to 0, endless mode has all the blind requirements set to -nan but before that it works fine and scales slower as expected
you could just hook into the blind size functionand return a divided value
though depending on how exactly the function works you may not want to choose 300
yeah but that'd affect base small blind
this is slower scaling
not smaller blind size overall
oh slower scaling
uhh
increase denominator as ante increases
you might want amulet too to make sure your not capped at ante 39
its just this
this keeps the base 300
and allows for slower scaling by dividing by some amount
smol
im assuming this isn't want you want
yeah i would suggest hooking straight into the blind size function cause if you set modifiers scaling lower than 1 it actually gets smaller in endless so you cant make it slower than normal balatro scaling (it makes sense but)
i have no way near any of the skills required for that...
we do ^^
local old_get_bl_amount = get_blind_amount;
local whatever = 3 -- an amount to reduce by
function get_blind_amount(...) -- params don't matter
return ((old_get_bl_amount(...) - 300) / whatever) + 300
end
it would take like 4 lines of code + header
thats what my idea did
not slower scallng
you'd want to increase the denominator as the ante increases
do mods stop achievements? or can you like stop getting achievements while playing with mods? i would make like 2 separate profiles one with mods and one for vanila completion
okay yeah but the difference between 1.2e154 and 3.6e154 is baaicly nothing
you can set whether you get achievements or not
yes I believe so
okay then
I dont think I have any steam achivements
non-exp scaling
idk what it will do if you play without mods after playing with though
function get_blind_amount(ante)
return ante * 300
end
I havent tried that
linear as hell
polynomial scaling
throw some to_bigs in there as well why not
lowkey I need a mod that makes it do factorial scaling and put it on a friend's cryptid profile
function get_blind_amount(ante)
return 300 + (to_big(ante)^300) - 1
end
evil scaling that kills you
okay bye chat
imma take a shower will figuring out ideas for my evil chicot deck
bro got killed
oh... i actually really like going for all the achievements in games...
you can enable them
wym?
its off by default due to mods making it easier
but you can enable them in the settings of smods
im actually super clueless about anything modding related/pc balatro, i only have it on my prohbne
phone
peak
is there any "official" mod launcher? or smth?
nothing is officially endorsed by localthunk
there are launchers though
thats why i put it in ""
you also don't actually need them
they don't do anything special besides being convenient and occasionally causing problems
in any case you should see when you get to having the game on pc if you find the manual way easy enough
its on sale actually might aswell just buy it rn
there's programs that manage mods but sometimes it causes big headaches
Oops! The game crashed:
Syntax error: functions/misc_functions.lua:1465: 'end' expected (to close 'if' at line 1455) near 'else'
A mod you have installed has caused a syntax error through patching. Please share this crash with the mod developer.
Additional Context:
Balatro Version: 1.0.1o-FULL (best guess)
Modded Version: 1.0.0~BETA-1224a-STEAMODDED
LÖVE Version: 11.5.0
Lovely Version: 0.9.0
Platform: Windows
Stack Traceback
(3) C function 'function: 0x38912ad0'
(4) global C function 'require'
(5) main chunk of file 'main.lua' at line 1755
(6) global C function 'require'
(7) LÖVE function at file 'boot.lua:323' (best guess)
Local variables:
c = table: 0x389186e0 {identity:false, version:11.5, accelerometerjoystick:true, modules:table: 0x38918730, gammacorrect:false, title:Balatro, externalstorage:false (more...)}
openedconsole = boolean: false
confok = boolean: true
conferr = nil
(8) global C function 'xpcall'
(9) LÖVE function at file 'boot.lua:362' (best guess)
Local variables:
result = boolean: true
(10) global C function 'xpcall'
(11) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
inerror = boolean: true
deferErrhand = Lua function '(LÖVE Function)' (defined at line 348 of chunk [love "boot.lua"])
earlyinit = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
guys what is this (sorry i couldnt embed it)
Less a complaint more it gets laggy after a lot of jokers so being able to disable it to improve performance would be nice
its so funny how i can get it cheaper bcs its in bundles with games that i already own
theres an opt mod cooking somewhere
gimme a second to see if i can remember the name
it may not be out yet (it wasn't last time i heard)
well there was one mod that added a shader to every playing card
that killed my fps, i remember installing a mod that made it so you could hide your deck for that
shaders don't necessarily make the game laggy...there's like a thousand other things that could lag your game
strontium is wip but has versions that are out
so you could try those if you like
find them in the thread
hmm
you reckon these are good?
its actually on an all time high sale rn hell yea
THANK YOU
THANK YOU FOR YOUR PURCHASE!
An email confirmation has been sent to you.
Any digital items in this order are now registered to your account on Steam. To access your items, simply visit your library in Steam whenever you're ready.
pastemaxxing
well its downloaded now
i mean sure yeah
what are spell cards though
i need context
nice
how does one mod balatro?
consumables i made
what platform are you on (linux/windows/macos)?
windows 11
ight
thank you
this is the windows guide
what are some "begginer" mods youd recommend? i watched some of roffles cryptid mod but thats about all i know, also about the slower scaling is there one or did yall make it rn? i got kinda confused
the homestuck is obvious
yeah that mod was literally made in this chat lmao if you want to use it gimme a second to package it up
as if my profile picture isnt a fantroll
lmfao
but yeah lmao i had the idea and its actually kind of goated
correct ✅
I highly recommend paperback as a first mod
what it do?
i heart paperback
Oh also galdur is like number one must have QoL mod
actually could be useful if you put some xmult down
ya thats the idea
though i reckon this is Common
on my phone i have a couple of gold stakes but only on the easy decks, made it to orange on black deck
i've actually never used galdur
yes
i personally use handy and jokerdisplay
the galdur ui is really nice
okay im back
and unblind
i use a couple qol mods
galdur, cartomancer, and handy mostly iirc
I only use galdur and handy
cartomancer's nice with mods that make big numbers of things
it makes it a little easier on ur computer lol
If i need consumable stacking i just use overflow
oh that's SO neat
tyyyy
the device theory
i need to find a way to uncrossmod these ngl
like.. effects between any joker?
like it acts as a random joker every three seconds?
oh random out of a set list
it has 3 effects it cycles through
ah i see
in a set order
still neat
anyway with context would u say they're fine
well yes
oh i should make a t3 in case you have cryptid installed
hmmmm maybe just
x4 as likely
these are generally useful so it isn't actively bad to have them in shop lmao
yeah fair
-# magic trick
especially mine she's spiritually like an orange cat but she's the colour of a bread loaf
no brain cells in this vessel
clearly got baked
True...
@strange abyss @jade gorge what do you think? multiple dynamic stickers (should support modded stake stickers as well), with tooltips for every stake
anyone here that has beaten a modded stake yet?
which method did you use
SMODS.DrawSteps?
this is correct and fine
no malverk, just good ol' hooking
WHAT
malverk can do more than replacing textures??
it can also do dynamic textures???
no, i'm not using malverk :D
i just take_ownership of stickers etc.
of stickers?
yes
do you like get an array of them and then-
i wanna look at the source code it sounds like wizardry
it's amazingly just ~200 lines of lua, i'll push it in a second
i pushed - https://github.com/pumpncode/stackers - please try it out and show me...i've only beaten white and red stake on this current save
also you might need to install card sleeves, idk
ohhhh i see how the take_ownership works
i personally still don't fully - i just dove into a lot of other mods and smods source code
and like trialed and errored
im wondering if "turns one joker negative" is good for this card
like in terms of concept
yezzz it is working
what the Hell is happening
no but i remember YAHIMOD having some so ill beat one stake just to see
awesome, would be nice if you can...i'll try to speedrun one as well XD
hold on give me a sec i can just cheat a win on like a super high cryptid stake
i'm afraid of modded stakes breaking my "stakes chain", because as you can see, this stake (by opalstuff) only implies white stake under it, no red stake
but yeah guys, try it out and let's see how it goes
There are Things™ being posted in this chat rn lol
?
Just a lot of things
actually i have to go rn so ill check the modded stickers later
Hold on guys, big question.
Do you know of examples of jokers giving, - chips or mult? Kinda lost on how to word it, in code.
no worries
LMAO
i mean granted
hm? oh
something like this?
LMAOOOO
welp as long as it doesn't crash XD
oh no, kinda just like the base +4 joker but in negative, haha.
the flood
but also...idk, kinda wrong...like, you didn't use this joker to win any of those stakes but the highest one
Idk how to word it
yes that's true
"-4 Mult"
i need to figure out how i would make that
wait really?
oh yeah
idk return { mult = -4 } or something its been a while since ive made a joker
but...why? 
Job Application joker
I was looking for examples, the search function of the balatro mods page doesn't return it very well.
lowkey i feel like that would at MOST be uncommon
true
unless you pair it with strmnn's mod
oh I'm making a crazy joker that gives extra slots but also negative things for each one of them.
ahhhhhh
thoughts on these ideas?
Coder made a mistake with a consumable and it made I.O.U turn into golden joker instead of golden ticket lmao
can you download once again? it should be fixed now to only show actually won stakes
i like this
doesnt work on the deck but ya
works on the jokers
nice...but i mean deck is correct, no?
like, if it wouldnt be cheated :D
because you could only play that stake by beating all the others below it
or idk how yahimod does it
actually yeah fair
"discards 2 random cards per hand and discard played"
so like the hook but it also triggers on discards, how's that wording
check if it's in G.jokers.highlighted
if it's not then it's not highlighted
what is this 😭
there may be a better way but i don't know of one
uh oh
i can't check any docs atm
Why the hearts touching tips
it's the lust joker 
play my mod
gonna put my pfp on this and make it say play my mod
revo's vault more like revo's walt
I'm still making mine
i'm getting around to it it's a lot 😭
Spite
are you also using cryptid
ah ok because there's a known bug between aiko and cryptid
i think its multiplayer related
okay imma play revo's vault now 
my friend has his up just fine
do you both have same aikoshen and bmp versions
peak
I removed mp and it still crashed
its crashing whenever a menu tries to load
just know i missed a lot from the previous updates as well...like, the whole vault system is new to me (but i reaaaallly like the concept)
i mean the vault is pretty new, but im glad you like it
having a more interesting mechanic coming up next update
tho it needs to wait the smods release
revooo can u crossmod me
revo can you cross me (betrayal style)
sure and sure
revo can you make me cross (grrr im angry)
i can even do the art for it lol
just something that prints pelts lol
if you make the art now i can add it tomorrow
ok
i will probably still add it tomorrow either way
if you ever crossmod me revo, you'll probably have to stare at an art exhibit for roughly 5 hours like i did
we just gon a do cryptid instead ):
because gallery jokers
speaking of, i still havent started on peeker
this little guy that i havent started yet
also why did i decide that this guy is common
its like, the best card for a gallery joker run
nvm this is much more fitting
Too much shop slots are weird looking
yeah that's fair, might have it be +1 voucher in shop for every 3
this is actually so great i can just do my thing without stressing about not making it to the next ante
Yall is there a way to make a boss blind play your hands for you
it can remove all discards and force select cards ig
I kinda want it to be all automatic
Like in toga
I want the feeling that you are getting cucked
@storm forum hot potato
lets start stacking some mult ahaha
the most calm cryptid build
i mean this is my first time playing cryptid so its mostly pretty vanilla so far
as i dont know what is possible in the mod
Number go up
once you get chad, you win essentially
Cryptid is decently fun if you just play a normal deck honestly
also im ante 12 but i have a mod jamirror made for me which guts the scaling so i can just explore the mods and make builds
Just ignoring the jokers for every hand type because theyre just kinda annoying
yeah also beating cryptid with 0 cards in your deck is a fantastic experience
because none exists and it goes crazy
aslo, time to cash out, i got splash, midas mask and paredolia
also how do you unlock none without unlock all
hihi, just starting out wanting to use some mods for balatro. where are ppl hosting their mods? does the community favor nexus or thunder or something else?
github is the main source of balatro mods
all of the mods are in #1209506514763522108
okay, is there an easily searchable list of them so i can browse and find ones i want?
are there any "required" qol mods like boss checklist or magic storage would be for terraria for example?
yeah, forums have search functions
its all on discord
i see. that's a sad choice. but i shall do my best i suppose
@formal orchid
not necessarily but there's stuff like handy and amulet that many people prefer
This is why I made one hand type joker trigger upon playing hands that are just combinations of other hands, like 2 pair and full house making only 10 hand type jokers for the for the 18 possible hands in vanilla
wait 18???
handy is the one that allows swiping for selecting cards?
also i think 2 pair already has a joker, unless its an entirely different set of jokers
2 pair is just one among many hand types that can trigger it
It's a combination of pair and pair, so it will trigger it
Full house is a combination of 3oak and pair, so it too will trigger it
5oak is not a combination of 2 hands, so it won't, but flush fives will
Hey if you were to choose a song for a balatro trailer that wasn't an original song or the balatro theme what would it be
does paredolia make the played card count as a face card or every card is? if i make for example a 4 an abstract card and it breaks does it trigger my canio?
Every card
break stuff
It's what allows mad world to exist as a challenge
splendid
what does mad world do?
im not as knowledgable in balatro
Mad world is a challenge where you get no money from hands and interest
i see
So to get your money up and not your funny up you get an eternal pareidolia and eternal business card
well my canio didnt get the extra mult when the abstract card broke even though i have paredolia
maybe its unintended?
It's built to override it
like when i play a stone card it turns into a gold card with my midas mask
Midas mask is active while pareidolia is passive
i meant this rather, like if it was exempt it wouldnt turn into a gold card no?
I think I misremembered something
There might be an independent check that counts cards as face cards
And the modded content simply didn't consider that check maybe
time to make some cash
Thus it acted differently than stone would
yea maybe
just dont let those abstract cards activate the 1 in x chance to break
eh
at first i wanted them to break to feed the canio but it doesnt work so i dont really care about them
they can do their own thing i dont mind
what if i use the code card quantify on an abstract card?
what do abstaracts do in my joker slot
lemme try it
oh it just adds the ^1.1 mult
thats neat
this joker from the severed mod gives negative mult
richest man in balatro
L
uuu, thank you. Will check it out. 💕
im sorry for trying out a mod ig
it's fine to try out a mod
just cryptid is a mod you never have to
try again
take it from someone who is probably top 0.1% cryptid player
and drew for the mod
it's a waste of time
i just now bough balatro on pc i wanna try various mods
i played it on phone before
i am by no means an expert on hte game
but i have a couple gold stakes
what mods you made?
this is indev
this one is lower quality because i was worse at balancing and art
so bundles will definitely be better when it is done
how hard is it to make balatro mods?
well it uses lua which is one of the easiest languages, i think with time it can be pretty easy to learn
i know a bit of c# as i have that in school and a bit of python as im learning that for college
not too hard if you're willing to learn
Making a mod is child's play
Making a good mod is where you'll need some talent and/or coordination
iirc lua is built on c to the point you can literally do c in it (i have never done this and don't know what its limitations are)
oh wait c# is different because programmers like making lots of things with almost the same name
is Sagatro a good mod 🥺
it would be too subjective if I judged it myself 😭
I suggest Handy over Nopeus
either are fine, but Nopeus has a bit of a problem with latest SMODS
handy yeah
howd you add custom challenges
Never played it
Since a large majority of mods add onto the original game and doesn't replace anything, I think it's safe to say there aren't many bad mods
A bad mod would be something it fundamentally fails to do what it aims to
considering they are all free, i'd always be a bit cautious about this but...there are shit mods 💀
but yeah, most are good or at least have potential but aren't "finished" or "polished" (yet)
To me it's hard to really call mods bad since they're often additive and not replacing things
but if something adds shit it will still be shit is what i'm saying
some people would argue adding content is an inherent downside due to displacing/making you less likely to see vanilla (good content) and said content would have to be good enough to displace this downside
meaning that for some "neutral" is bad
To be fair it's not really hard to get somewhere around vanilla quality
Bizarrtro is my first mod ever and I've already gotten there

Though it's still in development
art+balance+bugfree+performance on the same level as vanilla
nah
like, thats just hard
Somehow the number of my hours actually decreased and i dont know how
fun is the only word that should be there
and balance for some people
but that loops back around to fun
Sagatro introduces story mode, which heavily alters joker pool
it's only additive is story mode is turned off so
yeah but the game would be less fun if the jokers looked like shit and gave me x100 mult
hell crashes just have to be uncommon enough
yes
that is "fun"
but also some people like that as well
the X100 mult part anyway
define "fun" in modded Balatro scope
this is subjective as shit and thats fine
its about who you want to play your mod
-# hell some people play the shitty graphics mods on purpose
My development process is pretty much just making the art and ideas and sending them to my coder, the coder codes them, and I point out bugs or mistakes to fix while occasionally introducting more to add
-# you cannot exclude anything
it's subjective to a certain degree...like, e.g. a mod that crashes my game? who has a fetish for their game crashing?
There's a cryptid consumable that crashes the game if used
thats just funny then lmao
send that to your friend
gameplay not a factor if it implodes
mine is a bit different I suppose
I am the coder, I get fed ideas from one of my artists, and I'm also the one balancing those ideas
Completionist++ privilege
I'm the one that balances them while they just do what I tell them to
Even then I'd say they do a majority of the work but I (at least somewhat) balance it out by doing everything else
but like basically the common denominator is that the fun that the player has with the mod offsets crashes and the like
By a majority of the work I mean coding, coding is that majority
i'm not necessarily including bugs because some bugs are fun for many players (see vanilla)
Though I've taken up to helping them by sending them sources or specific code templates to implement
there are a lot of reasons why some games do better than others, and they are all complicated, but one is definitely that "fun" is not a 100% subjective and can be achieved more or less depending on how you design a game
but whatever, we're all on the same page anyways, i enjoy most mods and the ones i don't i just don't play, who cares
speaking of
plug your mods guys
do the parentheses thing with your username XD
Still in development but I can drop the current build
design a game yeah but i think its worthy to note that the modding community surrounding this game is generally more accepting of issues than they would be of a whole game in of itself
so it is not exactly comparable
obviously yeah
Not fully tested so I don't know what might be happening when it shouldn't
Just use unlock all the unlocking stuff is primitive rn
and vanilla still exists to provide a backbone of good content
whew, I'm a lot more persistent than I think
I do everything code-related, from studying Balatro or another mod's source code to implementing
It's mostly just me making things occasionally instead of all the time as well as only focussing on bizarrtro
I also sometimes make my own ideas in case the artist's couldn’t suffice
I'm not good with multitasking at this level
Ideas come to me naturally
same except its more like i threaten ideas to give me all its money and it works sometimes
due to how I and the artist interact with each other, it's better to consider us a real team like Ortalab team
too bad, I can't put Sagateam as the mod author since we also get help from external artists
Literally everything with my coder has been about the mod
It's like clockwork, I give them things to add/change, they send me the updated build by the next night, I create a log for bugs, mistakes, additions, and desired changes for them to go off of, and repeat
ah, you're also a tester by this action
Only times that cycle broke so far were when they lost power due to a storm and when they weren't done implementing a bunch of templates
What makes it such clockwork is that when they can't do something I either pick it up or scrap the thing entirely
For example they didn't have the resources to properly scale the atlases so I just update them myself and send it to them to implement
collection screenshot because why not
The only scrapped thing was I.O.U's original mechanic which proved too hard for them to do
woh soder
John mantle
Anyways, I've been having fun with the custom deck maker deck, and I've made a new challenge deck
Could you win with this?
I spend a lot of effort implementing heavy JokerDisplay integration just to satisfy my own need
most people don't play with it anyway 
hiker
thank u
amazing
it's scaling chips, scaling mult, and scaling Xmult. what else do you need
I need to implement jokerdisplay compatibility
the cost of being a coder, a tester and a player at once
favorite deck and its not even a normal deck
three of these items are scp references
figure it out
torn on if I should make you start with one of the refresh vouchers
-# if you want
in any case one of them is niche as hell so
What the fuck?
x in the ante counter goes crazy
why is there an X in your ante count 
your VallKarri is literally like 8 months old dude
WHAT THE FUCK
My coder's english isn't the best, that and the fact they're human is why I'm sure they know their interpretations of what I say won't always be exactly what I mean, so they rely on me to test it while they sleep that way I get to nitpick things and they have a lesser workload
Why are you complaining its the only one that works with steamodded 0827c
Androd...
Idk
Newer versions of steamodded will crash on android due to some shader fuckery
rule 4 
glup
I can't figure out how to mod in the steamdeck
I just can't linux
ifonism too 
Brother in christ android is linux
I'm joking
But yeah the server rules forbid discussion of modding anywhere but pc and stuff
Steam deck is fine too I think
WHAT? ur telling me im texting on discord with a linux rn?
-# i only mod on pc, im not modding on android
pc software ig
Imagine a texture mod that just makes every joker backwards
Like you see jimbo from the back
And not his face
why a texture mod
Balasstro
when you can:
rekoJ: -4 Mult

120 fps of jimbo claping that thang
would you guys kill me for making rhythm game boss blinds
Rekoj is already taken
no not really
no you would kill me
indirectly that is
i lowkey want to make boss blinds that reward you for having a sense of rhythm
I'll patent the concept of evil mirror characters fr.............
i still don't know how you'd be able to rhythm game with the fuckin sound thread
true
mirror
💥💥💥
sound thread is bs
Whgar
what does this have to do with anything I've said
Uhh uhghh ih
me when two conversations are happening
Meatloaf
some king of
[J]ust
[A]
Mirror
Whar
how low can the character count get
ono
Made some changes: Jokers no longer appear in the shop, they were taking slots away from useful cards you could actually use, but if you make one of your starters negative you can still get a joker from the booster packs
Also, you start with Reroll Surplus
my artist just sprang up a crazy idea about ||resource management in space||
id say ftl but i havent played it to know whether it's actually management
just play Sagatro
the underwater storyline is already a resource management one
you assume i play mods
i barely playtest my shit
Shit must be more broken than the chips at the bottom of the bag
REAL
if my code is jank enough for me to question it i test it
if its a basic joker with a basic calc function i dont even bother
a troll joker I made breaks the game 💔
and all it's supposed to play the Sonic checkpoint sound if you're playing on Mac, PC, or Linux but crash the game if you play on mobile.
Wtf evilatro
Guys I did it. omg. Still need to balance it, but it's done.
I feel accomplished
btw, the joker is from Opandora's Box, so most of the props to them. All I did was retouch it a lot.
oh man that name gave me a double take
i have a mod in dev called Pandoras Box
lmfao
Yeah I think it's a pun with their name. They are called Opan, so I guess it was easy to fuse it with pandora's box. haha.
⚜️
example joker
oh shit opandora's box mentioned
this is ortalab cryptid and that is tier three version of the booster swap voucher joker
Best fan music out there man. Hell yeah
haha
Make the brothers even steven and odd todd
That is such an awesome idea.
imaginary harry
cryptid is not a dependency ❤️
fractional frank
since fractions kinda just don't have a concept of even or odd
And make the middle child some weird purple joker thing
Wait no they'd look like an incest child
Don't do that
lmao
not a clear cut one anyway
Make them green joker lmao
lmao, yeah I thought of that. Maybe something like a joker with shades of blue and red.
god dammit i plugged this too early
Introduce them as an individual joker later on with their effect involving face cards
It would be like their life in a mod. haha.
Maybe switching between +mult and +chips every round or having it be random which
score requirement is just xmult * 2 no?
Score requirement is how much you need to score to beat the round
For example the score requirement of ante 1 small blind is 300
This would lower that 300 by 4%
That'd require the chips and mult beforehand to equal exactly half the score requirement in one hand
so score requirement is like xmult * hands played * 2
yes yes, lowering score requirement is like backwards xmult
ultimately, the goal is to Score Many Point, it's all just ways to Score More Point
i suppose that's true
again its permanent vs normal xmult so it stops being as comparable
It's my way of making -chips useful, since score is measured in chips I believe
When is someone gonna make a joker equivilant that's like
"x1.04 mult"
Literally barely anything
There is no Xmult equivalent to -score requirement
if you wanted a true eq that would be XScore (regarding the total score counter, not just total in one hand)
did somebody say xscore
Actually that'd be the opposite of dividing the score requirement
yeah a true eq
The opposite of -4% score requirement would be +4% score
in any case both have the permanent property
which xmult and xchips does not have
not total in a hand
total score
the thing very famous for staying on screen
and adding up each hand
this is in a vacuum though
Score is a number that can vary depending on all the different contexts, meanwhile the score requirement will always stay the same unless specifically programed not to
whoever made this deck should die i hate it
i imagine some fucked up mod could make it so only XScore happens
i just lost a 1 in 7 chance for like 35 instances
L
Job Application: +2 Mult for each infoqueue of the Joker to the left
OR
Job Application: +2 Mult for each infoqueue on all Jokers
opinions
amazing
ignore the numbers when choosing as what matters is the targeting
numbers can be changed
wtf dustdust
is this part of a serious or non serious mod
im playtesting the amalgam that i made where i combined all my projects
and i just wanted to play the deck i made specifically for dustdust
52 card deck thinned to 9 because of this fella
this is probably common right
maybe uncommon for the all joker version but thats pushing it
actually considering its inherently weak maybe adding the targeting isn't a good idea
i feel like this should be a challenge and not a deck
that's scary...
so many consumable sets that have little to barely anything in them
im such a good modder
i love cards
Now imagine obsessed monster joker
Or RDDD joker
i already have 3 instances of sans in the mod i dont wanna add another
then again one of them is my own take on outertale so idk
actually that effect is kinda ass
maybe i just hate obelisk
Add lθva omega
goated
this is frying me
ehhh
lmaoooo, I just got this.
Do you guys know what this joker is supposed to reference?
Been playing the mod for a while, but have never gotten it.
Probably some song or something
that's... pretty strong for a Common
Ekoj solos
I actually searched it and it looks like it's from Skyrim. Never played it, so figures.
o
ASSAULT, ASSAULT! https://youtu.be/9W9rJTjZnRo?si=DcKfgFNfeeSnHbRC
I've fought mud crabs more fearsome than you!
Waiting on Skyrim is drivin me nuts, so in the meantime I endure some classic Oblivion hilarity.
lmao, that's funny. Need to try out Elder Scrolls some day.
Thanks.
I keep searching for my mod on YouTube hoping somebody play it and show it on YouTube bruh
that slight imperfection is gonna break OCD players 😭
man, JokerDisplay was never meant for jokers with conditional effects requiring different displays
yet I tried to force it to
Hopping in randomly- It is from Skyrim or, more generally, the Elder Scrolls game series. Specifically, "By the Nine" is their version of "By God" and references the Nine Divines, the main pantheon of gods in the Empire
I am an Elder Scrolls nerd, so anytime I see it referenced in the wild I pull a Leo Dicaprio and point at my TV
by the nine im tweaking
Khajiit is lowkirkenuinely tripping balls on unrefined unfettered moonsugar
the joker art also references the infamous ugly oblivion character faces
or more like this guy
oh nvm, its this gem, truuuue
Anyone know why crimson bean glitch wont work for me? On pc and using handy and dvpreview mod
Really annoying. Last time I used debugplus to manually give + handsize XD
nothing to see here
very nice, i think it could get cluttered at some point so if you could condense them all into one tooltip it'd be great; seeing as the left side is used for stuff like Eternal stickers and whatnot and needs to be easily readable
or even change the wording on the existing highest sticker to say this is the "Highest stake won" or smth along those lines
so players know the tooltip is just for the uppermost sticker
even when i disable all my mods crimson bean glitch wont work. Is it patched?
not really a modding thing but is there a way to get all previous versions of balatro?
i guess its smods or lovely doing its thing idk thats weird



