#⚙・modding-general

1 messages · Page 597 of 1

vernal hare
#

🥶

dire trail
#

abstract

wooden elk
#

lol this is my experience with terraria too

deft ore
#

boss blind idea: just debuffs baron and mime

#

what do we think

wooden elk
#

i have more hours on tmodloader than vanilla terraria and that isn't because i was playing with mods but because I was making my own

dire trail
wooden elk
#

effectively

deft ore
whole nova
#

but yeah 42 jokers, 24 consumables, 15 blinds, 2 enhancements, 3 new card modifiers, 4 tags, etc adds up to a pretty huge amount of stuff we've added lol

deft ore
#

this specifically counters baron-mime

wooden elk
#

got dam, nice

deft ore
#

plant counters trib as well

vernal hare
#

mothership eating good

stark shale
#

smh... a blind that hates gay people??? shame

wooden elk
#

ive got 20 jokers, 2 spectrals, one tarot, 3 boss blinds, 1 new enhancement, and an upgrade mechanic that lets you improve common through rare jokers to be about on par with legendaries

#

also one deck

dire trail
whole nova
#

we're approaching morefluff levels...

wooden elk
#

the last couple features i need to add before i drop my next update are a couple new jokers, a tarot with 2 enhancements attached, and mayyyyyybe a couple of visual enhancements to vanilla

whole nova
#

the 24 consumables in lucky rabbit are a completely new type which i'm super happy with

wooden elk
#

i love visuals, particle effects are kind of my Thing

wooden elk
whole nova
whole nova
#

they're really nice

#

silly packs are very fun lol

#

they're generally focused around the idea of the circus and clowns

vernal hare
#

did i win guys

whole nova
#

they're also the way to get the mod's enhancements and card modifier called markings

wooden elk
#

nice! i got a concept for a consumable type myself

whole nova
#

i don't have a screenshot on hand but they're chill

whole nova
vernal hare
#

ooh we talking about custom consumable types?

vale socket
#

Hi, is there a Balatro mod that improves startup? I know I'll sound lazy, but I don't like hitting the R key every time hoping for a good run.

whole nova
#

yee

dire trail
#

consumable type gang

wooden elk
#

trick cards: temporary one-hand consumables that have multiple uses

whole nova
#

ooh that sounds cool

vernal hare
#

i have ritual cards

whole nova
#

silly cards are focused on being vanilla+ so they don't really add new mechanics, moreso a bridge between spectral and tarots in a way

wooden elk
#

for instance, one that might cause you to force-draw 4 extra cards, 3 uses

vernal hare
#

lots of placeholder art but

whole nova
#

getting silly card screenshots rn to show off lol

wooden elk
#

im definitely trying to slot my concepts in with vanilla's balance and gameplay but im abiding by a philosophy that i call "vanilla++"

dire trail
whole nova
#

i think i remember seeing their old art

vernal hare
#

here's one

wooden elk
#

probably sounds a bit pretentious but it basically means I strive to create something that works with vanilla but also stands out aesthetically

fair thistle
#

first try!

vernal hare
#

its influenced by risk

dire trail
fair thistle
#

if it failed it wouldve killed all my jokers

#

spoiler for why i did it so recklessly: ||i have one of the secret zenith jokers and what it does is let me make exotics and entropics with pointers while giving me pointers||

whole nova
fair thistle
#

anyways what arbitrary code should i execute

whole nova
#

a silly card for reference

fair thistle
#

should i go to ante negative 999999

dire trail
fair thistle
whole nova
#

or an enhancement example

wooden elk
fair thistle
#

to the first thanksgiving

#

to get turkeys OFF the menu

whole nova
wooden elk
#

what does soully do lmao

whole nova
stark shale
#

when the secret spectral

wooden elk
#

ohhhh fair enough

whole nova
#

has the same chance as the soul

#

to show up

wooden elk
#

yea that's the case for my upgraded jokers

#

you can get a special soul type card called Rune, it shows up either in spectral packs or buffoon packs

whole nova
stark shale
#

when is the secret silly spectral

whole nova
#

animation is slightly different from that of the soul

whole nova
whole nova
#

never said it the first time i saw lol

wooden elk
#

hell yeah

stark shale
wooden elk
#

so far there's an attuned form for scholar, splash, cavendish, regular jimbo, all four sinful jokers, scary face

#

and im probably gonna have one for chaos the clown in the coming update

whole nova
#

attuned legendaries would go crazy

wooden elk
#

attuned legendaries are not happening I think that would be too busted

hard plank
#

what

deft ore
wooden elk
#

if I do make an attunement for a legendary it will probably be chicot

deft ore
dire trail
#

oh hey aiko

hard plank
#

hi

wooden elk
#

chicot 2
x2 mult
disables all boss blinds
if played hand would otherwise trigger a disabled boss blind, this card gains x2 mult

deft ore
#

matador if it was chicot and also an xmult joker

hard plank
#

pretty special...

dire trail
#

chicot 3
kills all boss blinds

deft ore
#

skip all the way to ante 1000

wooden elk
#

chicot 4
when you reach ante 2, win the game and get $4,000,000 in real life

dire trail
deft ore
#

