#⚙・modding-general

1 messages · Page 1607 of 1

woven orchid
#

hi mf

winged prism
#

What are you talking about

frigid mica
#

Everybody moved on.

#

Man alright.

drowsy parrot
#

son 😭😭😭😭😭😭😭😭

woven orchid
#

bluesky users when they HAVE TO perform a cult sacrifice

frigid furnace
#

mod dev psa: please follow good coding practices so that the next person to work with your code won't have their brain imploded after 2 days

#

sincerely somone who has brain imploded after 2 days

woven orchid
#

i follow Coding Practices!

alpine cosmos
frigid furnace
#

the ego boost i got from refactoring oblivion has been a detriment to my sanity. i dont remember the last time i implemented new content besides bumpscosity

frigid mica
#

What if we made monument mythos jokers

hard plank
#

please do not look into my mod's code for your sanity

winged prism
#

Too late

limber oak
toxic cloud
#

I only need to look at where I want to look

hard plank
#

the code sucks

full edge
#

I will rewrite Kino to include more magic numbers

limber oak
#

i will recode bdash to have more ^

cloud willow
full edge
#

miku.y

#

💖

cloud willow
#

its the miku cover shader lol

full edge
#

Shaders have so many numbers like that and it scares me tbh

cloud willow
#

fr

#

i might comment it later

#

but tis fairly simple

full edge
#
Witness - Is added to your deck when obtained, counts as a random suit and rank. When discarded or still in your hand at the end of a blind, becomes a Joker that gives x0.5 mult for each scoring hand it was part of (High Card excluded).

How is this as an effect? Disregarding the specific balancing.

full edge
# cloud willow but tis fairly simple

I've been learning shaders for the last while and my biggest struggle keeps being my ability to parse shader code, haha. Numbers are so hard to translate into visuals for me

cloud willow
#

return dissolve_mask(// the dissolve shader I think? idk i copied this part
  lerp(//linearly interpolate from the given pixel and a cyan one
    tex,//given pixel
    vec4(0.4254901960784314, 0.707843137254902, 0.696078431372549, tex.a),// blue color, match the transparency of the card
    sin(//oscilate between no change and some change
      miku.y * 2// change over time, 2 is makes it faster
       + uv.x * 10 + uv.y * 10 // make the have diagonal lines instead of being a solid color
    ) * 0.2 + 0.2// degree of change limited to [0%, 40%]
), texture_coords, uv);// more dissolve shader code I didn't mess with these
cloud willow
#

I have a lot of experience making graphics with processing so this stuff kind comes easier

#

its just instead of drawing solid shapes i'm changing individual pixels

full edge
#

My only experience has been shader graphs in unity. I can mess with shaders a bit at this point, but it's a slow and laborious process, haha

cloud willow
#

ngl I might mess around sith the code later and see what I can figure out

#

i've only done color manip

#

and pretty simple so far

#

just what you see above and changing colors based on a mask

#

for this

full edge
#

Though it doesn't help that there's some balatro quirks that are difficult to spot for a layperson like me. I'm wanting to make a new dissolve variation for abductions, and that's been annoying due to the way shaders are stacked, haha

cloud willow
#

i ain't touching that code lmao

#

i'll stick to regular shaders

full edge
#

I've mostly just been bugging Dilly for tips whenever I run into something haha

cloud willow
#

honestly if I need to make a custom dissolve i'll likely do it via a gif and masking it

#

since I understand that

full edge
#

Im realizing now I should implement the colour mask improvement he made

#

A non-Kino test thing I was working on was trying to see if I could make a group of cards that would have a shared sky shader

cloud willow
#

ooh

#

I don't think that would be too hard, since you could just not modify the given coordinates to be scaled down to within the card

#

i think

full edge
#

Made this in shadertoy, with the idea being that the sun position would be absolute (at least in its x-axis) in your screenspace, so that it'd only be present in one card at the time

cloud willow
#

me when the sun fricking turns around

full edge
#

axes are flipped due to balatro quirks. Didn't get further than this, though, because joker jam took my focus, haha

cloud willow
#

woah

#

sick

#

oh wait

#

so you wanna have it sacle to fit the number of cards with the shader

full edge
#

sacle?

cloud willow
#

scale

full edge
#

i should've guessed that, haha

#

not scale. It'd be an absolute arc based on your screen width. The idea would be to make an enhancement with it, or a series of jokers, that get benefited from being the one with the sun in them. So the default assumption would be 5 cards would contain every possible sun position

cloud willow
#

ah

full edge
#

It's very doable, but I just need better fundamentals, as far as understanding shaders goes

cloud willow
#

yeah

#

messing with the information you send to the shader might be helpful too

#

since i don't think theres a gaurentee that the play area won't be moved

full edge
#

That's how the sun position would need to work, as well as the timing

#

Well, the idea would be to at first just make it work by itself. How it'd break by other mods' efforts would be a concern for later 😛

cloud willow
full edge
#

I'm gonna be trying to make some simpler shaders first. Just need to figure out some ideas that'd be fun to work with, haha

cloud willow
#

and then you can use the timing to get the sun position

full edge
#

Because some of the stuff I'm missing is all the assumptions shaders make that need to be true. Still don't know why balatro needs the shader name to exist and be used in the shader, or what information it's passing through

cloud willow
#

and then ik you are sent the screen scale

#

and also the position on the screen

cloud willow
#

and due to how glsl works

#

that means it has to exist and be used

#

or else it crashes

full edge
#

haha, i get that, but it's a bit too 'grass is green because that its colour' for me to comfortably internalize

cloud willow
#

