#⚙・modding-general

1 messages · Page 1610 of 1

ember flicker
#

i might make tiered wilds

frigid mica
#

I feel like the word “disappointment” is like the biggest word for me.

full edge
#

10 is a loooot, haha. We were with 7 and it already felt like potentially too many

thorny dust
#

i feel like my favourite word is "2v2"

ember flicker
#

i didnt know we were going to be 10

thorny dust
#

i could be wrong tho

frigid mica
#

I’m conflicted between proud and ashamed.

ember flicker
ember flicker
#

you should be proud

#

so far it looks good

frigid mica
#

But I vowed never to discuss what happened during the last days of Wormhole.

frigid mica
#

It’s wormhole, that’s all I’ll say.

ember flicker
#

i know

frigid mica
#

Nothing too serious, I kinda rushed everything is all.

ember flicker
#

should i even do a tiered high card

lost bolt
#

how does this joker sound: "decreases level of played hand, this Joker gains lost chips and mult"

ember flicker
#

the tiered planets:

mystic echo
#

it would allow levels for hands that you wouldn't otherwise play to still benefit you, but you need to go out of your way to gain the buff

#

it would also make stronger hands buff it more, but obviously stronger hands are also harder to play

mystic echo
#

it would almost certainly have to be any rarity other than common though

#

it would probably also need a nerf, because that base concept would be the best +Chips and +Mult scaler in the game im pretty sure

#

actually, Red Card would be stronger than it for +Mult in most cases

#

and Wee benefits from retriggers i believe so it wouldn't be the best for that either

#

but it'd still be very strong with the right build

lost bolt
#

I mean i summoned it in on ante 1 and it seems more like a chips scaler based on getting to this by ante 4

mystic echo
#

yea, the mult scaling from a single level up is surprisingly low

lost bolt
#

I did find a black hole though which is extraordinarily lucky

#

maybe i could do like only mult but it's doubled if i wanted it to be a mult scaler but it feels bad to provide less value immediately kinda

mystic echo
#

every +Mult scaler gives bad value immediately

late spoke
#

oughghghh i want to make a custom shop element

#

but idk ui

lost bolt
mystic echo
#

wdym negative

#

oh the lowered levels

lost bolt
#

you're losing chips

#

yeah

#

i feel like at that point it shouldnt be every hand and then it becomes more complicated

mystic echo
#

you could make it something like "Played Poker Hands have a 1 in 2 chance to be levelled up when played, and will level down a random Poker Hand when levelled up by this"

#

the description of that is bad but you get the concept

#

still levels down other poker hands and levels up a target poker hand

#

might not even really need to be a chance

foggy wing
#

guys

#

is there any mod that shows the description of jokers or vouchers when acquired in game?

#

i don't seem to find a mod like that on bmm

#

i found one here too but idk how to download commits

lean dune
foggy wing
#

thanks

toxic cloud
#

smods 1224a broke one of the patch targets

foggy wing
#

thought i got bluescreen'd for a bit

toxic cloud
#

remove the zip

foggy wing
#

i saw the error

#

lemme replace the riff raff

toxic cloud
#

you can leave the riff raff zip intact

#

I made sure lovely can load it and smods can detect it since it's not nested

foggy wing
#

got 2 more error screens and it finally worked

#

nice it worked

cloud willow
#

gm chat

late spoke
#

who likes my consumable design

#

theres also this

limber oak
#

gem alert

tender steeple
#

hi, whats the shortcut to restart the game?

limber oak
tender steeple
cloud willow
late spoke
late spoke
cloud willow
#
function SynthB.ease_temp(mod)
    SynthB.debug(mod)
    local ret = SMODS.calculate_context({old_temp = G.GAME.synthb_temp or 0, new_temp = (G.GAME.synthb_temp or 0) + mod, mod_temp = mod})
    mod = ret and ret.mod_temp or mod
    G.GAME.synthb_temp = (G.GAME.synthb_temp or 0) + mod
    G.GAME.synthb_temp_c = G.GAME.synthb_temp .. " C"
    G.GAME.synthb_temp_thermo = 100 - math.min(100, G.GAME.synthb_temp)
    if (not G.synthb_thermometer_top or G.synthb_thermometer_top.REMOVED) and G.GAME.synthb_temp > 0 then
        SynthB.draw_thermometer()
    end
    if G.GAME.synthb_temp <= 0 and G.synthb_thermometer_top and not G.synthb_thermometer_top.REMOVED then
        --G.synthb_thermometer_bottom:remove()
        G.synthb_thermometer_middle:remove()
        G.synthb_thermometer_top:remove()
    end
end
late spoke
#

i mean like

#

the ui

cloud willow
#

oh the UI

#
local scale = 0.7

function G.FUNCS.synthb_slider(e)
  local c = e.children[1]
    c.T.h = (c.config.ref_table.ref_table[c.config.ref_table.ref_value] - c.config.ref_table.min)/(c.config.ref_table.max - c.config.ref_table.min)*c.config.ref_table.h
    c.config.h = c.T.h
end

function G.UIDEF.synthb_thermometer_middle ()
    local w = 1 * scale * 0.8
    local h = 3.81 * scale * 0.9
    return {n = G.UIT.ROOT, config = {colour = G.C.CLEAR}, nodes = {
        {n=G.UIT.C, config={align = "cm", minw = w, min_h = h, padding = 0.1, r = 0.1, colour = G.C.CLEAR}, nodes={
            {n=G.UIT.C, config={align = "cl", minw = w, r = 0.1,min_h = h, colour = G.C.RED,func = 'synthb_slider', refresh_movement = true}, nodes={
                {n=G.UIT.B, config={w=w,h=h, r = 0.1, colour = G.C.WHITE, ref_table = {
                    ref_table = G.GAME,
                    ref_value = "synthb_temp_thermo",
                    min = 1,
                    max = 100,
                    w = w,
                    h = h,
                    hide_value = true
                }, refresh_movement = true}},
            }},
        }}
    }}