chicot 5
disable your boss politicians irl

dire trail
#

chicot 6
immediately ascend

deft ore
#

to where

hard plank
#

believe in magic

dire trail
wooden elk
#

chicot 7
fuck it. this card just causes the rapture

deft ore
#

this is a balanced challenge right

#

probably easier than jokerless

wooden elk
#

truly

fair thistle
#

aaaaaaand infinite pointers forever

whole nova
#

it's so peak...

fair thistle
deft ore
deft ore
fair thistle
#

it is easier. just not on the mind because holy shit ive lost my mind at 30 antes

#

i could tell

dire trail
#

the joker that instantly teleports you to the nearest casino

deft ore
#

you can play this as practice instead

vernal hare
#

I LOVE MY MOD I LOVE OVERCLOCK

terse portal
#

road to beat ante 100 😭

vernal hare
deft ore
terse portal
#

denial did not save me

obsidian delta
#

It begins

hard plank
#

it starts with one thing

terse portal
vernal hare
#

yall wanna see the function i made to change the card vals

#

(please say yes im so proud of it)

deft ore
#

yes

vernal hare
#
function CHAR.FUNC.recursive_apply_num(table, modi, op, visited)
    visited = visited or {}
    if type(table) ~= "table" then return table end
    if visited[table] then return table end
    visited[table] = true

    for k, v in pairs(table) do
        local current_value = table[k]

        if type(current_value) == "table" then

            CHAR.FUNC.recursive_apply_num(current_value, modi, op, visited)
        elseif type(current_value) == "number" then

            local is_old_key = type(k) == "string" and k:find("^old_")
            if not is_old_key then
                table['old_' .. tostring(k)] = current_value
                table[k] = CHAR.FUNC.op(op, current_value, modi)
            end
        end
    end
    return table
end



function CHAR.FUNC.change_card_values(card,mod,operation,reset)


    -- OBJECTIVES --
    --[[ the conventionally changable card values are stored in config, or ability.
    I'd rather use ability as that's going to ensure the values are reset when the run is.
    I need to 'scan' ability for certain values, throw out the base game ones that have no influence on how the card actually works,
    then change them through mod, and 'save' the original values for later reapplication. Perhaps by prefixing the original values with old_?
    so I need to save the card's ability table temporarily, probably manually check for things that all cards have, then only change the leftovers,
    then finally tack it back onto the card.
    ]]
    local old_table
    if card then
        old_table = card.ability

    else
        return
    end
    if reset then
        if type(old_table.extra) == 'table' and old_table.extra.flag then

            local curr_val = {}
            for k, v in pairs(old_table.extra) do
                if not k:find("^" .. "old_") and type(old_table.extra[k]) == 'number' then
                    curr_val[k] = v

                end
            end
            for k,v in pairs(curr_val) do
                old_table.extra[k] = old_table.extra["old_"  .. k]
            end
            old_table.extra.flag = nil
            return old_table
            else if type(old_table.extra) == 'number' then
            if old_table.old_extra then
                old_table.extra = old_table.old_extra
                return old_table.extra
            end

        end
        end

    end
    if type(old_table.extra) == "table" and not old_table.extra.flag then
        old_table.extra = CHAR.FUNC.recursive_apply_num(old_table.extra,mod,operation)
        old_table.extra.flag = true
        return old_table

        else if type(old_table.extra) == 'number' then
            old_table.old_extra = old_table.extra
            old_table.extra = CHAR.FUNC.op(operation,old_table.extra,mod)
            return old_table

    end

    end
end
whole nova
dire trail
vernal hare
#

I FUCKING LOVE RECURSION 🔥

dire trail
#

when are we getting Balatro Kaycee's Mod

vernal hare
#

its basically just going into ability.extra and changing all of the number values

#

which, if a mod is coded right

vernal hare
#

should boost it up

hard plank
#

Minecraft

obsidian delta
dire trail
#

me resetting balatro until i get ring worm and campfire ante 1

#

god imagine skull storm in balatro

hard plank
#

statements dreamed up by the utterly deranged

#

@terse portal development

vernal hare
#

im gonna make a legendary called 'maximum overdrive' that squares joker values

deft ore
#

looks easy

#

first person to guess what i did to it wins absolutely nothing

dire trail
vernal hare
hard plank
#

dubious design

dire trail
#

and its erratic deck

vernal hare
hard plank
terse portal
hard plank
#

but development

vernal hare
#

wait

#

they never said they did anything

#

you did nothing

deft ore
#

wrong

stark shale
#

you just win at ante 2

dire trail
#

both antes have showdown boss blinds

stark shale
#

they banned something

deft ore
#

its significantly harder than it looks

stark shale
#

they just didnt show it yet

vernal hare
#

mult and chips are crippled

real dock
#

someone knows how I join the balatro multiplayer server

#

🥺

stark shale
#

op are just being sarcastic

real dock
deft ore
#

the rules are exactly what it says

#

theres nothing hidden in the rules

#

aikos first guess was close

hard plank
#

you become bri ish by the end

terse portal
# hard plank but development

if there’s a way to store preexisting joker’s effects, then I can start on 8.

I’ve already filed a bug report to steamodded for number 9, so all I can do rn is wait

