#⚙・modding-general

1 messages · Page 1343 of 1

plush hound
#

check how aiko did it with do not the joker

#

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

gentle citrus
#

curious to ask about this, can you use custom images into a shader?

#

as in like import images into the shader

full edge
#

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

gentle citrus
full edge
#

That should be possible for sure, though I don't know how to go about that

plush hound
#

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

plush hound
#

legend has it, the people who learns it never became sane again

full edge
#

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

plush hound
#

i mean, theres a couple of musician in here that could help you

#

although learning it by yourself sounds fun

full edge
#

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

plush hound
#

the ice of all trades

full edge
#

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

plush hound
#

excluding PWX since finding Godsmarble doesnt really count as "True Ending"

#

the show are still going after that

full edge
#

Anything to show people that I don't care about endless, hahaha

woven crag
#

endless entropy

woven crag
young timber
#

@plush hound whats ur pronouns (for my mod)

plush hound
young timber
#

cool

woven crag
plush hound
#

imosspible

#

impossible

full edge
#

My pronouns are any/none. I have let go of all earthly possessions and reached nirvana

young timber
#

actually dead?

plush hound
#

he sold his soul

#

my pronouns are were/was

wanton rapids
#

endless isnt real

woven crag
#

true..

plush hound
#

i should try putting Hot Potato and Collage in the same folder

#

see if it works

#

probably Kino for good measure of contents

frigid mica
digital jungle
plush hound
plush hound
full edge
#

Also love that you're trying hard to undo it by stuffing more mods in, hahaha

sleek granite
#

i should forbid jokers to exist

plush hound
full edge
plush hound
#

but yeah Collage is pretty cool

sleek granite
#

hi ice

plush hound
#

i don't know if i could suggest that modpack to the first timers tho, theres alot to unpack

full edge
#

Hey hey autumn

plush hound
#

hello aut

frigid mica
plush hound
frigid mica
#

i know

#

But like

full edge
frigid mica
#

God, I’m trying to make Astro spawn by requiring you to beat the goad with only spades

amber river
#

modded balatro

frigid mica
amber river
#

one of my 78 mods is preventing me from advancing antes (goated) (forever in limbo)

full edge
# frigid mica help

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

gentle citrus
#

is there a way to import custom images into the shader?

frigid mica
#

I can’t believe i have to ask for a snippet again.

gentle citrus
#

did I miss something?

frigid mica
#

I’m supposed to be knowledgeable in this but apparently I’m not.

#

Ok well, how would you write it ice?

full edge
#

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

full edge
# frigid mica help

Also, you'll want to check for cardarea, because this will check every card in your hand including at the end of the round

young timber
#

whats the id prefix for tarot

#

plz

young timber
frigid mica
young timber
#

thats what i mean

full edge
young timber
#

c_modprefix_blah

young timber
#

@frigid mica send code so i can copy paste

frigid mica
#

For what?

#

What code