okay uh lemme try again then

#

uh

full edge
#

I'm fine with learning over time, btw, though I won't say no to an in-depth explainer 😛 I'll definitely figure it out one day. Just need to sit down with shaders more

#

The balatro/love2d quirks are ones I've got less knowledge of rn because I've been teaching myself mainly by just working through the book of shaders and making things in shadertoy

cloud willow
#

all data sent into a GLSL program must be used becuase of GLSL reasons I don't understand
Balatro has decided to send you all this data, most of it is always needed for the shader to actaully work properly
the shader's key variable isn't strictly needed depending on the effect you want, but becuase GLSL it must be used somewhere

#

like I was just gonna make my cover shaders a static color but it crashed cause I didn't use the shader name variable

#

so instead they do this

full edge
#

I'll hopefully learn why that is one day, haha. But I'm also just not sure what information actually is in there. It's a bad feeling just forcing a variable into a formula while you don't know what it actually is you're passing through, haha

cloud willow
#

oh shader.x is the tilt I think

#

math.min(self.VT.r*3, 1) + (math.sin(G.TIMERS.REAL/28) + 1) + (self.juice and self.juice.r*20 or 0) + self.tilt_var.am

full edge
#

only shader I'm using currently that I've personally tinkered with is this one, which is just the shine shader that only targets specific colours

#

though dilly showed me how to clean up the edges. Might look around to see how I can make it look a bit more metallic and less like playing card foiling

cloud willow
#

ooh

#

any better ideas for this card
its kinda boring

full edge
#

I feel like I'm missing the reference

#

What's thematically important for it?

rain orbit
#

I forgor what I was gonna say

slate trench
#

yo has any1 reached 5es in cryptid mod? Like the furthest i got was quadruple e's but at some point all my expotential based jokers just stop increasing in numbers :p

rain orbit
#

I have not because I do not play cryptid Man

full edge
cloud willow
full edge
#

I would associate steel more with sharp than blunt, haha. I'd associate stone cards more with bluntness

#

I think even the stone effect counts as bluntness, honestly, haha

cloud willow
full edge
#

Stone cards count as face cards?

cloud willow
#

yeah that could

#

id lower it to a common then

full edge
#

Or 'face cards no longer count as having a rank or suit, always score, and give +5 mult'

#

that feels blunt

full edge
#

I need to figure out a better effect for this. The power boost scales too drastically. The deck functioning like a vampire itself also doesn't actually make vampire jokers more effective 🤔

slate trench
#

my god theres literally jokers in cryptid that scale based on discord members n i js didnt put the two pieces together that cryptid has a discord

full edge
#

Yeah

toxic cloud
#

that makes 20% absurdly strong

full edge
#

I've opted for this instead

#

Blood Counters can be drained by vampire jokers instead of whatever they'd normally drain

toxic cloud
#

that's definitely better

full edge
#

Yeah, I don't want decks to actually mess with power

toxic cloud
#

synergizes with more common vampire jokers effect

full edge
#

Any power changes that aren't temporary is also just not good design, and this was the only object breaking that rule

toxic cloud
#

unlike the last one, it boosts any joker which is a bit unrelated

full edge
#

Yeah, it actively made it harder to play with vampire jokers, haha

#

as it'd boost any, but also it would steal the first enhancement before a vampire joker would get the chance to drain

toxic cloud
#

that sucks even more lmao

full edge
#

Idk why I didn't immediately used the blood counters

#

as they actually make playing with the archetype easier

cloud willow
#

@full edge got it working

barren sky
#

🐶

#

i did do a security audit of their fork (due diligence, since it was advertised on the regular MP server as well) and didn’t find anything shady at first glance.

but, the entire distribution of .zip files over discord makes it hard to audit, nothing stopping someone from sneaking in something in the future. or even a stray eval that runs code from the server.

needless to say - while i love that people build stuff on top of our work, we provide zero guarantees for that fork 🐰

vast anchor
#

Hell

hard plank
#

please try my mod i will update it promise

latent crescent
solemn agate
#

so the other day, I made a great suggestion for the Paperback mod

#

a Food Joker

#

Joker Jacks

(I initially called it Cracker Jokes)

Rarity: Common
Effect: Each scored Jack gives $2. Consumed and gives a free "prize" in 3 rounds [Currently 0/3]. (Must have an open Consumable slot)
Cost: $5
Copyable?: Partially
Perishable?: No
Eternal?: No

References the Cracker Jack snack brand (contains molasses-flavored, caramel-coated popcorn balls and peanuts), commonly sold in baseball games and packaged with a trivial prize inside.

"...buy me some peanuts and Cracker Jacks..."

Each time this Joker's round counter goes up, it'll say "Strike One," "Strike Two," and finally "Strike Three!" when it's destroyed.

"...for it's one, two, three strikes and you're out at the old ball game!"

Prize Odds (Listed in Info Button):

  • 30% Tarot Card
  • 30% Planet Card
  • 30% Minor Arcana Card (special consumables from Paperback)
  • 10% Spectral Card

If Prize is a Spectral Card (hidden):

  • 95% Normal Spectral Card
  • 2% The Soul
  • 2% Black Hole
  • 0.25% Apostle of Cups (Selected playing card becomes Negative; -1 Joker Slot)
  • 0.25% Apostle of Wands (Create a non-Legendary Joker of your choice; No duplicates)
  • 0.25% Apostle of Swords (Destroy selected Joker; -2 antes)
  • 0.25% Apostle of Pentacles (Add a Platinum Clip to 1 selected card)

The odds are extremely low, but it is possible to get a special hidden consumable from this Joker