deft ore
#

im not that good of a modder yet

dire trail
#

all hands are debuffed except high card

deft ore
#

cant turn people bri ish

stark shale
#

you have a standard 52 card deck

hard plank
#

wdym yet

deft ore
#

i have something in the works

dire trail
#

all cards are 3s

stark shale
#

you have ateast 2 suit

#

1 suit?

#

???/

#

0?????????

terse portal
stark shale
#

you have nothing???????????????????

dire trail
#

one stone card

vernal hare
#

deck of stone cards

deft ore
#

this is what i did

#

there is no deck

vernal hare
deft ore
#

its theoretically possible to beat

dire trail
stark shale
#

yeah it easy i can just

deft ore
stark shale
#

play none

terse portal
stark shale
#

from cryptid

deft ore
terse portal
#

me too speed_im_watching_ur_stream

deft ore
#

this ones easier cause its ante 2

#

but also harder cause no magic deck

stark shale
#

with my modpack it's easy asf

deft ore
stark shale
#

or do i

#

?

terse portal
#

you do

deft ore
#

you need to get some source of mult and either marble joker or certificate

hard plank
#

development....

deft ore
#

in an arcana tag

#

from judgement and fool

#

good luck

stark shale
#

send] challenge

#

rq

hard plank
#

there's gonna be random tag out there that just gives random shit

terse portal
#

DELETE THIS challenge when

#

….writing this down ….

hard plank
#

development

deft ore
# stark shale send] challenge
SMODS.Challenge{
    loc_txt = "Easy...?",
    key = 'easy',
    rules = {
        custom = {
            {id = 'win_ante', value = 2},
    },
        modifiers = {},
    },
    jokers = {
    },
    deck = {cards = {}},
    restrictions = {
        banned_cards = {},
        banned_tags = {},
        banned_other = {}
    },
}
#

needs challenger deep

terse portal
vernal hare
harsh glacier
real temple
#

hi, im downlanding cryptid mod and i have an error in the game code

hard plank
#

the cryptic mod

terse portal
#

how…. Cryptic….

whole nova
#

i've discovered the most insane unintentional synergy

real temple
whole nova
dense egret
deft slate
#

Having multiplayer mod and trying to play single player causing crashes rn?

grand geode
# vernal hare

+1 chip for every unique site in your browser's search history

terse portal
whole nova
terse portal
#

kafwoosh

whole nova
#

it's slightly overpowered but so fun

terse portal
deft slate
#

I have multiplayer mod loaded, click single player, game crashes out. 👀

#

I don't even get an error like usual, lol.

terse portal
#

Car

sleek granite
#

minor deltarune ch3 spoiler

dense egret
real temple
stark shale
#

amazing

terse portal
whole nova
#

it's such a fantastic synergy that i'm keeping it in regardless of how non vanilla+ it is

terse portal
#

trans rights ftw

whole nova
#

trans people = infinite mult

hard plank
#

trans people

terse portal
#

can confirm

whole nova
#

it quickly gets a bit absurd

hard plank
#

pls nerf not only they can double jump they call also gain infinite mult by existing smh

terse portal
#

not enough

stark shale
#

a very goodstart

harsh glacier
#

ortalab tomorrow

dense egret
#

nuh uh

stark shale
#

what is god tier

whole nova
#

jockington

#

they all have +40 good lord

deft ore
whole nova
#

jockington gif

terse portal
shadow citrus
#

is the card sleeves mod not working for other people?

hard plank
#

chapter 2

deft ore
#

what does set_edition do

whole nova
#

when i streamed deltarune to my friend in vc i did every voice myself radio play style

deft ore
#

wait sorry that stupid

whole nova
#

queen's was very fun to do

deft ore
#

what parameters does it take

queen goblet
#

