#The Penny mod - babies' first balatro modding adventure

1 messages · Page 1 of 1 (latest)

sudden fog
#

this is the first ever balatro mod ive ever made

#

and i hope to make it REALLY big

#

but right now theres only four jokers

#

that being these four

sudden fog
#

he doesnt do anything atm

sudden fog
#

lowkey cooking

lucid needle
sudden fog
sudden fog
#

first time doing pixel art

lucid needle
#

I'm the Teto inspector

sudden fog
#

rn im banking on other sprites for my shit

lucid needle
#

My mod

sudden fog
#

doesnt yours add like 8

lucid needle
#

8...

sudden fog
#

justified too

#

teto goated

#

TETO SPAMTON?

lucid needle
#

Yup

sudden fog
#

AND AMBASSATOR TETO?

lucid needle
#

Yes

sudden fog
#

i saw it when it had like 10k veiws\

lucid needle
#

What

#

I don't have a thread

sudden fog
#

the ambassator video

lucid needle
#

Oh that's what you meant

sudden fog
#

like the actual song

lucid needle
#

W

sudden fog
#

still peak

#

i love teto blue teto and yellow teto

lucid needle
#

Ofc

sudden fog
#

what does teto spamton do

#

i wanted to add a spamton joker that is like misprint but with money

#

too advanced for me lowk

lucid needle
sudden fog
#

peak

#

and its got its own rarity?

lucid needle
#

Mhm

sudden fog
#

i should make a rarity for hotline miami cards

lucid needle
#

Would be cool

sudden fog
#

when i add more

#

jake doesnt do nun

#

and i want the richard tarot card to destroy a card

#

since

#

tony

#

scales per destroyed card

lucid needle
#

Hell yeah

sudden fog
#

it took me 2 hours

#

HOURS

#

to code that

#

i just brute force jerry rigged and it works

lucid needle
#

At least you coded it

sudden fog
#

and i havent touched it since

#

there most definitley is a easier way to code this

#

it doesnt help that im really dumb and cant understand jack the github thing tells me

lucid needle
#

Looks good enough

sudden fog
#

smod

lucid needle
#

I assume this is detecting every deleting card

sudden fog
#

i think

#

idk if it works with jokers

#

let me see

#

wait no it probably doesnt since its remove_playing_card

lucid needle
#

Sick concept still

sudden fog
#

i wanted it to kill jokers at first but i settled

lucid needle
sudden fog
#

actually caused me to uh

#

get an idea inspired by dexter morgan

lucid needle
#

Sick

sudden fog
#

it would kill jokers that were criminals

lucid needle
#

Dagger

sudden fog
#

kinda yeah

lucid needle
#

Or madness

sudden fog
#

it would kill cards like burgaler and swashbuckler

#

and gain mult

#

should be Xmult since its hard to get those specifically

#

idk if i figure it out il lad it

lucid needle
#

Oh you want it to kill specific card

sudden fog
#

yur

lucid needle
#

Possible ofc

#

Cool concept

#

If you always need help go to the dev chat

#

If people are active and such

sudden fog
#

yeah

#

im gonna bash my head and try to implement the richard tarot card

lucid needle
#

Have fun

sudden fog
#

i wont but thanks

#

:>

sudden fog
sudden fog
#

hes in

#

one thing that bugs me is tony doesnt go up for each card gone instead it only goes up when it detectes a a removal

lucid needle
#

I gotchu

#

Give me a second

#

calculate = function(self, card, context)
if context.remove_playing_cards then
local playing_card = 0
for _, removed_card in ipairs(context.removed) do
playing_card = playing_card + 1
end
if playing_card > 0 then
card.ability.extra.mult = card.ability.extra.mult + 2
return {
message = "Bloodlust!",
colour = G.C.RED,
}
end
end

    if context.joker_main then 
        return {
            mult = card.ability.extra.mult
        }
    end
end

}

#

Slap this on your joker

#

Oh wait hold up

#

There we go

sudden fog
#

thank you twin

#

your mad goated kinda

lucid needle
#

Hope it works

#

Actually double hold up

#
    calculate = function(self, card, context)
        if context.remove_playing_cards then
            local playing_card = 0
            for _, removed_card in ipairs(context.removed) do
                playing_card = playing_card + 1
            end
            if playing_card > 0 then
                card.ability.extra.mult = card.ability.extra.mult + 2 * playing_card
                return {
                    message = "Bloodlust!",
                    colour = G.C.RED,
                }
            end
        end

        if context.joker_main then 
            return {
                mult = card.ability.extra.mult
            }
        end
    end
}
#

This should do it

sudden fog
#

let me see

#

yo it works

#

thanks

#

what the hell

lucid needle
#

Magic

sudden fog
sudden fog
#

I LOVE WHEN MY CODE WORKS YAAAY

#

might have to nerf since you could just spam discard

sudden fog
sudden fog
#

have a really cool joker idea

#

the joker just lies

#

and changes you played hand

#

like you could play high card, but it swaps it to flush

#

or something

#

or a card that makes every hand

#

you play

#

a certan hand no matter what

sudden fog
#

doesnt do nun

sudden fog