#

The creator/artist, PaperMoon, said she wanted to do cracker jacks for a while, and yesterday, posted this

mint summit
crude verge
#

How much cooldown is the Post in #1209506514763522108 ?
I deleted a post because i didnt add the image and now i cant post it again rn

winged prism
#

Couldn't you just edit the message to add the image
Not that it matter now but yeah

#

Oh you can't do that

#

I'm coming up with bullshit, apparently

crude verge
#

Yep

#

That is why i deleted it

#

I still cant publish the thing

winged prism
#

I guess it's more than 17 minutes then

#

My best bet is either 30 minutes or a hour but like idk

peak monolith
#

i dont know which is better

crude verge
crude verge
#

i think is centered

peak monolith
#

like the third one

winged prism
peak monolith
#

you do not see what

winged prism
#

differences

crude verge
crude verge
peak monolith
#

the left is more rounded the right is less and the middle is the middle

winged prism
#

Is the middle one thinner than the others or am I hallucinating

winged prism
#

Ah

crude verge
#

Btw, for what are those card for?

peak monolith
crude verge
#

Btw, I want a better reference for Hanging chad in My repainted mod, i need meme ideas

peak monolith
#

they are for community cards

crude verge
crude verge
karmic compass
#

the sayori scene

peak monolith
peak monolith
crude verge
karmic compass
#

ok then that danny devito screencap form its always sunny

crude verge
#

Like, the "You should Kyssss now" already i concider it enought to add it to the disclaimer

karmic compass
#

same joke but lighter vibe

crude verge
karmic compass
#

plus he is a chad

crude verge
#

If you cant post it here, probably i will not add it.

karmic compass
#

hol on im googling it

#

firefox is updating

crude verge
#

Okay

karmic compass
#

this one

crude verge
#

The hanged wojak for "Hangedman" Tarot card

#

Is kinda the same

#

Maybe I will use these one for Hanged man instead

#

is more funny

karmic compass
#

hanged man but it's hank from breaking bad

#

call it hank man

peak monolith
#

Where can i find an artist

#

to help me draw

karmic compass
#

what level of artist are you looking for

peak monolith
#

idk i need help making a consumable

#

or three actually

crude verge
crude verge
peak monolith
#

ok

crude verge
#

Examples of how i paint normally

#

I dont have actual examples for anything not-meme related TwT

peak monolith
#

hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

#

do you know how to draw consumables

karmic compass
#

poll to chat what rarity would this be, assuming vanilla scaled mod

#

im thinking rare but i could be overestimating it

peak monolith
#

Rare or uncommon

#

i think rare

#

also would the sell value be equal to the mult

crude verge
karmic compass
#

it technically allows an economy + vagabond build which typically wouldn't work

crude verge
#

Kinda a lil more hard but i can

peak monolith
#

cause then you could temprance before the blind

#

and then skyrocket the mult

#

(only if the sell value is the mult)

crude verge
karmic compass
#

no the sell value does not change, for reason that make sense if you consider what the joker is

peak monolith
karmic compass
#

it's only when you sell that you get your money back

peak monolith
#

ah so the thing i said with temprence would not work

#

or like swashubckler

karmic compass
#

i have elected not to show the name and sprite for now but just trust that it make sense why sell value doesnt change

crude verge
#

So yeh, i can paint with reduced palletes

peak monolith
#

no its 5 or 6 colors

crude verge
peak monolith
#

ok

crude verge
#

thats why i put "Like"

karmic compass
#

tarot are hard to colour cheat

#

you can get away with it a little with spectrals and planet

#

like you can go a little outside the pallete as lons as it's close enough

crude verge
full lagoon
#

Hey y'all got any ideas for an x chip thing? Like idk sealed? Graded? Idk I'm throwing ideas at the wall

crude verge
#

And the drawings are kinda complex for the canva space too

karmic compass
#

my brother in christ have you read what i said

full lagoon
karmic compass
#

it would help if you understand my point before replying with something unrelated

crude verge
#

And have in concideration that Plasma deck exist

full lagoon
#

Yeah

#

Sorry

crude verge
karmic compass
#

tarot are pretty fixed in scope as they are based on real actual existing cards

#

planet are based on mostly real celestial bodies but the card art is arbitrary

winged prism
karmic compass
#

and spectral you just have no limit

west wolf
full lagoon
west wolf
#

there's a lot to pull from

karmic compass
#

guys what happened to reading comprehension

west wolf
#

?

karmic compass
#

yes there are many different variant of the tarot deck

west wolf
#

no man

#

different decks

karmic compass
#

i think you just dont know what tarot cards are

winged prism
hard plank
#

as in i will just use xchips and xmult interchangeably

karmic compass
#

do you understand the concept of the major arcana and minor arcana

west wolf
#

balatro is based on the rider waite deck

#

its not the only tarot deck

karmic compass
#

and how does that relate to what you replied to me earlier

hard plank
#

???????

west wolf
#

that you can pull from different tarot decks?????

karmic compass
#

how does "yeah there are multiple arcana sets" relate to "tarots are a real thing but planet cards and spectrals are made up"

#

THAT IS THE POINT I WAS MAKING

#

IF YOU READ MORE THAN ONE SENTENCE

karmic compass
#

READ THE OTHER TWO SENTENCE

#

they're posted together for a reason

#

what happened to reading comprehension

hard plank
#

this is why i just don't make tarots if i don't have to

west wolf
karmic compass
#

IT FUCKING DOESNT

#

THATS WHAT IM SAYING

west wolf
#

???

karmic compass
#