end


function G.UIDEF.synthb_thermometer_top ()
    return {n = G.UIT.ROOT, config = {colour = G.C.CLEAR}, nodes = {
        {n = G.UIT.R, config = {
            colour = G.C.CLEAR,
            tooltip = {
                title = "Current Temperature",
                text = {{ref_table = G.GAME, ref_value = "synthb_temp_c"}},
                align = "cr"
            }
        }, nodes = {
            {n = G.UIT.O, config = {
                object = SMODS.create_sprite(0, 0, 1 * scale, 3.81 * scale, "synthb_thermometer", {x = 0, y = 0})
            }}
        }}
    }}
end
#

the middle code is modified slider code

#

funniest part is that the thermometer is actaully getting less white, instead of getting more red lol

frigid mica
#

Praying to Lord Jimbo rn

frigid mica
#

I made contributions to the mod.

cloud willow
#

ik

limber oak
frigid mica
#

Why do you want me to play the mod?

limber oak
#

also
unseen meowed on stream

frigid mica
cloud willow
limber oak
#

WE SNUCK A CRYPTID-LEVEL JOKER INTO THE JAM 😭

frigid mica
#

I was waiting for them to find Omnipotence

limber oak
#

apparently the playtesting team only tests functionality, not if the certain thing is obtainable

#

for all i know omnipotence could be bugged and we won't know

frigid mica
#

We have successfully hidden Polterworx ahh jokers in the mod

limber oak
frigid mica
#

Entropy Ahh jokers

#

Or if you wanna be narcissistic

#

Busted Buffoons ahh jokers

storm forum
#

🧄 🍞 that went to 🌌

frigid mica
limber oak
frigid mica
#

But yea

#

I’m praying to lord Jimbo.

#

Actually wait

#

I should make a #shrine-of-jimbo channel

limber oak
#

bazinga

frigid mica
#

You tested it?

limber oak
#

no i looked at the streams so far

#

murphy got alien x from big bang theory
unseen got alien x from big bang theory

frigid mica
#

I mean

#

It must be a coinkydink

#

The shrine has been established

#

Go to my server and pray unto him about Balatro

noble kernel
#

@limber oak hiiii

#

i cant get my balatro modded

#