I've been playing Balatro for awhile now but I just heard about modded versions. I read in the rules not to mention modding other platforms, but I'm just a little confused about how modding works and how to do it and what's available. I only play on iOS through Apple Arcade, so o assume that means I don't have the ability to play any modded versions? (I'm autistic and have a language disorder so I'm not trying to mention anything I shouldn't, just trying to understand and will delete if this question is not ok)

stark shale
#

well shit

deft ore
hard plank
#

oops

real temple
#

i solved the talisman mod problem, and what is happening now 😭

hard plank
#

my boss

deft ore
#

dont get fired

shadow citrus
dense egret
whole nova
queen goblet
# deft ore yes. you can only mod the steam version

Oh ok, thanks. I wasn't sure if you couldn't change anything about the iOS version like in coding but somehow would be able to play one that was created for pc on iOS. I'm not sure how my brain came up with the thought that would EVER be possible, but I figured I'd ask

shadow citrus
hard plank
wooden elk
whole nova
wooden elk
#

id advise against it even if it is possible, seems like a hassle and a half to figure out

whole nova
#

yeah it's not exactly easy lol, and i'm also unsure if it even works on ios

wooden elk
#

that said , do consider getting balatro on PC! lots of cool mods

dense egret
shadow citrus
shadow citrus
knotty sierra
#

Can anyone suggest me some mods to try out, I've liked the ones I have tried but I wanna play more :e

shadow citrus
dense egret
queen goblet
nimble scarab
#

where does the mod button show up

dense egret
dense egret
#

you have lovely and smods installed?

queen goblet
# shadow citrus don't blame you on that

I tried desperately like a year ago to update it from windows 8, but was unfortunately JUST past the point of being able to without having to actually buy the new version of windows, which o sadly can't afford at the moment.

nimble scarab
hard plank
wooden elk
#

there's some crazy shit people r developing for this game man

whole nova
shadow citrus
dense egret
hard plank
wooden elk
nimble scarab
wooden elk
#

my mod is called SuperFine, it adds a few things (probably not super fun on its own yet cuz not much stuff in it)

#

anyways

queen goblet
# shadow citrus windows 11 is the current version

Yea, but windows 8 WAS able to get a free update to window 10, which you could then update to 11. But once the free update to 10 was gone, there was no way of doing it after speaking to Microsoft for like 4 hours 3 separate times 😂🤦🏼‍♀️

wooden elk
#

Grab Bag, Bunco, All In Jest, Paperback, Ortalab, Yggdrasil, Balatro Goes Kino

hard plank
wooden elk
#

etc etc etc

#

also Lucky Rabbit but that has already been mentioned

wooden elk
#

also have u tried Yahimod @.the_broken_fox

#

funny as hell

stark shale
#

Ortalab tomorrow

deft ore
#

yahimod my beloved

dense egret
nimble scarab
wooden elk
#

yahimod inspired murder joker, my greatest work

dense egret
knotty sierra
deft ore
#

chat what do we think

wooden elk
#

because I'm a VISIONARY!!!!!!!!

dense egret
wooden elk
#

and there's no mods button?

knotty sierra
nimble scarab
wooden elk
#

yeah, by all accounts this looks like it should work

#

and you're on windows 10? 11?

nimble scarab
#

11

deft ore
#

open the smods folder

wooden elk
#

either of those should have no problems

dense egret
nimble scarab
#

idk what that means

vivid flame
wooden elk
vivid flame
#

Normal is Mods> SMODS > Files

wooden elk
#

because if so you need to extract that single folder out into smods-main

dense egret
nimble scarab
vivid flame
wooden elk
#

where is this located yea

deft ore
nimble scarab
deft ore
#

yeah this should work

vivid flame
dense egret
#

you buy balatro from steam?

nimble scarab
vivid flame
wooden elk
#

i actually can't think of a reason why this wouldn't work

#

damn

deft ore
dense egret
deft ore
#

and a challenge that makes you beat ante 1000

nimble scarab
#

wait yeah its working now

dense egret
#

from where you install lovely and smods?

wooden elk
#

yippee

dense egret
wooden elk
#

yeah, if it continued to not work then it'd be out of your hands

#

that's the correct setup

plush hound
#

development resumes tomorrow

wooden elk
#

so if it refused still, that wouldn't be your fault

dense egret
#

thats was rare ngl

wooden elk
#

well it worked out, so

#

no harm no foul

wooden elk
nimble scarab
#

Thanks

wooden elk
#

might I suggest the Handy mod for quality of life stuff

#

doesn't add anything

dense egret
deft ore
#

handy is always there for you

wooden elk
#

just changes some small things like you can click and drag to select multiple cards, etc

deft ore
#

quick everyone promote their own mod

nimble scarab
#

Real

wooden elk
#

nope! i refuse this time

#

it's in my username, I already shill it by typing messages here

dense egret
deft ore
#

fair enough

#

as soon as my textures are done i'll join you

#

until then i get to be SMODS.Fool

hard plank
wooden elk
#

i will however shill grab bag for a moment

#

it adds purple jokers

dense egret
knotty sierra
wooden elk
#

heck yeah

#

okay fine I'll shill superfine. it adds like one purple joker i think

knotty sierra
#

Any significant conflicts with other mods

wooden elk
#

not that i know of

knotty sierra
#

And or should I run some of these solo

wooden elk
#

i don't think any mod is large enough to warrant a solo run except maybe cryptid

hard plank
wooden elk
#

id recommend using SuperFine in particular with other mods bc I haven't been working on it for much longer than a week, so it's barely got anything in it

#

what mods do u have?

hard plank
#

sorry

#

i recommend this mod

wooden elk
#

just so I know what'd be redundant to suggest @knotty sierra

deft ore
wooden elk
hard plank
knotty sierra
#

Not @ my PC rn so can't check

knotty sierra
wooden elk
#

ok so immediately Paperback comes to mind

deft ore
#

whats the max ante with talisman omeganum?

wooden elk
#

i love the trope of naming modding APIs and library mods after parts of the game btw

dense egret
wooden elk
#

"Handy" "Cryptid"

knotty sierra
deft ore
#

Is cryptid an api mod

wooden elk
#

do u have the mod manager?

knotty sierra
wooden elk
wooden elk
hard plank
woven orchid
hard plank
deft ore
woven orchid
#

the size limit of omeganum is far from the problem. there just aren't enough antes to reach any """"limit""""

round pilot
deft ore
#

would it be winnable if i made a challenge to beat that ante

wooden elk
#

i always sort of thought that the existing smods mod menu seemed sort of.

woven orchid
#

probably
blind scaling is pretty light compared to literally any tetration/high exponentiation or something

wooden elk
#

like it was designed for having 4 or 5 mods installed

hard plank
deft ore
hard plank
#

like if you have at least 20 of them installed

deft ore
#

like ante 2^64 or something

dense egret
wooden elk
#

smods' existing mod menu feels like they never expected the modding community for this game to extend past the fringes of the internet, which is very fair lol

deft ore
#

floating point precision gets too inaccurate i believe

knotty sierra
toxic cloud
wooden elk
#

yea

toxic cloud
#

looks cool ngl

wooden elk
#

it is

dense egret
jaunty galleon
toxic cloud
#

I'd love to have 12 mods per screen instead of 4

#

everyone does

deft ore
hard plank
#

i dont have all mods i knowinstall

#

this is just the modpack i work my mod in

#

The Modpack I Work My Mod In

deft ore
#

unless you can go up 2 antes at a time

tall vortex
#

why did i make these

dense egret
jaunty galleon
#

but think of the crossmod…

dense egret
#

.....

hard plank
jaunty galleon
deft ore
wooden elk
knotty sierra
dense egret
#

you can go up more than 1 ante at the same time

vernal hare
#

hey if yall want an effect of my U.S.M joker that gains effects based on the mods you have with it (kind of stolen from aikoyori- sorry 😔 ) please dm me

tall vortex
#

i also made these joknlers today

wooden elk
#

ur art is super cool wtf

grand geode
#

is that ba

stark shale
#

chicken

tall vortex
#

ba?

hard plank
#

balala

tall vortex
vernal hare
jaunty galleon
wooden elk
# tall vortex ba?

me when I'm a travelling koopa and I have to dance to the music because I'm bored:

tall vortex
#

lmao

woven orchid
#

Oh Nice

wooden elk
#

goddamn

hard plank
#

i guess we are abusing {f:5} now

tall vortex
#

f:5?

wooden elk
#

u know ur getting somewhere w modding when u break the game in a way u didn't know was possible

hard plank
#

oh hey

hard plank
#

to make japanese font appear

#

you need to set the font to Japanese

obsidian delta
tall vortex
#

ohhhh

hard plank
#

which is the fifth font in the game's code

#

(i added this feature by the wya)

dense egret
wooden elk
hard plank
#

so close to being

wooden elk
#

what all sigils r u planning on adding to these?

obsidian delta
wooden elk
#

mycologist deck would be rad btw

tall vortex
deft ore
#

gn yall

dense egret
hard plank
obsidian delta
#

Many have to be tweaked and I think Bloodhound is the only one left out

wooden elk
#

i see

hard plank
#

i must be stupid

knotty sierra
wooden elk
#

and if there do end up being legendaries in the mod there's a few characters they'd obviously need to be

wooden elk
#

besides that, Galdur is huge imo

knotty sierra
#

Have it :3

wooden elk
#

nice, nice

#

uhhhhhh handy is rlly the only qol mod i have, besides UnBlind

obsidian delta
stark shale
#

mfw a custom rarity had a 0.75 rarity weight

wooden elk
#

true , true , very true

knotty sierra
wooden elk
#

UnBlind makes the blinds and tags for the current ante visible through the shop without checking run info btw @knotty sierra

#

only caveat for u is that i can't point you towards a link myself because i found it on BMM which you've already ruled out cuz linux

wanton rapids
#

@hard plank aikoyoris shenanigans 4k

knotty sierra
#

I can probably search git for the repositories

wooden elk
#

fair

#

yeah, I'd recommend it! very convenient mod

sleek granite
#

is yuri brainstorm blueprint on anything that isnt nexus yet

knotty sierra
#

Also someone should make a joker based off of Spider (the solitaire variant

#

Have it be in a similar style to paridelia art wise

#

Except it forms a spider

#

:p

wooden elk
#

absolutely wonderful

knotty sierra
#

Any really big mods other than cryptid? (I haven't played it yet cuz I like my mods to have some balance to them)

wooden elk
#

uhhhh bunco has quite a lot i suppose

sleek granite
#

ortalab

wooden elk
#

but if ur looking for vanillaesque, it's probably best to install multiple different mods

knotty sierra
sleek granite
#

anticryptid propaganda (morally good)

dense egret
#

maximus should be one

wooden elk
#

most vanillaesque mods tend to mesh better and be significantly less buggy together than stuff like cryptid

wanton rapids
dense egret
knotty sierra
#

Have I interacted enough here to go on the alignment chart

sleek granite
#

cryptid is meant to be unfun

wooden elk
#

yeah but that does make it buggy with other mods

dense egret
sleek granite
#

instead of cryptid why not lancers

dense egret
#

uh?

knotty sierra
#

Also should I be able to post gifs

plush hound
#

no

knotty sierra
#

I don't think I should lol

sleek granite
#

ho ho ho

knotty sierra
#

Discord mobile not having parity with PC go brrr

hard plank
#

:<

#

ch4 spoiler

stark shale
#

fella is it stupid to install vanilla remade just for the increased chances for vanilla stuff to appear

sleek granite
#

aikoyori what the fuck is a ch4 spoiler here

hard plank
#

lancer

sleek granite
#

did we play the same ch4

hard plank
#

lancer sprite...

sleek granite
#

aiko thats ch3 you dork

stark shale
#

this is the most minor spoiler and it not even the right chapter

hard plank
#

i am stpuid

#

still spoiker

sleek granite
hard plank
#

im scared

dire trail
sleek granite
#

no its yggdrasil relics

dire trail
stark shale
#

the bow

hard plank
#

what is mr beast doing here

knotty sierra
#

Ydraysil seems cool but I feel like it may be out of place if I use other mods with it

stark shale
#

did i miss something

knotty sierra
#

I don't think so :?

balmy rampart
#

i JUST tried to open my deck vro

#

😭

dire trail
fair thistle
#

still cant believe they slid glop into the exotic misprint

wind token
#

May be stupid

balmy rampart
wind token
#

No.

stark shale
sleek granite
#

i think it is pretty cool even if you have other mods

stark shale
#

what's the point of adding it if it won't ever release anyway :clueless:

sleek granite
#

because i mod for my own enjoyment

sleek granite
#

i have deemed i will derive no enjoyment from public ridicule

#

:3

dire trail
sleek granite
#

however i will enjoy playing my own game and spinning my own little hamster wheel

brisk hawk
#

Damn my entropy run got softlocked 💔

#

Whenever i tried clicking a card it crashed smh

harsh glacier
#

bepis.

wraith seal
#

haya.

stark shale
#

you two.

harsh glacier
stark shale
#

i heard a rumour about smod is changing the way probability work

sleek granite
#

yeah they should do that

harsh glacier
#

hi autumnmood

brisk seal
#

i hate when smods does things

sleek granite
#

hiya haya

harsh glacier
#

i hate things

harsh glacier
teal sky
#

Meowww

plush hound
#

the fuck me for???

teal sky
#

:3

sleek granite
#

flowey's gonna look at your notifications and run tf away dog

stark shale
sleek granite
#

have a banana

#

you're not you when you're not potassium

fair thistle
stark shale
#

joker unlocked!

gray cove
#

Good morning

#

Individuals in the right side of the planet

harsh glacier
#

heaven

gray cove
#

Hey haya

plush hound
#

teto

round ore
#

i was laughing my ass off when this happened

stark shale
grand geode
#

what the fuck

sleek granite
#

what the fuck

stark shale
#

got jumpscared by children of the city

#

(and also machine love the teto song)

vapid swan
#

Guys which one should I get?!?1!11!

dull void
sleek granite
#

square joker

#

its so good on pink deck

dull void
#

Is it worth getting Balatro on my laptop just to mod it I play it all the time on my xbox and have been enjoying it

vapid swan
sleek granite
gray cove
#

Chat im so happy for no reason

stark shale
#

hmm yes recommending shit that we cant get

sleek granite
#

it was a separate statement

gray cove
#

Are you perhaps under the illusion of this you call a job

dull void
stark shale
#

Job

dull void
#

Nooo I must stay unemployed I'm too young to die

gray cove
#

Manifesting good luck 🍀 and beautiful day for everyone ✨

wraith seal
#

good evening everyone

sleek granite
#

good evening bepis

dull void
#

Good evening bepis

wraith seal
#

you know when you can select up to 5 cards in hand to discard/play?

sleek granite
#

"Hand and Discard selection limit"
here i have +1 on both (different deck)

lone frost
stark shale
#

Job

round ore
dull void
#

No more talk about the j word I already have to get one soon

gray cove
#

Bro

#

The j word scare me

stark shale
#

naneinf.....................................

sleek granite
# wraith seal good evening everyone

bepis
how hard would you say it is to have a relic that adds +1 hand size
im trying to think of how to do it and i might just be overthinking it

gray cove
dull void
dull void
gray cove
#

Get balatro because gambling

#

And number go up

wraith seal
teal sky
#

Meowww
How is everyone

gray cove
#

Brain feel good

#

Helllo

wraith seal
#

i do have a few ideas in mind with how relics currently are set up but they are a bit finicky

gray cove
#

Good morning Corobo

teal sky
sleek granite
#

i guess the problem arises that you could just equip and unequip it every hand

dull void
gray cove
# teal sky Hiii

I hope you have an amazing day today , you and everyone in chat✨

stark shale
wraith seal
dull void
sleek granite
#

then you could implement something blocking it from being requipped after being unequipped until after a round is completed? i could see that

lone frost
gray cove
#

Balatro is such an addicting game even tho the gameplay loop isn’t that interesting you just play poker with extra steps but the builds and stuff makes you wanna challenge yourself and try different builds and not play Photochad every time

wraith seal
#

yeah, you could definitely do something with can_equip, let me see what i can add

gray cove
#

I think you’re a pretty good modder bepis and a person aswell you’re pretty talented i wish to be as talented as you but i’ll try my best to compete

round ore
gray cove
#

:D

round ore
#

so

wraith seal
round ore
dull void
tropic egret
#

yahimod has no cross compat in mind but this just means it has the default "talisman bad" state

dull void
#

Cryptid mod + my school laptop might make for a good experiment

tropic egret
#

fuck talisman all my homies hate talisman

gray cove
#

I already figured out how to make basic jokers and i understand the concept after exams i’m gonna make a small mod

tropic egret
round ore
#

yea no i get that

gray cove
sleek granite
round ore
#

would've loved to try lydia with double scale/scalae

#

hehe

#

i know the mods hate each other though

tropic egret
#

yahi mod isn't the "use just me", it's talisman that's "force everything around me"

round ore
#

yeah fair enough

tropic egret
#

alternatively you can play the best balatro modding minigame

#

Does That Have A Table Comparison??? the gameshow where you play bomb squad with jokers

gray cove
#

Unreasonable ☕️ crashout

round ore
#

hii guys! just wondering if modding has any risks ?

gray cove
#

Nope

sleek granite
#

yes you might lose sleep

gray cove
#

There are no risks its just fun mods

edgy galleon
#

its 1 am should i get unhealthily addicted to making a mod rn

stark shale
tropic egret
#

don't download sketchy shit from other sites

gray cove
round ore
#

ty :)

gray cove
gray cove
edgy galleon
gray cove
#

Hey @stark shale do we end war ?

#

Enemies to friends

gray cove
#

Funny enough its 7 am for me lol

wraith seal
#

what the hell am i doing

#

sob

winged charm
#

Oops didn’t mean to ping 😔

gray cove
#

Eu supremacy

gray cove
fair thistle
#

DUDE I SWEAR TO GOD

#

IF I GET SOFTLOCKED AGAIN BY THESE STUPID UNLOCKS

gray cove
dull void
#

Wait I'm bad with time zones is EU nvm I figure it out

wraith seal
gray cove
#

Oh right

dull void
wraith seal
#

yeah

winged charm
#

I winced so hard when I zoomed in on it

stark shale
#

another level bar???

grand geode
umbral pilot
#

it's ok, I don't have it

stark shale
#

this is like hell if you think about it

#

im gonna lose on ante 3

dull void
wraith seal
stark shale
#

she look awfully tinted

gray cove
#

Your bar is better bepis

grand geode
stark shale
#

mucho texto (it got cutoff)

dull void
brisk seal
#

Skill Tree-mageddon

grand geode
#

WHY DOES IT CUT OFF

wraith seal
#

we live in a society where three skill trees at a time is acceptable

dull void
#

lol

wraith seal
brisk seal
#

I’m the only one in the right as I made the first skill tree /j

stark shale
#

i dont even know what the other level bar came from

#

i just updated vell kari

dull void
#

hey I'm considering getting balatro on steam just for mods should I wait for it to go on sale?

brisk seal
#

Wait for inflation to increase the price

wraith seal
#

i think it should be made so that if you press on the blind then it flips to another page of the passives

#

🤔

gray cove
#

Maybe not

stark shale
#

all i got is YOU MUST BE HAPPY and v1 brah

wraith seal
#

:3

stark shale
#

i think a mod conflict had happened

#

between oh i dont know

#

Vellkari and LCorp?

#

i cant see the skill

#

where is it

wraith seal
#

thats not vellkari

#

thats aikoyori shenanigans

dull void
stark shale
#

that's aikoyori????

gray cove
#

Since it had massive sales

stark shale
#

ngl this look cool

wraith seal
#

those are from aiko shen, yes

gray cove
#

Probably yeah

wraith seal
#

skills are supposed to be there

stark shale
#

well yes but the overscoring thing from vellkari

wraith seal
#

or was it at the bottom

#

i forgot

dull void
wraith seal
stark shale
#

no placeholder sprite

grand geode
#

skill deck breaks with aikoshen

dull void
#

ah ok

wraith seal
#

rip

gray cove
#

I love aikoshen

#

They did a great job balancing/optimizing it

sleek granite
#

skillful

stark shale
#

ok buttttt

dull void
#

how do I mod Balatro because I want to know from people who have done it before and not a random website

dull void
#

ok thanks you

dreamy abyss
# stark shale ok buttttt

update finity to latest commit, freh fucked up and accidentally removed the placeholder from the atlas (twice!)

gray cove
#

Just

#

Read the wili

#

Wiki

#

And there’s a simple mod example

#

You can follow

nimble scarab
gray cove
#

My advice is start slow

dull void
stark shale
#

( IM FIGHTING KALI)

fair thistle
gray cove
#

Linux ?

gray cove
dull void
# fair thistle

lol why does space look like that what effect did you give it?

round ore
#

hey guys, is there a specific guide i should follow to download balatro mods?

fair thistle
#

basically, random values

#

i happened to get like a 2.1 in 2.4 chance

#

(entropy revamps the glitched shader)

#

cryptid MOD

#

not the spectral

dull void
#

sweet hopefully when I get Balatro on my laptop cryptid doesn't kill my laptop

fair thistle
#

hey can you stop react spamming me please

wraith seal
#

thats added now

stark shale
#

hooray

dull void
wraith seal
#

huh

#

no

#

thats fixed joker

grand geode
stark shale
#

not

fair thistle
# wraith seal thats added now

hey bepis i was playing entropy alongside your mod and i had the same issue i had with partner and thats if you somehow get it in the shop it does nothing

#

basically, parakmi

dull void
#

Oh sweet it looks cool and now I see why it's called fixed joker maybe only 1 small suggestion to how the sprite looks is to add table on the cracks of it

fair thistle
#

i mean the materials btw

hard plank
#

Arachnida class

round ore
#

hey guys, is there a specific guide i should follow to download balatro mods?

wraith seal
#

no_doe

fair thistle
#

its not a huge issue

#

its just like

#

why cant you take it

#

:(

wraith seal
#

because you are not supposed to find them in shop at all

#

😭

wind turtle
fair thistle
fair thistle
stark shale
#

oh ywah

fair thistle
plush hound
#

fifth atlas!!!!!!!!!!!

median dagger
#

mhmm

brisk seal
fair thistle
#

aw hell nah at this point you boutta make a final boss where its just all of them at once

#

like the blind selection takes up the whole screen, its only that one

#

The Hammer and The Manacle and The Serpent and The Greed and The Joke

brisk seal
#

Wish I’d thought of this for Cruel Blinds

stark shale
#

it alway cryptid brhahahhasksarh

plush hound
#

blame it to smods

brisk seal
#

Daring Group is 3 of 5 showdowns

fair thistle
# stark shale

except it's built like the double blind they got goin on over there where it's just like a huge roster of all of them and it's the width of all 3 blind selection squares combined

stark shale
#

can i have a deck where i have to fight 5 bossblind at once at the end of an ante

fair thistle
#

Triple boss blind

#

:0 Triple trouble

brisk seal
#

Daring Group

#

that’s just daring group

fair thistle
#

BOSS BLIND

#

NOT SHOWDOWN

brisk seal
#

Ah

#

Needle + Water + House

fair thistle
#

silly boy

fair thistle
#

That would be a brutal challenge

stark shale
#

and they dont respect min ante so showdown along with min ante 5 that can show up

wraith seal
#

i added these two

fair thistle
#

Needle water wall first boss blind and you just

die

brisk seal
#

Horrendous Blinds mod

stark shale
#

having to fight all 5 showdown at once is horrifying

#

is it acutally possible

fair thistle
#

Probably

brisk seal
#

Well it’s possible

#

Obviously

stark shale
#

sound like a misson for you to add

fair thistle
#

takes hammer space
80% of the cards get turned into ccd crash cards

brisk seal
#

R u using mission in the normal sense of the word or talking about my Missions mod

stark shale
#

your mod

brisk seal
#

And wait that’s actually not a bad idea

stark shale
#

daring group ante 4 and Rainbow Party ante 8

fair thistle
brisk seal
#

tbh I’m considering a combination intermediate floor

fair thistle
#

But all jokers are forcefully raised a rarity

brisk seal
#

Which combines the previous three missions

dire trail
#

i wonder how many people actually interact with certain aspects of a mod if all steps of it arent explicitly noted somewhere ingame 🤔

brisk seal
#

wdym

fair thistle
#

this server has made me dislike the thinking emoji

wraith seal
#

🤔

vapid swan
#

why? 🤔

fair thistle
#

ASTRAL I SWEAR TO GOD

brisk seal
#

🤔

vapid swan
#

🤔

stark shale
#

🤔

fair thistle
dire trail
# brisk seal wdym

like my mod has a ton of jokers that work like gros michel in terms of adding secondary, more powerful jokers to the pool

but from what i can tell only one person has tried actually engaging with the mechanic

wraith seal
#

should i add anything else

fair thistle
#

idk

brisk seal
#

Skill issues on the players’s partd

dire trail
brisk seal
#

Effective Diamond 2

wraith seal
#

😭

vapid swan
fair thistle
#

back off

dire trail
fair thistle
#

what is this shit

brisk seal
#

I might add a mission called “The Minor Trial” blocking off later Missions until you win

dire trail
fair thistle
#

They made Balatro woke. How? Clowns

sleek granite
#

(very) minor deltarune ch4 spoilers
hee hee hoo hoo funni equipment

fair thistle
#

I would smack a rock with that scythe

brisk seal
wraith seal
dire trail
#

imagine a boss blind that spread itself across 3 antes (3, 6, and 9) getting stronger each time (ultrakill reference)

wraith seal
#

there we go

vapid swan
#

I love Balacraft

wraith seal
#

im actually gonna start adding more joker recipes, hold on

fair thistle
#

What if

Eat

sleek granite
#

banana blast

dire trail
#

i genuinely got caught off guard updating to 2.0 and seeing hypixel stuff

hard plank
#

baja blast

dire trail
#

i have a really stupid (set of) idea(s) for yggdrasil my mind just thought of

dire trail
granite smelt
#

Yo chat, I need some people to help me test something

#

Nevermind I found the issue immediately

#

Have a good day.

harsh glacier
#

most normal modded chat conversation

stark shale
dire trail
plush hound
#

another 14 jokers

harsh glacier
#

perkeo 2

dire trail
twin lintel
#

guys why is my balatro crashing after it loads

#

like its not a crash log

#

it just closes

plush hound
granite smelt
dire trail
plush hound
dire trail
wraith seal
#

more use for the suit materials

plush hound