WHAT YOU SAID HAS NOTHING TO DO WITH WHAT I SAID

west wolf
#

argument: tarots are pretty fixed in scope because they are based on real cards
counter-argument: there are a lot of cards to base them off of

no need to be a dick about it dude

karmic compass
#

and why do you feel it needed to be countered

#

we are talking about two different things

west wolf
#

because thats how conversations work?? lol???

karmic compass
#

im talking about how planets and spectrals allowes more freedrom

#

and you just want to nitpick me for what???

#

there are 200 tarots deck, but spectrals doesnt exists which make it easier to come up with a new one

#

without having to adhere to the existing sets

#

is that clearer now?

west wolf
#

all consumables are themed actually, even if it seems easier to come up with spectrals they're all based on occult concepts

#

and planets are based on
well
planets

karmic compass
#

yes there are 200 tarot decks, but comparing to planet and spectral, tarot is still significantly more constrainted than the other two

#

because it is based on real existing cards

#

whereas with the other two you can get a bit more creative and exotic, like going to fictional or hypothetical celestial bodies

west wolf
karmic compass
#

200 is still lower than infinity man

#

why are you doing this to me

west wolf
#

I based the ones in my mod on existing ones but that's no constriction

#

like you can make them up

karmic compass
#

okay fine

#

im wrong

#

sorry for ever mentioning it

peak monolith
winged prism
peak monolith
#

idfk

karmic compass
#

im just that disagreeable

hard plank
#

is bishop ring technically a planet

#

hypothetical ring shaped habitat

ember flicker
#

funny enough i just finished the le chiffre contract

karmic compass
#

i'd count that

ember flicker
#

Blomkamp trilogy reference?

karmic compass
#

it's an object in outer space

ember flicker
#

that is a ring

#

and a habitat

karmic compass
#

again planet's theme is significantly more loose so it would certainly count in my opinion

#

but who knows experts says im objectively wrong

ember flicker
#

i did make the big ear observatory (it's been scrapped and moved to typ0's mod) as a planet card

peak monolith
#

what do i put at the top where there are usually roman numerals

winged prism
#

Idk

ember flicker
#

roman numerals

peak monolith
#

bru

cloud willow
karmic compass
#

small icons?

#

like tiny hat for mayor

peak monolith
#

like this?

#

@karmic compass

#

also imoved the top hat down

karmic compass
#

are these like roles from a game or

#

just the general concept of people in a town

faint otter
#

Is there a mod that assigns modlists to profiles? (So that when u switch profiles, it automatically disables and enables mods)

crude verge
#

Because you said are community cards

#

And the hierarchy / Status of the class

#

Like, the farmer or something would be in the low class

#

while a office man would be at the middle

winged prism
#

Yay

#

Why the fuck am I implementing a shitty dialogue system

crude verge
#