:(

limber oak
stuck steeple
#

does anyone know the mod that stops the round ending automatically?

cloud willow
#

for playtesting or for gameplay

stuck steeple
#

there's a mod that adds an end round button so you don't auto end rounds

#

it's gameplay

cloud willow
#

idk ive never heard of that

stuck steeple
#

i had it a long time ago but didn't save my mods folder so no idea what it's called

#

tried googling without much luck

#

it was a bit obscure

cloud willow
#

I mean I have this card but I dont think its what your looking for

stuck steeple
#

nah - i found it, did a search on cryptid discord, it's called NotJustYet

cloud willow
#

big info queue drool

rain orbit
neon orchid
#

Or kelvin for the NERDS

karmic compass
#

silly joker idea

No More Jokers

Gain X0.25 Mult each hand,
selects one random element of played hand and added to the list below
Reset if played hand contains an already banned element

#

kinda like obelisk but fuckier

#

so eventually you'd get to something like

No More Jokers
(Currently X3.5 Mult)

Resets if played hand:

  • contains a 9
  • contains 3 or more Clubs cards
  • contains 2 or more Glass cards
  • contains a card with an Edition
  • contains a Face card
  • contains a Three of a Kind
  • contains a Flush
  • contains a 4
  • contains 3 or more Hearts cards
  • contains an Ace
#

etc.

cloud willow
neon orchid
cloud willow
cloud willow
#

it will make 0 since

neon orchid
#

I understand

cloud willow
#

cause some cards use the values

#

and expect values between 1 and 100

#

they will break for -32 to 212

karmic compass
#

me when the concept of number going from 0 to 100 is somehow alienating

#

this isn't about real life practicalities argument, it's a card game mechanic why would you have it start on negative numbers

cloud willow
finite storm
#

Add a cold mechanic

#

and make it display blue below 0

thorny dust
wanton rapids
#

no

#

genuinely what is your obsession with this

#

what do you enjoy about it that you cant get from regular multiplayer

#

because like. to me you're just plugging a random version of mp but oh you have to install a random other mod oh dont worry its not on github just download it trust me

limber oak
#

its like if someone purposefully made a malware mod for balala- oh wait

alpine cosmos
toxic cloud
#

unforseen interaction, damn

#

if played hand matches the hand on the rocket, double base mult and chips

cloud willow
finite storm
#

make a consumable that flip meaning of jokers

thorny dust
finite storm
#

then make it Cold Abnormal

cloud willow
cloud willow
thorny dust
finite storm
finite storm
cloud willow
#

we'll see

wanton rapids
cloud willow
#

of 2v2

finite storm
#

we don't need a 2v2

#

we need a battle royale

#

where u compete against 100 players at once

thorny dust
finite storm
#

the best one wins

thorny dust
thorny dust
cloud willow
#

I have regular multiplayer, and I've only had bugs from my code

thorny dust
cloud willow
#

not 2v3

#

2v2

thorny dust
#

their sun literally strengths your cards😭

thorny dust
#

you find idol

#

you take idol

cloud willow
thorny dust
cloud willow
thorny dust
#

but genuinely 2v2 vanilla/2v2 modded is genuinely the most fun I've had

thorny dust
cloud willow
#

just make your mod mp compatible

thorny dust
#

you guys don't even have to use my friends version ngl you coud just nano version from official multiplayer just try it please

cloud willow
#

I will wait for an official release that I can trust to not be malware

thorny dust
#

official multiplayer has a released version....

cloud willow
thorny dust
#

its just uhhhhhhhhh like 2 years old

cloud willow
#

I HAVE SAID THIS 3 TIMES

thorny dust
#

i am not gonna lieto yall i just want the server to be more active

#

thats literally all i want

#

server is slightly dependent on me rn

#

people only play when i play

wide mulch
#

goodmorning

cloud willow
#

gm

wide mulch
#

how do i install joker forge

#

do i need to have balatro open

cloud willow
#

idk I dont use it

#

check the thread

wide mulch
#

is it good

#

where is the exe

cloud willow
#

im pretty sure its a website

wide mulch
#

the exe to put it on my computer

#

????

#

why isnt my joker forge code working????

tawdry sage
#

why deos mods say it needs steamodded and dont work even though i have it installed

tawdry sage
#

it didnt work

wide mulch
#

do i need to pay to make mods

#

this is too complicated

woven crag
#

can you show a screenshot

thorny dust
wanton rapids
#

you don't have to do that in regular mp

thorny dust
#

you have a teammate that can actually do something

thorny dust
#

if idol shows up you have to play for idol

toxic cloud
#

we have tetris in Balatro now

thorny dust
#

in multiplayer one of the player can ignore idol and go for econ

#

2v2*

#

they can deck if better

#

fix*

#

and its way less sweaty

#

idk how to say it but its just fun

woven crag
thorny dust
#

didn't tho

woven crag
#

damn

#

i mean also

#

its almost like

#

this game was designed to be a singleplayer experience

thorny dust
#

or not

#

its like that one game like only up but tied to another player

#

its genuinely more fun with a friend

tawdry sage
woven crag
#

that mod has an incorrect dependency, go into the mod's json file and delete the dependencies

tawdry sage
#

how do i do thta

thorny dust
#

i love deleting dependencies

woven crag
tranquil vessel
woven crag
#

find the (probably only) json

#

yeah

#

and the comma after it if it exists

thorny dust
oblique storm
#

polterworx manages tetration, right?

wanton rapids
#

it's not the only mod that does that

thorny dust
#

ye

#

me when mayhem

cloud willow
unkempt current
#

0

grim iris
#

thats just cryptid after you use crash

cloud willow
#

bit hot out here

limber ravine
#

yo can someone send a screenshot of one of their collections in the mod manager for a vanilla+ experience

#

i have this rn but idk if its too much

karmic compass
#

chat how does this look

oblique storm
tall perch
oblique storm
tall perch
#

No like

func = function()
  --if statement code goes here
  return true
end
tall perch
# oblique storm what the genuine fuck am i even doing anymore

Also your main_scoring step is returning ee_chips instead of ee_mult, that doesn't look intentional

Also you named the "how much ee_mult changes" variable as ee_mult_mod, but when you actually decrease your card's ee_mult, you typed it in as ee_mult_change instead. Presumably it should just be ee_mult_mod

oblique storm
#

thank you for helping me btw

tall perch
# oblique storm theres still a bug in line 46. let me get the error message rq

Should be

func = function ()
    if card.ability.extra.ee_mult and card.ability.extra.ee_mult < 1 then
        SMODS.destroy_cards(card)
                    
    end
    return true
end

And one last thing, your main_scoring section has self.config.ee_mult but should be self.config.extra.ee_mult, same as all the other times ee_mult is referred to in your code.

frigid mica
#

batro

#

Well Met!

hardy brook
#

Looking for Playtesters for Parallel Update 1.B.0

oblique storm
umbral pilot
#

mmm im etin choclat

#

wrong server

#

ignore

woven crag
#

thats great

umbral pilot
#

thanks eris how are you today

#

jealous?

winged prism
#

Granny smith

unkempt current
muted glacier
#

Hi

#

Drink water

rain orbit
distant badge
#

the dearly beloved placeholder art for opalstuff's flat white has finally been replaced

oblique storm
tall perch
# oblique storm ts pmo icl or sum shi
SMODS.Enhancement{
    key = 'crimsand',
    pos = { x = 2, y = 0 },
    config = {
        extra = {
            ee_mult = 1.2,
            ee_mult_mod = 0.025
        }
    },
    loc_txt = {
        name = 'Crimsand',
        text = {
            [1] = 'Gives {X: mult, C: white}^^#1#{} {X: red, C: white}',
            [2] = 'Decreases by 0.025 when held in had or played.',
        }
    },
    atlas = 'CustomEnhancements',
    any_suit = false,
    shatters = true,
    replace_base_card = false,
    no_rank = false,
    no_suit = false,
    always_scores = false,
    unlocked = true,
    discovered = true,
    no_collection = false,
    weight = 3,
    loc_vars = function(self)
        return { vars = {card and self.config.ee_mult or card.ability.extra.ee_mult, card and self.config.ee_mult_mod or card.ability.extra.ee_mult_mod } }
    end,
    calculate = function(self, card, context)
        if context.cardarea == G.play and context.main_scoring then
            return {
                ee_mult = self.config.ee_mult
            }
        end
        if context.final_scoring_step and (context.cardarea == G.hand or context.cardarea == G.play) then
            card.ability.extra.ee_mult = card.ability.extra.ee_mult - card.ability.extra.ee_mult_mod
            G.E_MANAGER:add_event(Event({
                trigger = 'immediate',
                func = function ()
                    if card.ability.extra.ee_mult and card.ability.extra.ee_mult < 1 then
                        SMODS.destroy_cards(card)
                    end    
                    return true
                end    
            }))
        end
        if context.destroying_card and context.destroying_card == card and card.ability.extra.ee_mult < 1 then
            return {
                remove = true
            }
        end
    end
}

Your ends were misplaced, this is a fixed version.

wide mulch
#

hello modding general

#

does anyone have a zip of all the vanilla jokers, consumables, enhancements, and seals as separate images

#

ideally with seals and enhancements coming with their backs

#

or do i have to get ai to make me a wiki scraper

tall perch
#

There are online tools like https://ezgif.com/sprite-cutter where you can input a spritesheet and split it into individual images. Probably easier than making a whole program to scrape the wiki.

wide mulch
#

where are the spritesheets at

#

i already made myself a spritesheet cutter a little bit ago in rust

#

like 6 months ago

#

but i know that the spritesheets show the enchancements and the seals without the backs which i want them with

#

and i want the images to be their actual names for the files, so the wiki scraping makes sense

#

cba to name all 150 jokers lol

#

wait

#

im the goat

#

this was already done for a project ages ago lol

muted glacier
#

Don't forget to drink water

cloud willow
wicked jasper
proud meteor
#

does this look fine LMAO

muted glacier
#

Idk

proud meteor
exotic belfry
peak monolith
#

wireframe/neon jimbo

cloud willow
hardy brook
#

Hey quick question: is there something different between Lovely on Windows 10 vs Lovely on Windows 11?

proud meteor
#

it upgrades before the glass breaks xd

#

but if bloodstone for example triggers, it upgrades after the card is played

#

also it triggered before gros michael expired it's so weird

desert mirage
#

i love it!

hardy brook
#

Public Playtest time

#

I promise you, there's no Mr. Beast Scam

steel horizon
#

What do i do if talisman crashes my game on launch

#

Only when i remove the omega limit tho

gusty mantle
worn rain
wicked jasper
#

gravitas?

worn rain
#

my mod

#

it has a cardarea in the same exact spot has cards that trigger the same ways except it has a deck as well rather than only one card

#

pretend i send a pondering emoji i don't have one here

wicked jasper
#

i see

worn rain
wicked jasper
#

i also have ones that use buttons

worn rain
#

that's dope

#

i probably would've ended up doing that although i decided it was more interesting in the moment 2 do cards that activate when they're rerolled instead

wicked jasper
#

there's a t2 voucher to let you have 2

worn rain
#

same with mine hkdhfjg

wicked jasper
#

also, since they're all based on ocs, they're gonna have bios in the collection

worn rain
#

that's neat

#

chicot with aura

wicked jasper
#

woa

worn rain
#

old clip cuz i can't get to my pc

#

was very wip and a little jank i wanna rewrite a ton of shit but im genuinely just not good enough to do it alone I think

#

now that I think about it I should probably just join here on main

brazen junco
crisp mountain
#

does any1 know if theres a mod that lets you have your deck skins pick randomply from favourite ones each run

sage yarrow
#

lol that 2v2 mod guy came to our discord for PWX and tried sharing it there under our self promo channel and I was redirected here to look into it being suspicious… needless to say I booted that shit out of the server so fast until they can prove it’s safe (primarily make a GitHub for it or have the mod dev make one) plus they shared it as if it was their content as it was in a SELF promo channel, would def recommend people we very wary of them and their links/files

ancient sinew
#

we're probably going to need someone to test a version of the 2v2 mod made by its actual dev and the one this user is distributing

buoyant otter
#

I've been struggling with this "global_splash" error for a while, even afte rupdating.

undone oriole
#

be patient

buoyant otter
#

thx. Just...asked for help on this like 3-4 times now over this week.

river spade
#

is there any mods that help with stability / more detailed crash messages?
(as someone playing with mods and mixes some together in weird ways, just to speed up the process of testing if things work and what's the source of problems)

cloud willow
thorny dust
wanton rapids
#

no

river spade
crude verge
#

The only things i was able to draw today, day eated my time up

steel horizon
#

I genuinely hate this game

#

Changing 5 joker textures is so fucking annoying

steel horizon
#

I FINALLY made it work

glad frigate
steel horizon
gilded comet
#

finally unlocked all the sleeves for the vanilla decks

#

that took a bit of grinding lol

thorny dust
#

bro actually grinded for card sleeve?

lost bolt
#

this should probably say ????? if you havent discovered/unlocked cavendish yet, like the vanilla unlocks

gilded comet
#

and then win with every single sleeve+same deck combo

#

cause they give a unique bonus if you use them with their deck

#

and some are quite wild

#

like erratic radomizes hands, discards, starting cash and joker slots from between 3 to 6 each

#

so you could get 6 of each if you get really lucky or 3 of each if you got really unlucky lol

hallow hound
#

I just edited the Chariot shop reroller mod to not use steamodded (at the expense of it not being adjustable) to make rerolling for double tags in extreme hi score runs less painful and I feel really stupid for not doing this weeks ago

rain orbit
#

Guys what would be the conceptual opposite of foil

#

The opposite of polychrome is achromatic and the opposite of holographic is matte in my mod

#

All I have left are foil and negative

undone oriole
thorny dust
undone oriole
#

-1 joker slot

thorny dust
#

ambered

undone oriole
#

going from encased in something to encased in something doesn't sound like an opposite

thorny dust
#

foil isn't actually encased tho

#

or freedom lmfao

rain orbit
hardy brook
#

Okay I need some opinions on this

#

Damn, no poll function

#

Uh...

#

If Green Joker was +2 Mult/-3 Mult, $5 Cost, and Uncommon Is that...

balatrojoker: Too Powerful
golden_joker: Not Powerful Enough
blueprint: Just Right

#

And explain why it is over/underpower and/or how you would balance it with an @ to me.

hardy brook
#

Yes

undone oriole
hardy brook
undone oriole
#

yeah I've seen, it's a fun change imo

#

grimbo already goated as a common

hardy brook
#

I know some stuff is broken from the bugs section they put but I wanted to know what other fixes/changes I need. I also want to try and get some other people on the project eventually

#

That way it's not just me working and bouncing ideas

undone oriole
#

i want to work on an ongoing mod that's not just my own and by myself

#

challenge impossible

#

make art people say is great, never get asked to join..,

hardy brook
#

You wanna work on parallel update then?

#

I mean I do make art too but having extra hands on it would be nice

undone oriole
#

sure i don't know how much i could do but id like to try
haven't been very creative at all since february so i gotta break out of it

hardy brook
#

Aight. I definitely want to update Green Joker's look a little to make it look a bit more professional

#

Y'know...

hardy brook
#

I still want to have that background like Blue Joker (y'know as a parallel) but i just wanna make the joker itself look nicer

undone oriole
#

gonna give it a whirl

lost bolt
#

me when i pondering

undone oriole
#

be back in 30 probs

#

i don't usually take longer than that for cards

lost bolt
#

i do also need an artist for reasons

undone oriole
#

me when im pondering again

proud meteor
lost bolt
#

like for example we add card-type jokers (like red card but a different color, and a different effect that does something with booster packs or skipping) but i think the idea just didnt pan out to an interesting experience so we're reworking them to have more unique effects and designs

peak monolith
proud meteor
#

hmm it looks too dark in-game

peak monolith
hardy brook
peak monolith
#

because if you get burgler it scales FAST

#

cause no discards

undone oriole
hardy brook
#

Okay but that’s one scenario

#

I don’t wanna drop it back to +/- 1 btw

peak monolith
#

maybe make it 7$cost

lost bolt
#

on one hand, it being uncommon makes playing lower ranking hands less consistent

#

on the other hand if you get it, it becomes easier

hardy brook
#

$7, ok

alpine cosmos
#

7 feels too high

#

6?

peak monolith
#

yea

hardy brook
#

6? Ok

peak monolith
#

6

lost bolt
#

6 or

hardy brook
#

Btw, so Joker name previews

#

Hood and imposter are from 1.B

#

And that’s already almost a page of jokers

#

I typically try to stay in that goal range but may need to do more with the new enhancements and consumables

peak monolith
limber oak
peak monolith
#

no its just not finished

#

well uh

limber oak
#

im not wrong tho

peak monolith
#

it kinda does look like stencil but again its not finished

undone oriole
woven orchid
proud meteor
undone oriole
#

i moreso meant for the background

proud meteor
#

oh right!

#

I kinda went for something similar to pareidolia

#

but blue instead of green

undone oriole
#

idek anymore vro

proud meteor
#

my headcanon is that jimbo is transmasc and his driver license has his deadname, jen

undone oriole
#

anyway I spent way too long on this card

undone oriole
woven orchid
limber oak
#

green is silly

lost bolt
proud meteor
undone oriole
#

one of like, 3 cards ever that I've taken over an hour to make

limber oak
#

sometimes i get the weirdest suggestions

undone oriole
#

why is your chat in pusab

#

that's too much brainrot u gotta hop off gd

limber oak
limber oak
woven orchid
#

the mod is just rot

#

there is no brain

limber oak
undone oriole
#

the latter is insanely funny because i have a thousand hours in gd

woven orchid
#

i have 2,000 and am probably worse than both of you

undone oriole
woven orchid
#

this is not a thing i should flex

woven orchid
#

yes boring everyone beats it but it was fun

undone oriole
#

lizzie you can't be mean to people for lacking skill you can't do it lizzie

limber oak
#

meanwhile me here with theory 2

woven orchid
#

you can be mean to me

undone oriole
#

when you said nine circles hardest after 2000 hours i almost burst out laughing

woven orchid
#

ok ok let me explain

#

when i was a young jit i would play gd relentlessly but i would only really play like up to 8 star levels

#

and i was also a stupid young jit so i would leave the game on overnight really often

limber oak
#

oh i primarly build levels

undone oriole
#

honestly gd community fucked me in the rear so i don't really like that game anymore
i rebeat cata and quit

woven orchid
#

i think my skill is fairly higher than nine circles but i have not picked another level to dedicate time towards

undone oriole
#

classic

woven orchid
#

i found its gameplay pretty nice so like i found it easy to spend my time practicing

limber oak
#

this is a certified hood classic

woven orchid
#

still looking for a harder level that is not unfun (FUTURE FUNK)

undone oriole
woven orchid
#

😭

undone oriole
#

one of my proudest moments

#

didn't die to the fucking timing

#

or the entire hard section at the end

woven orchid
#

i fluked all of nine circles lowkey
overpracticed the hell out of the wave and then went from 29% to 100% on attempt 2 of going from 0

#

which was really funny

undone oriole
#

i remember dying at the end on future funk like five times

woven orchid
#

cause i never practiced from 0

undone oriole
#

jonathangd seriously sucked at gameplay

undone oriole
#

meanwhile there's another level that I fuckin despise

#

i somehow managed to die at 99% on forsaken neon

woven orchid
#

oh boy i sure do hope i don't get tortured
torture factory

undone oriole
#

that's like the very end of the last straight , like i died to the last spike in the level

woven orchid
#

oh my god

undone oriole
#

and because that level is . Buggy as shit

#

I was fuming

woven orchid
#

like my profile post on gd

#

there is only one

undone oriole
#

i am not opening that game

woven orchid
#

life saved 💔

undone oriole
#

anyway do u think woke grimbo will make a billion dollars

woven orchid
#

i think probably a trillion

#

because trillion starts with tr liek trans

undone oriole
#

woahgg

lost bolt
#

what percent of the balatro modding community is trans

urban cypress
woven orchid
undone oriole
peak monolith
#

which eyes look better

urban cypress
#

the first one looks the best

peak monolith
#

top left?

#

or top right?

urban cypress
#

yea top left

woven orchid
#

right right left right

undone oriole
#

top left or top right both good

peak monolith
#

i like top right

urban cypress
#

top right makes jimbo look a little crosseyed imo

undone oriole
#

he's just a silly guy

#

can't a guy be a lil cross eyed

peak monolith
woven orchid
#

what if i was cross eyed

#

would that be so funny

urban cypress
woven orchid
#

yes it would be

peak monolith
#

ok so i have three jokers

#

i keep forgetting to upscale

#

bru

drifting kraken
#

Does anyone know if the cryptid achievement for having commit spawn the same joker it destroyed (Pull Request) is required to not be on the deck of Equilibrium?
Because I used it on a legendary and got the same one but no achievement

#

Video in 480p to be under 10mb for discord

peak monolith
#

the difference between downscaling jimbo and letting aseprite do it(i made the left one)

peak monolith
#

thanks

#

From left to right:
Low-res Joker
Low-res Collection
Low-res Wee Joker
Collection

idk what they do tho cause i just thought of what it would look like

undone oriole
#

mixels ough

peak monolith
#

where

#

what because the low res is 2x

#

that isnt mixels its just double pixel size

#

see

undone oriole
#

yea and that's mixels

peak monolith
#

how

#

well techneclly yes

undone oriole
#

it'll look like mixels next to everything else because it is mixels

peak monolith
#

but the point is that shrunk by 2 and then resized back up

#

its supposed to look wierd

#

i just thought of smth

#

so i made these two

#

what if i combined them

#

hmm it is too small for the effect to work

proud meteor
#

did you guys know satellite has a sprite error

fallow bramble
drifting kraken
peak monolith
#

i did know

proud meteor
peak monolith
#

and there are way more sprite errors in the jokers

peak monolith
#

yea 🙁

drifting kraken
#

THIS GAME SUCKS!

#

300 HOURS DOWN THE DRAIN

peak monolith
#

well it was made by a human

#

you can make a texture pack to fix them all

#

(like genuinly)

drifting kraken
#

Oh gee, actual work

proud meteor
#

I'm making a texture pack to make them all seals

peak monolith
#

what

#

which looks better

#

compared to these two combined

drifting kraken
peak monolith
#

yea

peak monolith
drifting kraken
# peak monolith

Upscaled that negative one does look good aswell
Think I prefer the first one still tho

proud meteor
#

is the neon edge detection joker a shader or an actual joker

drifting kraken
#

The left of the first image still

peak monolith
#

MANUALLY

#

shit caps lock

drifting kraken
#

Either that or it fell into a puddle of mud

peak monolith
#

hmm

#

i was just drawing jimbo in excel and so i thought it would be easier to outline where the colors go and then fill it in, and it gaveme the idea to see what it would ook like on normal kimbo(i have to draw overstaturated jimbo in excel cause limited colors and im lazy)

drifting kraken
#

Yeah thats fair enough

drifting kraken
#

I see

peak monolith
#

excel

#

1 sec i gotta resend the image to hide the private info

drifting kraken
#

Fair

peak monolith
#

cause because im using office because im in school the username is my legal name so yea

#

there

#

what should i draw in excel

peak monolith
drifting kraken
#

Literally nothing comes to mind

#

This is concerning

peak monolith
#

oh no

#

wait ima just look trough my multiple folders of hundreds of stupid random ideas in aseprite

peak monolith
#

this is unrelate but look

#

this is from when i discoveredb shading ink

drifting kraken
#

Interesting

peak monolith
#

this first looks like a coaster tbh

drifting kraken
#

Yeah that or a bottle cap
Kinda looks like a beach

peak monolith
#

i just found one of my favourite projects

#

wait why did i british the favorite

drifting kraken
#

Thats awesome, love tetris

peak monolith
drifting kraken
#

I don't know what that means

peak monolith
#

its a font

drifting kraken
#

Oh okay

peak monolith
#

for coding

drifting kraken
#

Ah cool

peak monolith
#

i found another(this i made)

drifting kraken
#

Nice

proud meteor
#

WHAT ARE YOU DOING DOWN THERE

drifting kraken
proud meteor
#

I spawned it through debugplus xd

peak monolith
manic summit
peak monolith
#

what do i call this and what does it do

lost bolt
#

what if it was like some sort of joker that like retriggered face cards or somethin...

#

that

#

is a joke, i dont really get the context of this joker

drifting kraken
# peak monolith

The second one could retrigger debuffed ones still doing nothing as debuffed do but it would be funny

peak monolith
#

wait

hard patio
peak monolith
#

thats actually a good idea

#

cause i made a joekr that gives mult for debuffed cards

peak monolith
#

or like split personality

drifting kraken
lost bolt
#

i'm pretty sure retriggers on debuffed cards are blocked unless you add a patch to make it not

peak monolith
#

but idk

#

i have a list full of random mod ideas

proud meteor
#

has joker that copies joker to the left been done

#

I'm sure it has but I don't know where

manic summit
peak monolith
#

like left blueprint

proud meteor
#

yeah figured

peak monolith
#

instead of right

#

?

proud meteor
#

yeag

#

I'm trying to come up with ideas with a wave themed joker but idk

peak monolith
#

for what mod

proud meteor
#

I'm making a lot of ocean themed jokers

manic summit
#

I need to work on jeans but my motivation is pretty low and I'm not really in the flow of coding recently

limber oak
#

someone sent this in the pwx server, im adding it to my meme folder

limber oak
#

you cannot hold it against me

thorny dust
#

i think i twisted my balls

#

pain

proud meteor
manic summit
proud meteor
#

weird but aight

hard patio
proud meteor
#

what about retrigger the last played scoring card

#

has that been done

#

(probaBLY)

manic summit
#

Even if it has just do it, not every mod has to be 100% unique to be good

proud meteor
#

what could a wave joker possibly do

hard patio
#

Kill you

proud meteor
#

there HAS to be a wave 100%

manic summit
proud meteor
manic summit
proud meteor
#

how would the game even know that

manic summit
thorny dust
#

too bad too sad

woven crag
#

IT IS VERY SAD

late spoke
lean dune
late spoke
#

this is for jokers

cloud willow
#

gm chat

lost bolt
unkempt current
toxic cloud
late spoke
#

no jokers add 1 hand size

#

its meant to be put on jokers

tardy sigil
hardy brook
oblique storm
#

why is my mod not loading????'
i have it in my smods folder
it aint nested
what the fuck

lost bolt
#

is it listed as a lovely mod?

cloud willow
#

shouldnt

oblique storm
cloud willow
#

hmm

#

send you main.json or whatever u called it

#

metadata

oblique storm
#
{
  "id": "wheeloff",
  "name": "Wheel of Fortune",
  "author": [
    "TheBruv"
  ],
  "description": " the worst balatro mod. formerly made with joker forge.\n",
  "prefix": "wheeloffortune",
  "main_file": "main.lua",
  "version": "1.3.0",
  "priority": 0,
  "badge_colour": "c7b24a",
  "badge_text_colour": "FFFFFF",
  "dependencies": [
    "Steamodded (>=1.0.0~BETA-0827c)"
    "Amulet (>=3.3.2)"
  ]
}```
cloud willow
#

hmm

#

what it look like ingame

#

like in the modlost

#

mod list

oblique storm
#

itdoesnt appear

#

what the fuck

cloud willow
#

at all?

oblique storm
#

yes

#

did i fuck something up??????

cloud willow
#

can you send your mods folder

#

and then the folder of your mod

oblique storm
#

its in the mod folder

#

with literally every other one

cloud willow
#

send it please

oblique storm
#

aand the chat goes wild

#

wow

lost bolt
limber oak
woven crag
#

you do

limber oak
#

this is silly

calm topaz
#

will that work that steel cards give x3 mult or what

woven crag
#

this is not valid json syntax

cloud willow
undone oriole
#

wasup

woven crag
calm topaz
cloud willow
# oblique storm aand the chat goes wild

something is messed up
it would help if you sent all the information we requested
it may have been possible you messed something up without realizing
troubleshooting is a lot easier when we have the information needed

oblique storm
#

yeah it was the sngle comma

#

it was literally just one (1) (singular) comma

#

fuck

#

fuck this shit vro

lost bolt
#

i think theres a website thatll let you check json syntax

ember flicker
late spoke
#

the rarities are supposed to be swapped...

oblique storm
#
Gives {X:red C:white}X#1#{} {C:red}Mult{}```
 how can i make it so variables can be highlighted
late spoke
#

any ideas for a joker?

molten laurel
undone oriole
keen knoll
#

also every time a card is scored play a ding noise

frigid mica
late spoke
#

idk what to do for this one either

#

nor this one

ashen blaze
#

ts is insane

unkempt current
#

The shenanigans

storm crown
#

anyone knows any mods that can help track which jokers i have gold sticker on and which i dont? im too lazy to check it manually

storm crown
#

i have the stickers showing on jokers enabled, i just assumed that there could be a mod that can make tracking my progress easier? (since vanilla counter that counts EVERY sticker is weird)

ashen blaze
#

started lagging so bad its doing the invincible wobble animation

toxic cloud
#

there are Google Spreadsheet templates on the internet you can make a copy of

thorny dust
thorny dust
# late spoke nor this one

make it scale extremely fast like +1 mult every 0.1 second and after 5-10 minutes it resets but its now 0.1 xmult every 0.5 second or smt

late spoke
#

also what are your thoughts

winged prism
#

At least uncommon I think?

#

Certainly not common

#

Or does it have like

#

A Cavendish-like condition for appearing

late spoke
#

you need to break gros michel for it to appear

#

so its like a side joker

#

to cavendish

winged prism
#

Idk that's whole ass 60 Mult without counting other stuff

lost bolt
#

i've had something like this and its actually not that amazing

#

Well if it was 60 mult

#

It being both Plus and X is kinda crazy

#

But in comparison to cavendish it breaks so much faster so

cloud willow
eager wing
#

hi i need help with deck builder mod can someone please?

junior rock
cloud willow
eager wing
#

and is there some mod that could do same?

cloud willow
#

its not very stable though

eager wing
calm topaz
#

this is equivalent of the baroan run in pokermon

#

i dunno

cloud willow
calm topaz
#

it's my 3rd run playing with this mod

cloud willow
narrow lily
wraith elm
calm topaz
wraith elm
calm topaz
narrow lily
cloud willow
wraith elm
lost bolt
cloud willow
#

theres a reason mine is still unstable despite being worked on for several weeks

narrow lily
wraith elm
late spoke
#

shader

toxic cloud
#

what is this junk build 😭

#

one-shotting ante 8 blinds at ante 2

latent crescent
#

I mean you have 5 negative spacemans

rain orbit
#

I put cayenne pepper and chili powder in scrambled eggs

proud meteor
#

how much mult would a joker need to give for it to have the same value as a joker that gives 200 chips? (in your opinion)

sterile nymph
#

oh dear

carmine prawn
#

-# Oh hey~ :3

#

Oh Wait lewxen_Teary_Laugh

latent crescent
#

Flowire spotted Lumaflute

carmine prawn
#

Always slowly working on it's mods... Slowly slowly indeed~ AE_SylveonGiggle

long bobcat
#

I ADDED ALL MODS WITH THEME I WANT YAY

long bobcat
#

UnStable not just works with paperback amazingly but also

#

It has Hanafuda themed joker~

#

Which is also win in my book

rancid nexus
#

i wonder if The Deck of Many Things from D&D could work nicely in Balatro, with some adjustments to match mechanics

karmic compass
#

ok im getting a hang of the basics of how you're supposed to use main_end i think

winged prism
#

Yay ui ya y ui

karmic compass
#

would've prefer getting it to work with multiple boxes but it is certainly better than always having blank lines

limber ravine
#

yo guys when im loading up through the balatro mod manager i keep getting this and my game crashes

#

these are the activated mods

rugged sonnet
#

what is the optimal pizza slice selling with pizza

#

so which will give the most total xmult

#

do i sell all of them for one big one, for two, three?

#

how does the math go

#

in other words how many pizza slices should i sell

woven crag
#

i forget

#

anyway if its 6 you should sell 2

frigid furnace
#

Pizza slice?

#

Which mod is that from

mystic echo
frigid furnace
#

I see

woven crag
#

-# cryptid dev does not know the cryptid joker

#

(smh)

empty bay
frigid furnace
granite forum
#

i drew pizza and pizza slice for cryptid

wispy canopy
#

hey which of these do we like better

proud meteor
#

this good?

exotic belfry
#

I really like this actually

undone oriole
#

guess who just ate something that isn't plain ice chips for the first time since the 3rd of april

exotic belfry
#

W

undone oriole
#

also finished mediocre spritework

exotic belfry
#

That’s gas fym

#

Lizzie you underestimate yourself

proud meteor
late spoke
exotic belfry
undone oriole
wanton surge
#

noooo

#

Its nice

exotic belfry
#

Disagreed big time, it looks very clean. The shading is awesome and really sells the glossy look

undone oriole
#

i keep looking back at balacats and i think this might be one of, if not the best background I've ever done for a balatro card

#

and yet it's so rough

#

u can see my random brush shapes

#

😭

wanton surge
#

its still nice

#

I like 👍

#

also I feel like its universal for artists to not like their art (even if it is amazing)

proud meteor
late spoke
#

im so amazing

limber oak
proud meteor
#

my boys, the club penguin one makes me laugh every time

exotic belfry
#

Jimbo over a penguin looks like a fat bean

limber oak
#

oh yeah im also gonna share this again cuz thats fun

#

music goes silent

proud meteor
limber oak
undone oriole
limber oak
undone oriole
#

i m like oml dandys world balatro mod

#

I'm crine

limber oak
#

iso aint picking up they slack so i decided to pick up mine

undone oriole
#

there's tuah them ...??

cloud willow
limber oak
proud meteor
#

I have an idea for a boss blind called the shark where every played scoring card has a 1 in 4 chance to get destroyed would that be too annoying

proud meteor
#

as a boss blind 🤓 ☝️

limber oak
# limber oak

also unlike dandys world balatro which adds the dyle ticking sound to the main music
gardenview uses the sound raw

undone oriole
#

I didntnknow there was a dandys world balatro mod.let alone two

limber oak
#

you won't believe this

limber oak
#

i got the dandy plush :P

undone oriole
lost bolt
#

theres two bfdi balatro mods too

limber oak
#

one because the other one is made in jokerforge

wispy canopy
limber oak
#

so mine auto-wins

wispy canopy
karmic compass
wispy canopy
karmic compass
#

that's a phone screen recorder bubble

limber oak
#

kill that person

undone oriole
karmic compass
#

anyway i have made another stupid joker

#

it's like obelisk but worse

limber oak
# undone oriole those r valid

theres two gd mods but mine auto-wins and is instantly the only one that exists because the other one (which focuses on the memes while mine focuses on the actual game) is made in jf

undone oriole
karmic compass
#

ive finally figured out how to do the mainend thing i've always wanted to do

#

it doesnt look quite correct but it's good enough

woven crag
#

high card gaming

karmic compass
#

13 if you sneak in a stone card

woven crag
#

why maximum 12

karmic compass
#

so pretty good but not too far off vanilla stuff

woven crag
#

is it always the same restrictions

karmic compass
#

13 ranks

#

if you only play high card it's maximum 13 hands before every ranks will be banned

woven crag
#

oh its based on the contents of the played hand

karmic compass
#

first hand of cycle doesnt get the xmult since it's only incremented after hand is scored

#

so 12 cycles of xmult

karmic compass
limber oak
karmic compass
#

it might restrict a suit, a rank, or it could ban Flushes, or it could ban playing a card with editions, or it could ban playing an unscored card

#

but then it resets so it's like obelisk but worse but also more lax

limber oak
karmic compass
#

i would assume pretty likely

#

to be clear, when it resets, it also lift all restrictions

woven crag
#

and isnt related to gd

#

or is that another mod

muted glacier
#

Dont forget to drink water

limber oak
karmic compass
#

thank you alchile for the reminder

woven crag
#

thats not even gd though

#

is the point

limber oak
#

also its like, my mod and i dont want to be insanely strict about theming