young timber
frigid mica
#
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```
full edge
#

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

frigid mica
#

"beat the goad with only spades"

young timber
#

ohh

#

thats what you mean

#

thats a bit more

full edge
#

Yeah, you have multiple hands to do that, no?

frigid mica
#

yea

#

only spades

young timber
#
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

frigid mica
#

do i have to wait or is this the complete one

young timber
#

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

frigid mica
#

G.GAME?

#

wtf

young timber
#

G.GAME yea

frigid mica
#

i thought you were gonna make a local value, not make it a G.GAME obj

young timber
#

G.GAME.blind.boss object

#

it saves too

#

important that it cant be cheesed by reloading game

frigid mica
#

oh yeah i'm wondering

young timber
#

MY FUCKING TEA, I FORGOT TO DRINK IT

#

NOOOOOOOO

#

Mmmmmmmmmmmm cold tea...

#

okay gn ft im going to sleep

frigid mica
#

ok i'm reloading

young timber
#

its 100% gonna break

#

but its cuz i was guessing names

#

loloolol

frigid mica
#

the game not the run

young timber
#

byeeeeeeee

frigid mica
#

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

woven crag
#

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

frigid mica
#

beat the goad using only spades

woven crag
#

and what is the check youre using

stable juniper
#

we are so back chat

#

@rain orbit

rain orbit
stable juniper
#

gosh looking at the others, they seem tough to implement ;u;

woven crag
stable juniper
#

i can deffo do Mad Salesman

#

Counterfeit, i'd need to look into Joker retriggers and how they work

rain orbit
stable juniper
#

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;

rain orbit
#

Greenscreen should be easy

#

Just take the code from blueprint or brainstorm or smth

stable juniper
#

oh that one was another toughie

rain orbit
#

Oh

stable juniper
#

i have no idea how they did that

#

so i'll prolly do that one near-last

rain orbit
#

Ok

stable juniper
#

i've never made an ability copy joker 😭

frigid mica
#

OH MY GOD

#

IT WORKS

rain orbit
#

o

frigid mica
#

THANK YOU SO MUCH ERIS

#

I WILL DRAW SPRITES FOR YOU

rain orbit
#

Whar

lime siren
#

Oh my discord updated

#

MB didn't see it was solved

frigid mica
#

I should probably work on one of my most powerful legendary jokers: Saitama - Prevents Fantasy from Destroying Jokers.

#

My own version of Saint.

smoky gulch
#

yo any1 have a good mod recommendation to play

stable juniper
#

Phanta 😇

smoky gulch
stable juniper
#

also Aikoyori's Shenanigans and Paperback and MmmmmJokers

stable juniper
#

unsure why the banner's not there, hmm

#

should work fine

smoky gulch
#

i think my mod manager is js kinda broken

stable juniper
#

ah ^^

smoky gulch
stable juniper
#

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

smoky gulch
#

ahh

#

ima js play phanta first

stable juniper
#

yay ^U^

smoky gulch
#

looks fun

stable juniper
#

i'm glad pleading

smoky gulch
#

damn thats a lotta decks and new jokers lols

stable juniper
#

hehehehe :> 10 months of development does that to a mod

smoky gulch
#

gng phoenix > paulownia chaff

#

diff of a rare and a common ahh

stable juniper
#

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

smoky gulch
#

ooo oke

#

nice

tardy sigil
#

Chat is this anything

smoky gulch
#

i need 4 more chips

#

was too focused on money oops

stable juniper
#

noooooooo ;u;

blissful stag
#

Looks nasty

stable juniper
#

😋

#

why does the d have a belly button though ;u;

blissful stag
#

I think me from 6 months ago was making it loon like a 6

#

Because of oops all sixes

stable juniper
#

oooooooooooh i see

blissful stag
#

Since my old mod was just about rng stuff

smoky gulch
stable juniper
#

<@&1133519078540185692>

smoky gulch
#

is zodiac cards just like joker cards but in consumable slots?

stable juniper
#

yepyep ^^

polar oyster
smoky gulch
#

damn mega zodiac, mega hanafuda or blueprint

#

i can only pick 1 sinc eim broke af

rain orbit
honest zephyr
rain orbit
spiral monolith
rain orbit
#

It can be junk and it'd still destroy the first scored card

chilly pine
#

something something refridgerator

round ore
spiral monolith
#

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

frigid mica
#

when i can get back on my puter, i'll be making the ralsei joker i promised for starspace

hard plank
#

my peashooters are not firing

keen knoll
civic atlas
spiral monolith
honest zephyr
stable juniper
#

that looks like Replanted actually

civic atlas
#

you can just find the parts in game.lua that uses those hex codes and patch your custom ones in

worn bone
hard plank
#

GMO plants

worn bone
#

do you just get everything for free

full edge
#

It ticks to negative and everything is 5% more expensive

hard plank
#

my GMO plants are too far gone

alpine cosmos
#

plants versus zombie

stable juniper
#

cornwall

honest zephyr
digital jungle
#

like idk just a guess

wary rose
grand geode
#

who the fuck is sharing my video on messenger and whatsapp

buoyant kestrel
#

quite suitful

#

not my picture i just saw this and thought it was cool

worn bone
#

hey undyne how many suits are there

gentle citrus
distant badge
gentle citrus
#

wait, is this done in balatro?

buoyant kestrel
distant badge
#

no it just feels very homestuck

buoyant kestrel
#

this is true

#

i agree with this assessment

gentle citrus
#

cause I was about to like, also share a non-balatro related mod to showcase but eh.

cloud vortex
#

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.

toxic cloud
cloud vortex
#

but before it wasnt even letting the game start

toxic cloud
#

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

honest zephyr
#

Too Many Suits

worn bone
#

add these to simul

scarlet swan
magic depot
#

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.

stable juniper
#

mrrrp

turbid heart
#

where are those pinned useful balatro art resources

#

trying to find em

woven crag
west hill
sinful geode
#

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

#

😀

magic depot
#

1.0.1f or whatever it is

west hill
#

Launching through steam?

magic depot
west hill
#

Try verifying you game files through steam

woven crag
magic depot
turbid heart
#

suffer

stable juniper
#

haiiiiiii!!

brisk quarry
#

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

clear mountain
#

Hello, I'm having trouble installing mod loaders. Can anyone help me?

brisk quarry
#

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?

deft ore
latent crescent
#

Suspicious amount of new people trying modding for first time

#

What kind of video came out?

brisk quarry
#

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

clear mountain
hard plank
#

have you installed lovely

#

is it in the correct place

brisk quarry
hard plank
#

have you done the WINE command line thing

brisk quarry
clear mountain
woven crag
#

where did you put version.dll

clear mountain
hard plank
#

's aftert the %command%

#

did you add that

woven crag
brisk quarry
#

on the like 4th try yes

#

Working mods on the other computer

clear mountain
brisk quarry
#

oops need to go for now

#

Hm

woven crag
#

its balatro

#

not brotato

brisk quarry
#

i'm not in USERPROFILE\AppData\Roaming, i'm in USERPROFILE\Application Data

#

Do I need to uninstall reinstall

clear mountain
verbal parrot
#

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

latent crescent
#

🥱

verbal parrot
#

and then you can sell them for money for infinite money or use them for infinite scoring with this guy

worn dagger
#

Mlep

woven crag
#

smh

worn dagger
#

Me core (yes I keep spare change in my pockets)

deft ore
#

just get the 1 in 6 crash ace and guarantee ace on use of any code card

#

or hell any card

woven crag
#

get lucky once

#

and win forever

vivid merlin
#

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.

deft ore
#

yes

woven crag
#

you can use malverk

deft ore
#

do you mean jokers or like friends of jimbo

woven crag
#

let me find the thread

deft ore
#

malverk is for jokers for friends of jimbo only smods is needed

vivid merlin
#

I mean like jokers and deck art. I have the assets already made

deft ore
#

malverk then

formal wedge
#

Winmore Joker
When you win, it counts as 1 additional win in your stats

vivid merlin
#

I want to skin over them, but not replace them. What is Malverk, sorry I'm noob

vivid merlin
#

@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)

buoyant kestrel
deft ore
#

It's just a solid color

#

not a texture of a solid color

vivid merlin
#

@deft ore ok, that makes sense. Thanks again

deft ore
#

you dont have to ping me

latent crescent
gentle quarry
#

how do i change the card art of cards

#

like cards that already exist

gentle quarry
#

like specifically just the card art

deft ore
gentle quarry
#

perchance how would i do that

deft ore
#

take ownership of whatever you want to change and modify the atlas and position

woven crag
#

or just override atlases if you change every single sprite

#

but otherwise probably dont do that

gentle quarry
#

i havent done this in forever holy

verbal parrot
#

meow

grand shadow
#

Balater

#

Bottom text

worn dagger
#

Rap

grand shadow
#

Ye

worn dagger
#

🐀

deft ore
#

the creature

grand shadow
#

It's a feature

#

A creature feature

#

Featuring

#

Jimbo

woven crag
grand shadow
#

Idk

#

Mayb

woven crag
#

oh okay

grand shadow
#

I hope so

gentle quarry
deft ore
#

how much do you know about balatro modding

grand shadow
#

Eyes

#

Dang

gentle quarry
grand shadow
#

;eyes;

#

God damnit

gentle quarry
#

but uh its been a good 3 months...

#

so now like... almost nothing?

deft ore
#

as in you forgot or things changed

untold hound
gentle quarry
#

id hope stuff didnt change

woven crag
#

the stuff youll be doing for this definitely hasnt changed

gentle quarry
#

i just need like the setup and then im good

deft ore
#

take a previous mod and then replace the main file's code with an atlas definition and a bunch of take_ownerships

woven crag
gentle quarry
grand shadow
#

Piratery in balater

#

Yarr

deft ore
grand shadow
#

There be treasure

gentle quarry
deft ore
#

atlas definition is the same

grand shadow
#

Greetings

#

I heard art

deft ore
#

read up on the take_ownership bit

grand shadow
#

Am I needed

#

To do art

gentle quarry
grand shadow
#

Ah

woven crag
grand shadow
#

I'll be on my way then

#

Farewell

woven crag
#

damn

gentle quarry
#

hi astro

grand shadow
#

Absolute :3

#

Meow

past lava
#

we should remake this image with our oc's and balatro mods

woven crag
#

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

grand shadow
#

absolute kino

past lava
#

absolute jokester

grand shadow
#

Absolute [insert mod name]

gentle quarry
#

wait can someone try out my mod i made a while ago i wanna know if it could still be improved upon

woven crag
#

absolute hypernova

#

wait no

#

hyper truth nova

gentle quarry
grand shadow
#

Guys

#

Very important question

gentle quarry
woven crag
#

absolute garbshit

grand shadow
#

How do you read ":3"

woven crag
#

colon three

#

or not

#

or "mrrp mrraow

grand shadow
#

What sound do you make

#

Hm

#

Interesting

gentle quarry
grand shadow
#

takes notes

past lava
woven crag
#

smile with more silly

gentle quarry
#

cat smile

#

or meow

grand shadow
#

If anyone knows, when I see :3 I hear the polygon donut noise

#

yay!

#

Or some derivative

worn dagger
#

YES

stable juniper
#

meow!!

worn dagger
#

YES

#

YES

grand shadow
#

mrrrp

past lava
#

mew

worn dagger
#

Mow

gentle quarry
#

so... anyone got some smods code i could use for replacing joker sprites

#

i mean uh... for a friend

grand shadow
woven crag
#

mrraow

grand shadow
#

Most of the time it's 🐈

grand shadow
#

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

gentle quarry
#

are any of them here

grand shadow
#

Revo probs

gentle quarry
#

revo are you here

grand shadow
#

That could work too

gentle quarry
grand shadow
#

AH

#

caps mb

woven crag
#

AAAAAHHHHHHHHHHHHHHHH

grand shadow
#

yes!

gentle quarry
grand shadow
#

On that note, is there a tf2 mod

gentle quarry
#

eris do you have any code for retexturing jokers that i could... see and... use?

woven crag
#

nothing that doesnt use malverk

gentle quarry
#

sigh

deft ore
#

What's wrong with malverk anyways

woven crag
#

mostly because malverk is the standard for texture pakcs

deft ore
#

There's a reason there's not code for this

gentle quarry
#

ok ill download it

#

downloaded

#

wait where do i put it

grand shadow
#

What

gentle quarry
#

like where do i put malverk in my files, just in the mods folder?

grand shadow
#

Ye

#

It's a mod loke others

#

Tho I don't remember how you make you own mod malverk compatible

stable juniper
#

pleading !!!!!!!!!!!!!!!!!!!

gentle quarry
#

can you make one for me??

#

🙏

#

ill take that as a no

#

ur good

hard plank
#

my mod

sinful geode
#

Yo whats a fun mod i can play?

#

Big or small 😊

buoyant kestrel
#

the list

woven crag
#

what the fuck is references

buoyant kestrel
#

ortacryptid hurrah

#

the list isn't even for jokers

grim rover
#

bala(t)royale

neon orchid
#

ok but what if i get canio on the canio deck

placid iron
#

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

neon orchid
#

damn is hould have taken blackboard a while ago

#

honestly i only have like 2 mods installed im basically vanilla

woven crag
#

for winning

placid iron
#

this is probably going to crash my game but whatever

cyan cedar
past lava
deft ore
#

rare food joker...

halcyon wyvern
#

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.

deft ore
#

what problems

#

also did you read mayhem's readme

halcyon wyvern
#

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
deft ore
#

try reopening the game

halcyon wyvern
#

I've tried like 10 times already, lol. I've removed everything except Mayhem and its dependencies and it's still not working.

deft ore
#

remove mayhem then?

#

seems like a very obvious solution here

#

is he real

halcyon wyvern
#

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.

deft ore
halcyon wyvern
deft ore
#

oh weird

#

no idea then report the bug

granite forum
#

:clueless:

halcyon wyvern
#

Welp... After trying to launch with other mods, it doesn't work as soon as there's any mod other than Steammodded, lol.

granite forum
#

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

exotic belfry
granite forum
woven crag
#

Chip

halcyon wyvern
exotic belfry
#

Lmao

#

As is the life of modding

#

“Somehow, it got fixed”

granite forum
#

thank you

mint flame
#

i'mma eat the chip

limber oak
#

KILL YOUR TV 🔨
KILL YOUR TV 🔨
KILL-- 🔨🔨🔨🔨🔨

mint flame
stable juniper
#

oooOOOOOOOooooooooo

#

:(

#

awww noo

mint flame
#

like this?

vital zealot
#

just prated bloons td 6 guys

mint flame
#

but if you die
then that means you die too

#

you ghost too

#

yea ur a ghost now too
go say hi to ghostsalt

stable juniper
#

hi :3

mint flame
#

hiiii

vital zealot
#

hi

alpine cosmos
#

good morning gamers

#

hiyo

#

Damn

deft ore
#

good afternoon gamers

stable juniper
#

experienced day gamers

mint flame
#

i literally went through this today
the ice witch has to try harder than that

stable juniper
#

PTA based

alpine cosmos
#

YOOOO

#

that art goes crazy hell yeah

deft ore
#

no not yet

stable juniper
#

this u?

#

-# GOD now i so really extra want to make an Aurora Joker

#

alpine cosmos
#

its like they're in some king of snowspace

mint flame
#

Snowgrave?
I don't know that spell.

alpine cosmos
#

oh i should make a freeze ritual card

gilded vortex
mint flame
#

i mean in Fortune we were gonna have a joker called "The Entity" that would give +1 chip per day left of "her awakening"

alpine cosmos
#

thats fun

gilded vortex
stable juniper
#

Phanta 0, PTA 1

gilded vortex
#

Also I almost called you GhostSanta

stable juniper
#

Cosmo crossmod????

mint flame
#

i should add some crossmod thingamabobs

gilded vortex
#

Cross my Mods

mint flame
#

but right now i gotta actually make my mod stand alone

stable juniper
#

love me some growlixes

gilded vortex
gilded vortex
buoyant kestrel
#

i hope me not being able to think of ideas i am happy with for these is because i'm tired as shit lmao

alpine cosmos
#

what if you made the two corner things into pillars?

#

sdkhjksjf Fair

deft ore
#

quantum ranks?

buoyant kestrel
#

i'm flip flopping on that

buoyant kestrel
#

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

#

💀

opaque herald
#

i love it so much when a mod has their own spectral card

#

literally every single one i've seen looks so cool

granite forum
grand shadow
granite forum
#

with cryptid ante >12 you should never lose

grand shadow
#

ill try it tmr

granite forum
#

because the mod is unfun and unbalanced

placid iron
#

thank you for your commentary

rain orbit
granite forum
#

luchador

deft ore
#

that one chicot:

rain orbit
#

Nuh uh

placid iron
#

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 🤷‍♀️

granite forum
granite forum
rain orbit
#

Would you rather Have
Unlimited jokers but no mult
Or Unlimited mult but no mult

placid iron
#

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

placid iron
#

a test of endurance over a test of skill

placid iron
granite forum
#

because you only need 1 scoring joker

#

that triggers like 1 time

full edge
#

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

forest knoll
#

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

magic brook
#

Chat i completely forgot about balatrue (the joker concept)

blissful stag
#

Ehhhhhhhhhhhhhhh

dusty token
#

for some reason i find it kinda satisfying to watch scoring animations go while also calculating

granite forum
blissful stag
#

I think the litan part looks kinda weird

dusty token
#

so true

gentle quarry
#

still want the mod or nah

full edge
dusty token
#

i hate this

buoyant kestrel
#

crazy shit

distant badge
#

do you guys like my absolutely nothing joker

#

apparently sets mult to chips divided by mult...

#

and then does it again

granite forum
distant badge
#

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

mint flame
#

ok fine automod it's a stick of dynamite

granite forum
#

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

dusty token
#

at x=1 it resolves to 1=1

stable juniper
#

oh no the graph exploded

#

no more maths

#

it's over

#

the whole subject

distant badge
#

i think so idk

stable juniper
#

gone

distant badge
#

i didnt make the joker

wanton rapids
rain orbit
granite forum
dusty token
granite forum
#

how is this curves

stable juniper
#

H

granite forum
#

i can see how 2 lines would be curves

buoyant kestrel
#

pattern perhaps

granite forum
#

no

#

4 has 1

#

it just alternates

gentle forge
#

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)

granite forum
#

what about fractions

#

stops at 0???

rain orbit
granite forum
#

every 0.1 it flickers between
cut of at 0
2 lines
3 lines

granite forum
#

this is so weird

buoyant kestrel
rain orbit
#

🥀

gentle forge
buoyant kestrel
#

this is interesting

granite forum
buoyant kestrel
#

-1 does not blow up like 1 does

granite forum
gentle forge
rain orbit
#

Square root of -1

granite forum
#

I am aware

granite forum
rain orbit
granite forum
#

hehe yeah boy

#

imaginary go brr

buoyant kestrel
granite forum
#

single 2 in there and bro is still chill

#

woah wtf

rain orbit
#

Undertale hotcat sound effect

grave salmon
#

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?

granite forum
#

how do you use tone() again?

grave salmon
#

thank you

buoyant kestrel
#

not surprised

granite forum
#

summation hold up

rain orbit
wind token
#

vrywhere i go, i see his face

granite forum
#

"We have exponentiation at home"
Exponentiation at home:

gentle forge
granite forum
#

i wonder if i can rotate 90 degrees and actually just create x^2 but without exponentiation

buoyant kestrel
#

z = 1 vs various other z's (i notice that z = 1 seems to be an outlier in terms of its base function...)

rain orbit
#

Why does it dip that tiny bit

granite forum
#

idk why tho

#

i see no reason why 2 would make it so normal but only =1 freaks out

buoyant kestrel
#

z = 2 seems to be the proper start of the sequence

granite forum
#

even 1.00000001 is stable

gentle forge
#

Also what are all these graphs for

rain orbit
gentle forge
#

It feels like this chat is always off-topic but never for the same reason

rain orbit
#

When you get that one joker in cryptid

frigid mica
#

I forgot how Ralsei works

#

What do I do with Ralsei again

buoyant kestrel
#

wolfram alpha what does this mean

rain orbit
frigid mica
buoyant kestrel
rain orbit
#

By doing what
Make it square?

dusty token
rain orbit
keen knoll
granite forum
#

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

frigid mica
#

i remember paperback has a ralsei joker

#

Dog shit wifi

granite forum
#

it basically ends up equaling 1=1

buoyant kestrel
#

desmos is pissing its pants because its detection of true graphs is limited ig

#

and that one got through

granite forum
#

so when we make it an inequality or something

granite forum
#

idfk

frigid mica
#

Ok found it

#

Paperback joker

granite forum
#

we have exponentiation at home
exponentiation at home: (i did it yay)

#

feels like a flase win because it is but idc

frigid mica
#

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

keen knoll
#

hey guys

granite forum
frigid mica
granite forum
#

why "1"

#

and not "one"

#

feels clunky

keen knoll
#

what

granite forum
#

stinky paperback

keen knoll
#

??

granite forum
frigid mica
#

maybe i'm gonna make an Ace of Hearts related Joker?

keen knoll
#

and you cant sell a single other thing

#

oh shoot i didnt check if the sold item is a joker...

frigid mica
keen knoll
#

yea in practice youd have to fight your muscle memory

#

and if you dont roll the right joker its lost

granite forum
#

still really really good

#

legendary

#

I like the effect tho

frigid mica
#

it's legendary rarity?

keen knoll
#

? its rare

frigid mica
#

nah, i think it's rare

granite forum
#

should be

keen knoll
#

also idk what character i could attach the effect to

frigid mica
#

Dora's Backpack

granite forum
#

imo all legendaries should look like aij/paperback/handsomedevils/vanilla legendaries

#

just that style is part of the visual identity

keen knoll
#

what, we cant come up with our own?

frigid mica
#

wait

#

what's your stance on XChips?

keen knoll
#

i dont care if other people do it but i dont have any real interest to do it myself

frigid mica
#

not you

keen knoll
#

mostl because i cant think of a senario where xchips would really make it more flavorful

frigid mica
#

George, what's your stance on XChips

keen knoll
#

im not that creative

frigid mica
#

Astro look at this joker

#

very accurate

granite forum
rain orbit
frigid mica
young timber
#

balatrue?

#

im making balafalse...

rain orbit
frigid mica
granite forum
#

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

rain orbit
#

Meow meow meow AAAHGHGAHGHGHGAHGH

granite forum
#

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

rain orbit
granite forum
#

it's a bad design choice

frigid mica
#

i live for the thrill of imbalance

granite forum
#

it's just xmult

rain orbit
#

Oh

granite forum
#

with like 2 differences

grand shadow
frigid mica
#

all my jokers are like game enders in their own right.

granite forum
#

it does gain more differences if you have ^mult and chips tho

grand shadow
#

Very eepy rn tho

#

2 am

brisk quarry
#

xchips only serves to make future +chips worse and future +mult better

rain orbit
#

Blue talkis are like the only chips I've seen that are actually blue

granite forum
#

judgementalism courses through my veins

#

only on how you act tho

#

i'm not racist

rain orbit
#

X09823400834083408 Chips

granite forum
#

i never joke

frigid mica
#

astro, this is where you have to ask yourself, am i really gonna bow down to the standards of this guy?

stable juniper
rain orbit
dusty token
#

thats crazy

frigid mica
#

exactly, nobody has power over how you move.

rain orbit
#

Except your gym teacher

frigid mica
#

and god apparently.

#

i still don't know what ralsei's ability should be based on.

rain orbit
#

Homoromanticism

frigid mica
sweet bramble
rain orbit
frigid mica
#

romanticism

stable juniper
#

hehehehehe :3

frigid mica
#

wait, i don't get it

#

polychrome again?

rain orbit
#

Me neither

dusty token
#

67

frigid mica
#

fucking who?

rain orbit
frigid mica
#

what's he doing

wanton lintel
#

kai cenat scam bot reached the cryptposting

#

first ban ive ever done

wanton lintel
#

boy do i love ban autodelete

past lava
#

???

tidal smelt
#

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.

frigid furnace
#

I think there's a more modern consumable stacking mod, Overflow or smth?

#

@tidal smelt

fickle elbow
#

Locke & Key | Creation Key

blissful stag
#

Wait these kinda kick ass I might use them again

tidal smelt
fickle elbow
#

Hmmm i should try and draw one

blissful stag
#

This is my favorite enhancement i sprited

#

Too bad I never got to use it

mint flame
#

Kaboom.

fickle elbow
#

... I don't know what to enhancement draw

mint flame
#

though I am thinking you should just be able to use it at whichever blind you want

frigid furnace
blissful stag
#

I think I forgot how to make sprites

keen knoll
#

insane run

#

that last joker is from my mod btw

fickle elbow
frigid mica
#

i mean balatro is another word for joker

granite forum
#

ik
It looks bad

keen knoll
#

theres also my joker there

granite forum
#

there is

magic depot
#

Does anyone know what is causing this mod to crash? It's the Deck Creator Mod.

This is the error I get.

drowsy parrot
#

ts very outdated methinks

magic depot
#

Well, it was last updated on March 3 lol

drowsy parrot
#

deck creator also has ai thumbnail art in bbm so like dont use it i think

frigid mica
#

ok first off, i'm gonna make the Universal Rarity.

magic depot
drowsy parrot
magic depot
#

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

drowsy parrot
#

might not

magic depot
#

ughhhhh

granite forum
#

why use deck creator

magic depot
olive hamlet
# magic depot Is there any mod that's similiar to it?

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

drowsy parrot
#

ewwwww mayhem

olive hamlet
#

mainly just "tokens", consumables and stuff, not much in the way of other content

frigid mica
#

poltergeist or polterworx?

olive hamlet
frigid mica
#

there's no jokers?

olive hamlet
#

yup explicitly stated no jokers will be added in that

frigid mica
#

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.

magic depot
#

okay after testing

#

it seems that Deck Creator does not play nice with Card Sleeves

buoyant kestrel
#

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

frigid mica
#

you said meta is the programmer?

buoyant kestrel
#

ight colour pick time

frigid mica
#

they must know where the colors are

#

or rather the rarity definitions

#

mmm

buoyant kestrel
#

the strip

frigid mica
#

i still want to just steal the colors from the files

#

prism dispatch

buoyant kestrel
#

true and neo information

magic depot
#

@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?

frigid mica
#

trig or linear

#

astro

sweet bramble
frigid mica
#

color interpolation, basically how color be shifting

#

trig and linear are different in how they shift color

buoyant kestrel
#

grayscale view shows limited variation

#

so shading is gonna be a challenge

sweet bramble
frigid mica
#

i'm gonna be making ralsei now.

#

what to do with them...

alpine cosmos
magic depot
frigid mica
buoyant kestrel
magic depot
frigid mica
#

what do you think their ability woulf be

alpine cosmos
#

something to do with dark suits?

#

something something, cards with dark suits give xchips equal to their rank

frigid mica
#

exotic joker

alpine cosmos
#

i dont have a frame of reference for what that is

frigid mica
#

cryptid

forest knoll
silver swan
#

cryptid gaming

frigid mica
#

Exponentia

alpine cosmos
buoyant kestrel
#

those are exotics

frigid mica
#

I’m making unbalance balaltor mod

buoyant kestrel
#

well the three on the right anyway

silver swan
frigid mica
silver swan
silver swan
frigid mica
#

Me personally, i woulda gotten scalae