(Jk (Or dont, idk)

crude verge
#

I would use that one font where the letters are very lanky but idk

keen knoll
#

commision

#

oh

crude verge
#

This one

#

But the art is still sick, Great job dude.

keen knoll
#

thx-

crude verge
ember flicker
#

theres a whole ass thread in modding resources

crude verge
#

Yep

winged prism
#

Why am I just fucking around

crude verge
#

important the "A" at the start

winged prism
#

Probably will do exactly that when I stop fucking around and make the dialogue thing actually work

cloud willow
ember flicker
#

how many discards are you willing to get in exchange for trading away a joker

crude verge
#

You should be able to pin messages in your own posts in the forums

full edge
ember flicker
#

what do you mean by accessible

#

its a consumable

full edge
#

how rare?

ember flicker
#

fuck idk theres like

#

5 unconditionnal cards

#

1 conditionnal

#

1 rare

#

it mighgt be unconditionnal

#

like the others

winged prism
ember flicker
#

if you ping the role you'll ping the only modding mod anyway

winged prism
#

That's why (singular)

storm forum
#

Mod^2

honest zephyr
winged prism
tardy sigil
#

Baltro

hard plank
tardy sigil
#

Why cant you

#

Huh?

winged prism
#

Shenanigan deficiency

tardy sigil
#

Damn..

winged prism
#

Wikis are annoying to work on

frigid furnace
tardy sigil
#

Oh cool

#

Uhh how do I make a page

crude verge
tardy sigil
#

Yeah you can lol

#

That's the point of it

crude verge
tardy sigil
#

Still

#

You can

crude verge
#

Btw, is balatro repainted (The first one) in the wiki?-

tardy sigil
#

Im pretty sure theres even a texture pack section

crude verge
#

I highly doubt but just asking

frigid furnace
# tardy sigil Uhh how do I make a page

Search up the exact title of the page you want to make; you'll be brought to the results page, where you will be prompted to create a page with that title ("Create the page X on this wiki!")

crude verge
#

I am asking for adding the mod because i can give all the art cropped and in high quality

crude verge
frigid furnace
# tardy sigil Ah okay! Thanks very much!

If you need an idea on how to format pages, you can refer to https://balatromods.miraheze.org/wiki/Modded_Balatro_Wiki:Style_Guide - you won't be punished for not following it, but it's useful for others, and can be useful for you

Modded Balatro Wiki

This is the wiki's style guide, the standard of quality that articles and other matters on the wiki should strive to develop towards. While pages do not have to immediately meet these standards (such pages should be marked as stubs), effort should still be made to follow the style guide, to reduce the overall amount of work needed to meet the st...

tardy sigil
#

Swag

crude verge
#

Even, the unique overhaul mods I know are other repainteds

tardy sigil
#

Damn

crude verge
#

But it has sense tbh

#

I can put it in Card replacement i think

frigid furnace
#

Note that your mod needs to be published before you can put it on the wiki - GitHub, Google Drive, #1209506514763522108 (not recommended), etc

crude verge
#

Oh, nevermind, you can add it just to Resource pack

#

Now realizing, my mod will be the first in the alphabetical list because starts with "Another"

tardy sigil
#

Its even in the balatro mod manager

frigid furnace
#

Yea, I was also mentioning that to Ginger

tardy sigil
#

Oh yeah durh

crude verge
frigid furnace
#

As long as it's like easy to access

deep fern
#

How do I get the most gacha experience from this game

#

Like nonstop gacha

#

Gacha for jokers, gacha for cards, gacha for blinds and tags if even possible

#

Gachatro

frigid furnace
#

Can't say I've heard a mod that introduces gacha mechanics (yet)

#

Might be interesting unironically

dusty token
#

hello, its been a while

deep fern
#

The holotro kinda adds a gacha mechanic but since its not the focus of the mod it isnt its full potential

#

I just wonder what the modding community would reccomend since they know mods more than me

ripe jasper
crude verge
hard plank
hard plank
ripe jasper
#

its you!

#

mod was fun y_dance

ripe jasper
#

i saw roffle and bean playing a turn based multiplayer mod and ts was fun

#

i wish there was a way to play that like

#

solo

hard plank
#

i wish i have time rn

ripe jasper
#

its ok y_dance

#

also i wanted to lyk

#

the busted ass misprint deck is bugged

#

mainly the tarot cards

#

no matter what number it shows it still only lets you change the normal tarot amounts

hard plank
#

yeah i don't wanna change much about vanilla stuff

ripe jasper
#

but its misprint deck y_sweat

hard plank
#

i don't want to be too invasive to the code 😭

#

that deck already caused me a headache and a half 😭

ripe jasper
#

i would change the visual numbers of the tarots then

formal orchid
#

play my mod

ripe jasper
#

bc some of them say like

#

change 300 cards into spades

#

and you can only change 3 still

#

😭

#

still!! it was fun

#

i assumed the misprint deck wasnt the main focus so

deep fern
frigid furnace
#

Is it like you want to roll to unlock content and be able to upgrade them or smth

deep fern
#

i want gacha everything

#

like jokers decided by gacha, stamps, blinds, cards, everything decided by gacha

#

like the holotro mod has a really interesting way of doing it where you dont really get to see or use the jokers added by the mod until you unlock them via the mods gacha

#

i love collecting, rarities, and gacha

#

and balatro is the closest thing to scratching that itch that doesnt require me going into debt

frigid furnace
#

Nothing is free in life

#

I tried f2p-ing two gacha games; I paid with my soul

#

Soul

hard plank
deep fern
#

exactly that

#

uma musume became my full time job

#

only for me to spend money anyways

pallid oxide
#

PUT SOME LINKING PARK MUSIC

toxic cloud
#

I chose Endfield to be my first and only gacha game I've ever played
I stayed f2p as well, no monthly pass, no protocol customized

ripe jasper
#

i like the wood cards

#

they look really cool

hard plank
#

canopy?

deep fern
hard plank
#

oinite please i need this

#

my mod wiki kinda outdated

frigid furnace
#

I would 100% support a gachified Balatro mod if only to help people with the gacha impulse - unfortunately I dont actually remember how the gacha experience goes

frigid furnace
ripe jasper
#

i wanna gamble in my gambling game

frigid furnace
#

/j, busy with stuff will try to get to it whenever

hard plank
#

intrusive thoughts

ripe jasper
#

im ngl though

#

some of these seals you added

deep fern
#

im trying to find every mod that includes gacha mechanics and it SORTA is going to provide the idea of like gatekept info and stuff from the game only unlockable through gacha but its not the FULL experience im thinking of.

like imagine how satisfying it will be to tear through balatro in a nearly fully randomized lucky run after multiple runs of just pure ass

ripe jasper
hard plank
#

yeah the seals are there so that

#

uhm

#

kingpin isn't useless

ripe jasper
#

idk what that is

deep fern
ripe jasper
#

rare?

hard plank
#

an umbral card

ripe jasper
#

oh

#

uh

#

wtf are replicant

#

cards

#

yeah ive only found abt 10 umbral cards tho

#

also i love that

#

one of the blinds is literally just

#

a complete chicot counter

#

😭

hard plank
#

think spectral but with 100% more yuri

ripe jasper
#

suit deck is

#

weird

ripe jasper
hard plank
ripe jasper
#

its just

#

different

#

very bright

hard plank
#

what happened 😭

ripe jasper
#

nothing its just

#

weird

#

to see cards lkike this

hard plank
#

oh lmao

ripe jasper
#

oh god high constrast makes it worse

hard plank
#

i needed the design to be distinct from base game cards and also make it so that you can still see the enhancements

ripe jasper
#

yea fair

#

WHAT THE HELL

#

😭

#

i aint readin

#

allat

#

cuz

hard plank
#

I'm going to rework bosses

ripe jasper
toxic cloud
hard plank
#

some of the later bosses are evil

vernal plaza
#

(i have 17 dollah 🥀 )

ripe jasper
ripe jasper
hard plank
ripe jasper
#

wait so

#

mime makes this op

hard plank
#

i think so

vernal plaza
frigid furnace
woven crag
ripe jasper
#

ok enhancements are a little hard to see

woven crag
#

youre going to see it again

ripe jasper
#

"can you see it... right there... one wild card.."

vernal plaza
ripe jasper
#

i love net cards

#

btw

#

my favorite enhancement so far

hard plank
#

inb4 mod with personality

finite storm
#

I'm trying to optimize the game so it can handle having like 3000 jokers
I made so if the card rank is more than 20 it doesn't draw unless the mouse is near it
but that doesn't seem to be the problem
what causes so much lagging on jokers?

vernal plaza
#

i used analog on common joker and now i have 3 jokers🥀

hard plank
#

don't have 3000 jokers

finite storm
#

Do you know what causes so much lagging on jokers though?

ripe jasper
hard plank
#

having to render 3000 jokers

finite storm
#

It's not being rendered though

ripe jasper
finite storm
#

I think so

hard plank
#

and also updating the joker

vernal plaza
#

i need ONE dollar to buy sum

hard plank
#

as in the game running update function

hard plank
ripe jasper
#

i see

hard plank
#

to reiterate

deep fern
# deep fern like jokers decided by gacha, stamps, blinds, cards, everything decided by gacha

SO FAR I HAVE 3 MODS THAT GET CLOSE TO THIS BUT ARE STILL FOCUSED ON JOKERS ONLY FOR NOW

Holotro: adds a shit ton of hololive themed jokers that can only be unlocked via a new consumable called "Relic gacha". Allows very specific build based around different vtubers from Hololive. Like builds focused on a purple marker which treats your cards and jokers as if theyre part of a cult, layering repeats. Or entire glass builds where your entire deck ends up as glass cards and you get rewarded when they break.

Payas Terrible Additions: Adds a Gacha Deck. The gacha deck adds a ton of joker slots but jokers CANNOT be bought normally, only obtained through gacha packs that pull jokers face down so you don't know what your getting. Forcing you to make a build as you go.

Reverie: You obtain "Exchange Coupons" which will turn into "Cine Cards" upon completing the side quest the exchange coupon asks of you. Cine cards are in their own seperate consumable section from the base game. Cine cards DRASTICALLY change the shops to a randomized gimick based output. Basically balatro but side quests.

hard plank
#

replicant cards are spectral cards but 100% more yuri

dusty token
deep fern
hard plank
#

don't believe me?

hard plank
#

check the colour scheme

ripe jasper
#

bc i wanna play them all

hard plank
#

next up I'll make planet card adjacent cards

ripe jasper
#

DESTROYYYYY

hard plank
#

and it will have the 🏳️‍⚧️ colours

ripe jasper
hard plank
#

-# as if my mod isn't unique enough

dusty token
hard plank
#

actually I'll steal from Sagatro and add my own take on story mode

#

no code stealing tho

#

I'll add something a bit coherent

deep fern
ripe jasper
toxic cloud
# deep fern SO FAR I HAVE 3 MODS THAT GET CLOSE TO THIS BUT ARE STILL FOCUSED ON JOKERS ONLY...

Sagatro has a very specific mechanic that can be considered gacha: starting with Saga Deck in story mode

  • 0.3% chance of creating negative The Soul, increases by a random amount between 1% and 5% (smallest increment gap of 0.1%) every restart, resets to 0.3% on a successful roll
  • it is guaranteed to hit on the second restart, once every profile
  • if The Soul wiggles, you hit the 0.3% chance and therefore can save the run's seed for later use
deep fern
#

mmm

#

i'll have to check it out, send that in the thread i made

hard plank
#

actually

#

uhm

#

i don't play that much gacha games

#

you know what I'll hack things together

deep fern
#

idk if im allowed to send them here because it might be too off topic so lmk, i'll dm them

hard plank
#

nobody cares you can send it here

deep fern
#

(im new to balatro modding community so idek wth im doing ngl)

hard plank
#

if it's still kinda related

deep fern
#

kk pog

hard plank
#

like even remotely

#

also you know bb

#

i need miku v6

deep fern
#

holocure: vampire survivors but lowk better with SO many unlockable characters with very specific builds based on cute anime girl streamers

Uma Musume: if you like character building and stat managing it can be really fun and rewarding, the gameplay loop just rlly starts eating itself alive after a bit

Cookie Run Kingdom: if your ok being scum of the earth its a lot of fun but the game has horrible management and the competitive scene WILL make you lose faith in gacha games

#

holocure is the one i reccomend most since it doesnt have in game transactions

#

truth be told i dont play a lot of gacha games because its rlly fucking bad for practicing self control

vernal plaza
#

asteroglyph js saved my run

peak monolith
ripe jasper
#

woa

deep fern
vernal plaza
#

s

limber oak
deep fern
hard plank
#

akef

peak monolith
deep fern
#

ive been like getting rlly close to trying it but i rlly rlly rlly hate hoyo

#

gennshin makes me want to rip my hair out with all the wasted potential and ur not allowed to have fun in zzz until you sell your soul

hard plank
#

i don't play zzz so idk

ripe jasper
#

i just got it

#

seems

#

eh

peak monolith
ripe jasper
#

green...

hard plank
#

yeah it's kinda eh so i made deals that are a bit more powerful

ripe jasper
#

deals?

vernal plaza
hard plank
#

I'm green

peak monolith
#

ima do planets now

deep fern
#

me when im green

peak monolith
#

what color should it be

ripe jasper
#

blue

#

or grey

#

like

hard plank
#

green aikoyori

ripe jasper
#

dark cyan

deep fern
ripe jasper
#

or that

vernal plaza
deep fern
#

no actually make it unpleasent gradient

hard plank
ripe jasper
#

😭

peak monolith
#

cause spectral is purple and red instead of blue and yellow arecana is green

ripe jasper
hard plank
ripe jasper
#

i see

hard plank
#

i haven't finished any of them yet except one

deep fern
#

make a reskin out of this mr color theory

hard plank
#

close to finish

#

but it's like

#

it needs balancing

ripe jasper
#

ah

hard plank
#

if you want to try it then you can turn on experimental content in the settings and restart your game

deep fern
#

oiled up men deck mod when?

hard plank
deep fern
hard plank
#

i wanna make a release but i wanna write changelog

ripe jasper
#

emeralds are a bit

#

strong

deep fern
#

if its got oiled up men youve got a cuistomer

hard plank
hard plank
#

i meant to say the mod in general

deep fern
#

also omg i love this modding community sm. i play muse dash and omfg that modding server is filled with shock bait edgy redditors and assholes

#

like what a welcoming and fun community dawg

#

zlawg

ripe jasper
#

or people will have your head

#

apparently

hard plank
ripe jasper
#

theres been many others

hard plank
#

lowk i just keep things to myself

#

internet is full of hatred

deep fern
ripe jasper
#

yk i was going for clubs for the 1.1x mult but

#

hearts....

ripe jasper
#

bc it comes through so often

ripe jasper
#

why is this joker in japanese

#

i cannot read ts

#

😭

deep fern
#

im trying out my gacha based mod collection rn for the first time i'll let u guys know how it goes

ripe jasper
#

ill try it out too after i finish this run

hard plank
#

adachi rei

deep fern
#

ADACHI REI MENTIONED

peak monolith
ripe jasper
#

see

hard plank
ripe jasper
#

TETO?

deep fern
#

itd be REALLY funny

peak monolith
#

yes 1 sec

#

(im not good at drawing but i like colors)

hard plank
deep fern
hard plank
#

update soon-ish

ripe jasper
ripe jasper
#

i want it

deep fern
#

i thought vocalotro wasnt out yet? i thought it was a wip still

hard plank
#

vocalatro (the card skin mod that i made) was out for like almost a year

deep fern
#

OH

#

ok im thinking of smthn else myb

hard plank
#

my mod has miku and teto

#

you just have to believe me

#

wtf is a dot product

ripe jasper
#

YO

#

this joker is FIRE

#

premium deck fixing wtf

peak monolith
#

wait i never thought of jokers that change the rank

hard plank
#

not exact copy

ripe jasper
#

REPLICANT

#

huh

#

what does this even mean

hard plank
ripe jasper
#

well i

#

took the other one

#

bc i want my -1 ante

hard plank
#

😭

#

there is in fact a deck that you might not have seen yet

peak monolith
ripe jasper
#

like playing this

#

and being able to get

#

3 kings

#

wait

hard plank
#

adachi rei

ripe jasper
#

the blind

#

IT BYPASSES THE BLIND

#

YEAHHH

peak monolith
#

what the blind hat- WGHAT

hard plank
#

there are some evil blinds on ante 7 and 8

#

so be careful

ripe jasper
#

FUCK WHY DID I ADD THESE PINNED CARDS

#

I HATE PINNED

hard plank
#

😭

ripe jasper
#

centrifuge is

#

very hard to play in mind with

#

😭

cloud willow
ripe jasper
#

OH CMON

hard plank
#

adachi rei

ripe jasper
#

YOUR ENTIRE MOD IS

#

JUST

#

YOU CANT HAVE NICE THINGS WITHOUT HAVING A BIT OF THE BAD

#

its good

#

dont take that in a bad way

#

BUT FUCK

cloud willow
cloud willow
ripe jasper
#

no

cloud willow
hard plank
#

+2 joker slot is very good

ripe jasper
#

but .5x feels ASS

hard plank
#

adachi rei

ripe jasper
#

oh my

#

my goat

peak monolith
#

yo

hard plank
cloud willow
#

hmm I should add some more rei songs
I only got one rn

ripe jasper
#

THAT ARENT BUNS

hard plank
#

😭

cloud willow
#

death

hard plank
#

Ado

deep fern
cloud willow
ripe jasper
#

EZ SHOWDOWH BOSS

deep fern
#

Guys, gacha

#

I love gambling

cloud willow
cloud willow
#

;-;

hard plank
cloud willow
#

which ones?

deep fern
#

Gameble...

hard plank
#

actually no there was a fan adachi rei album

cloud willow
#

mine are
gimmick girl
heat abnormal
my bread was burnt to a crisp
OUFOI

#

also KLY but thats like fricking everybody

deep fern
#

Adachi rei lowk overated. Every song with her HAS to be next level to makeup for the voicebanl

cloud willow
hard plank
#

can't find it

cloud willow
ripe jasper
#

i love zap cards

deep fern
#

I just hate how limited rei is

#

Theres so many better options for the same sound but with more flexibility

#

Zundamon, otomachi una, kafu, IA

vernal plaza
deep fern
#

The eye of gamba

cloud willow
hard plank
# cloud willow mine are gimmick girl heat abnormal my bread was burnt to a crisp OUFOI
0TS

⚙️ PRESAVE NOW: ffm.to/machina-mori
⚙️ PRE-ORDERS OPEN ON 2/15/25 ~ COMING SOON!


⚙️ VIDEO & EDITING ~ ‪@keyesgen ‬
⚙️ ALBUM DIRECTION AND ORGANIZATION ~ ‪@0TSXL
⚙️ ALBUM MASTERING ~ ‪@JamiePaigeIRL
⚙️ DISTRIBUTION MANAGER ~ ‪@keyesgen
⚙️ ART & ART DIRECTION ~ ‪@LucielEllis
⚙️ VIDEO BACKG...

▶ Play video
ripe jasper
cloud willow
#

I dont believe any of those are

peak monolith
ripe jasper
#

i have 7 discards

#

without discard vouchers

ripe jasper
hard plank
#

it's fineeeee

peak monolith
#

yes

#

why cant i have high contrast club role

hard plank
cloud willow
hard plank
#

and yes i have the sv2 bank

deep fern
#

shes my fav vb

deep fern
hard plank
ripe jasper
#

DROPLET CARDS

#

this

#

isnt ok

cloud willow
#

gimmick girl is in there i should've known about it 😭

deep fern
#

speed of spice is still the best synthv una ive heard

vernal plaza
#

what r u lookin at blueprint👀

deep fern
#

i wanna make a gacha themed playlist

#

all this talk abt gacha....

ripe jasper
hard plank
# deep fern speed of spice is still the best synthv una ive heard

『おいしい!』

「秋の未確認生物」long ver

子牛と申します。何作目?

うた:音街ウナさん

音楽:子牛さん
https://twitter.com/COWshi504

ギター:一筆かもめさん
https://twitter.com/ippitsukamome

イラスト:鮭味さん
https://twitter.com/11Meronpan

動画:Λkiranuさん
https://twit...

▶ Play video
peak monolith
#

@hard plank i have a question

#

why and how did you add solitaire

ripe jasper
#

if u click on the like

#

wait

#

nvm

#

read that wrong

limber oak
hard plank
ripe jasper
#

i understood.

#

yes

peak monolith
#

also why

limber oak
peak monolith
#

true

pallid oxide
#

who sould be next?

hard plank
#

i was gonna make it a boss blind

limber oak
pallid oxide
limber oak
#

ye

pallid oxide
#

crash the game?

limber oak
#

nah not crash it

hard plank
pallid oxide
#

then what would he do?

limber oak
hard plank
#

can you add ??????????

limber oak
pallid oxide
limber oak
pallid oxide
#

the types are jokers

pallid oxide
limber oak
hard plank
#

just imagine not having Pokémon

pallid oxide
limber oak
#

noclip past the starter town without triggering the starter pick

vernal plaza
honest zephyr
peak monolith
#

@hard plank what deck should i play on(in your shananigens)

limber oak
#

normally in R/B you'd get a 'M (0x00) but in R/S/G/FR/LG you get a Decamark with no moves (it won't use struggle either)

pallid oxide
pallid oxide
limber oak
hard plank
#

i like to think my mod is unique

limber oak
pallid oxide
limber oak
#

decamark != MissingNo

pallid oxide
#

be carefoul with the volume

#

LoL

pallid oxide
limber oak
#

you can make decamark a nothingdoer

pallid oxide
#

nothingdoer?

honest zephyr
limber oak
crude verge
#

Odd todd (Todd howard)

limber oak
#

i am confident i beat aiko to it regarding one thing

hard plank
#

i don't have gd reference

tardy sigil
limber oak
hard plank
#

oh yeah

#

i don't like adding custom suits and ranks

#

makes the game feel bloated

cloud willow
hard plank
#

pure rank / suit are technically a rank and a suit of its own

#

but not really

cloud willow
hard plank
#

it's NOT defined as a rank or suit

cloud willow
hard plank
#

but you could say it is kind of a rank and suit on its own

limber oak
#

they both add suits

hard plank
pallid oxide
tardy sigil
#

We need to add the cryptid suit to the game where if you play a cryptid suit card it deletes all the folders on your computer

limber oak
#

altho aiko you have to admit
a custom suit is a great idea on paper

#

its just that implementation can feel a bit jank

#

-# but i got code you can modify

tardy sigil
limber oak
wanton rapids
#

i dont really like custom suits

hard plank
#

i don't find custom ranks and suits fitting the vision for my mod

limber oak
#

you could say im adding lots of fluff

cloud willow
#

lowkey 0NE feels like a vbs song lol

tardy sigil
pallid oxide
#

LoL

limber oak
pallid oxide
tardy sigil
peak monolith
#

aikoyori what is score

limber oak
full edge
#

I've been playing around with ideas on how to handle new suits

tardy sigil
hard plank
#

i lowk js don't bother lol

limber oak
#

command blocks

full edge
#

I was considering 'prestige' suits that also count as a base suit

pallid oxide
tardy sigil
#

That's not the same brah

limber oak
rain orbit
#

Who knows how to make basic edition shaders Glorp

wanton rapids
hard plank
#

more fluff

wanton rapids
#

aikoyori

full edge
tardy sigil
long hare
rain orbit
full edge
#

Yeah, that's what I'd wanna avoid, haha

cloud willow
full edge
#

If a suit has a specific scoring element, itd be too similar to an enhancement

#

I think the idea would just be for some jokers to super care about super suits, I guess

hard plank
#

yeah lowk i just don't find custom suit and rank that interesting of a gameplay change

full edge
#

It's not yet a full idea, haha

hard plank
#

you'll need to make corresponding sinful and some rare earths and some niche joker and boss blind to make it fit in

full edge
#

Suits don't have enough of a gameplay identity for new ones to meaningfully change the game, I find

rain orbit
long hare
tardy sigil
rain orbit
hard plank
#

i think it's too much work for too little roi

long hare
#

what we need is a third identifier

cloud willow
#

yeah
cause you need all the suit cards too

long hare
#

other than suits and ranks

tardy sigil
#

Yeah like some kind of enhancement

hard plank
#

also my pure cards are not enhancements

long hare
#

oh wait aiko's letters exist

#

what we need is a fourth identifier

hard plank
tardy sigil
#

But letter cards already exist! We got K, Q, J, and A