#Resurgence (WIP) - Primordial Arts
1 messages · Page 18 of 1
ahh lol
u know, I still am pretty happy, I just split an atlas in 2 and swapped all this ALMOST on my own and that's pretty cool, hehehehe
papyrus turned out super well for a placeholder
i didn't expect rescaling it would work so well
filth looks great atm
that one might just stay lol
that's awesome
also, live footage showing me just how much more powerful ^chips is than ^mult lmao
why's the alpha lowercase, but the omega uppercase?
because uppercase alpha is just A
for clarity
then why not use lowercase omega
because no one knows how lowercase omega looks
we sacrificed consistency for looks and clarity
:(, okay
Lowercase alpha cuz it's the first letter Uppercase omega cuz it's the last letter
this annoys me a bit too
just go w that lol
lol
do we know what this means yet?
I figured it out, but I still think it needs to be rewritten, like, completely lol
||it's deck of equilibrium I believe||
yeah literally just the DOE
the famous thing about vs is the obscene amount of random stuff, so making the guy that makes random stuff happen make random stuff happen makes sense imo
we should add shit cards, for dung defender from hk
only people who play cryptid would know what that means tho, even after deciphering the acronym
sorry, lol
I am NOT adding shit cards, lmao
real
lmao
i have an effect in mind actually for him already
and it does not involve shit cards
good
I know I never finished making gaster, but I kinda wanna make mini mice lol, I want them in-game cuz I know they're stupid effect could have some crazy synergies somewhere lmao
what's missing from gaster?
the 66 sixes creating 6 negative tags
which honestly, is supposed to be his main effect lmao
well, you can look at how whiskey does it
it's almost the same thing
also, i'm going to add messages to all the jokers
because rn they don't have any
like "upgrade" when tree levels up and so on
this is what I have so far (I actually did all this without the help of whiskey so far, the counter seems easier than I thought, tho the tags look more complicated lol, so I'll probs check whiskey after I fix the red lines here)
seems perfect, except the extra comma at the end
to make a tag you need to use a little function
just copy it from whiskey
oh no, what have I done, lmao
I only just looked down lmao
keep in mind that whiskey is a bit different because of the message it shows
you can copy that too if you understand how i did it
pretty sure there's an extra end
remove the one after return
probably change the sound effects
also you are missing a few brackets
thanku, lol
what is the key for negative? If I wanted to have "Negative1" instead of "Holo1" for example
also negative tag lol
tag_negative
negative for the sound
and you can probably remove the 1.2 + math.random() and so on part
play_sound('negative', 1, 0.5) maybe?
is that, volume then pitch, I assume?
pitch the volume
actually make the volume 0.4
that's the default
ah okey
keep the pitch at 1 for the pure negative sound
is it a value from 0 to 1?
it can be any number afaik
so if you want to deafen the player you can make it 1000
ok, lmao
I'mma test with what I have now, I think
???
oh, wait, fuck, is this cuz gaster's immutable?
show me the config rn
okey, it's working now
now time to test the negative tag creation
gonna lower it from 66 to 2 so I can see it better
my boy be looking good
:3 my effect works btw hehehe
great
commited it :3
now, for a simpler one, I think (probably not)
mini mice
the mult is easy as hell, I know
but what about the "all hands are counted as high cards"?
that should be easy
but it will not be part of the joker
you probably need to override the func that determins the hand
and make it so it's always an high card
hmm, okey, I'll get the easy part down first, the mult and all that
then I'll do the "Always High Cards" effect, as I've never done it and have no idea how to yet lol
not sure myself
i'm looking at explit from cryptid but i don't get it
so we doing this ourself
no stealing
i may know why exploit is a bit more complex than expected
ok, this is a bit tricky
lemme think
ok, first of all lets create the function
we must override evaluate_poker_hand
so that it always returns a high card
to override a func we need to create a local that points at the original one
so that we can call it again after we did our stuff
otherwise calling the function would always call the new one we made
i usually do it like this local orig_evaluate_poker_hand = evaluate_poker_hand
now orig_evaluate_poker_hand is the original function
and we will make one that replaces it if we have mini mice
so after this add function evaluate_poker_hand(hand) in the next line
hold on a sec lol, sorry, dad was talking to me about capitalism
so
local orig_evaluate_poker_hand = evaluate_poker_hand
do we need a calculate before it, or something, or can it just go in empty space? is it even inside the joker?
outside the joker
inside the function i'd make a local that gets the actual poker hand played
so local hand = orig_evaluate_poker_hand(hand)
ok, that's written down now
i'm thinking a bit
not sure if what we got rn can do this or if the og wording even made it seem this way, but
is it possible to keep the og scoring cards while using the different poker hand scoring?
so like
if it would've been a two pair, all cards that would've been a part of that two pair would score
but, it would still count as a high card?
sort of like
a messed up splash? lmao
if not, we can still work with this, no worries
yeah this is what it's bugging me rn
i'm not sure how this will work honestly
ok i think i got it
i found out how to make it preserve the old cards
but change the hand type
ooo? (I think I have an idea myself, but I have -1 idea on how to make a function so idk if it even makes sense lol)
so type this after the if statement for _, v in ipairs(G.handlist) do
this is a loop that looks at all hands in the game
from the best to the worst
so if the local hand we made before is equal to any of those hands this means this is the hand we currently selected
if hand[v][1] then
this checks if the current poker hand of the loop is in our played hand
mm okey
then we make hand["High Card"] = hand[v]
this makes high card contain all the cards from our current hand
so if this hand is an high card it will have all the same cards as wathever hand we played before
after this add break to stop the loop from continuing
add all the needed ends and the function is almost done
what I have so far
ok
before the last end add return hand
so the function return the original hand if you don't have mice
and the one we replaced if you do
rn this does not remove the better hand though, so we need to change a few things actually
ok, i need to check a few things
so first of all were you have if hand[v][1] then replace it with if hand[v][1] and v ~= "High Card" then
actually scrap this
don't do this
okey, not done 👍 lmao
after the for loop is closed
add a new one
still for _, v in ipairs(G.handlist) do
and inside add if v ~= "High Card" then hand[v][1] = false end
so we make all hands that are not high cards false
ahhh okey okey
this should be it
I think I might be missing an end somewhere lol, but idk where
show me
thanku, so, this is it right? testing time?
yes
seems like cryptid's Ascended Hands aren't liking the function lmao
yeah i guessed that would happen
cryptid adds a lot of things to make exploit work with them
try disabling cryptid for now
we will fix this later
okey, I'll turn off some stuffs
okey, cryptid+entropy are off
time to test
ok, crash that seems to not be an incompat
ok
select all the stuff we added inside the function except the first and last line
and press shift+alt+a
this should comment it out
tell me if this works
after this add print(hand)
after creating the local
i need this because i don't know how hands are stored in the files
like this?
yes
but move print up
before you return
and also local hand should not be commented out
okey
this right?
yes
now play normally
and after playing one hand send me a picture of what gets printed in the terminal
the one that opens when you start the game
just send me a picture
okey
and where you added hand[v][1] = false replace it with hand[v] = {}
done
try now
IT WORKS!! :33
great
also, just tried, no longer crashes w cryptid :3
good
wip for sly
ooooo!
it's fine, was wondering if having multiple mini mice caused problems, we're fine
it wouldn't
because the function just checks if you have any
one or more is the same
also
are you paying attention to blueprint and sticker compat?
this joker should not be blueprint compat for example
oooo, right
well, actually, what about for the mult?
it so derpy
cuz it also gives +mult
he's so cute
imma do the nailsage version
gotta use this as a ref i think
also, we probably should add configs to ban the specific planar sets
because some of this stuff is spoiler lol
tho, we could have it be SPECIFICALLY the spoilers for the planar sets
mmmm, true
never a bad idea for more configs
if we do this then it would be wise to divide the planar jokers into different files
so we can just not load the file if the set is off
mmm, tho, how would u have them in multiple sets?
I mean, I do know it's possible, as I think cryptid does that, but
a set for each planar type?
wdym
like, "specific planar set spoilers removed" would all be in the "specific planar set removed" set
for each set we can add two options
one removes just the spoilers
the other all the set
okey, I guess I'll get how it works more when we actually have the configs in place lol
for coding we can just have an if statement inside the file
we put all the spoiler stuff inside of it
this is how i do it in prism
mmh okey
i don't know how many spoilers there will be
for sure a lot of unbounds will be spoiler
like sly here
I know of 3 that could be considered spoilers off the top of my head
if we add sans unbound that will be for sure
though
who does not know about sans lol
i think it's impossible to have escaped that information in the last 10 years
yeah, we should probably add that, cuz we have 2 jokers that should be using it already
tree -> tree(3) is the only set that exists of both where you have both jokers to test the transformation
gabriel exists, but his other form doesn't so despite having 2 unbound jokers we only have 1 possible transformation atm
I have mini mice and hot air balloon rn
this is it, this is power
lol
this is it... finally, the gay agenda, in my hands
the alphabet mafia wins again
spotify is reminding me that i still need to finish the music lol
lmaoo
the unbound mechanic is added, now we just need to code each joker
ooo
you gotta tell me how that works tmrw
also sorry for being absent today
didnt catch a break
didn't u have an appointment today?
was it today?
yep
they told me to continue with my 'tism diagnosis
incredible, i say
i did not expect that
tree(3) works now
yippee!
I feel this mod is starting to take shape
Paints are in, unbounds are too
Sigma kinda is
hehehehe :33
we even have some art in the thing now :3
don't forget bout them augments either
I'm feeling it too, it's wild seeing this stuff in-game, hehehe :3
It's starting to feel like when i finished the myth cards for prism
And i could actually play them
It was cool
indeed
That was the first time i actually went far enough in one of my game dev projects to be able to have fun with what i made
anyway good news for ya
I'll be honest here, while I knew we could make some of this stuff, I don't know if I ever expected augments, let alone paint, to actually work
this feels REAL, and it's crazy, hehehe
Tbf i did all of that lol
fair, but like, still
hah
But i liked too
don't worry he'll bill us at the end
This is fun
1000€ each
interesting
Just need to balance a few things
That's why i started darkside
But i'm also using this mod for the insane shitpost ideas
it's fair enough
it's what it was made for anyway
You did good
🥺 thanku guys 🥹
making this mod has been amazing so far, cheers to more mod dev in the future, hehehe
i didn't praise you, bottom
I'm not a bottom and I wasn't joking, this mod has been so fun to work on haha, watching these ideas flourish and grow and turn into reality
ignoring the breakdown it's all been sunshine and rainbows
They are the bottom anyway
HA
Just pretending to be cool
you wish
you just are
that's pretty generic
specify
what would i do when
Dunno, you know it
i already use a stupid amount of sarcasm each day
I'm aving two discussions rn, one in italian the other one in english
My brain is cooked
Anyway, still no Gay sex in the mod :(
your ass isn't language switching well
i can do that
ABSOLUTE TRAVESTY
i shall code the boykisser tomorrow
I can too
.
That's my general state
what do you meaaan thooooo
my brain is always still in it's own chaos
la ringrazio per l'offerta ma preferirei la sua autocombustione istantanea, grazie
I don't know if the balatro discord rules allow that lmao /j
I DON'T CARE
I NEED IT
you go code the lesbian sex
gode
ハイエナに食べられればいいのに
out-thought ya
not shocking
I think I messed up a pronoun
But the meaning is still the same
weeb
i cast translator plugin
consume japanese people
I'm not fucking gozilla
the joke
is
sex
and cannibalism i guess
:3
Both cool
there's a lot of stuffs I wanted to watch but couldn't do to not knowing the language enough lol
anyway, watch bocchi the rock
real
the one with the literally me char
nah too lazy
i can't sit still
Tbf italian dubbed stuff is way better than the English stuff
italian is such an expressive lanugage
imagine italian profanities in anime
now that'd be peak comedy
No, it's that the English never needed a good dubbing industry
Since they make all the movies
real
sub vs dub caused by hollywood's negligence
i recommend you go watch evabridged
it's a yearly rewatch for me
(the italian version)
I think I did actually lol
Sono passati quasi 3 anni da quando abbiamo pubblicato il primo episodio di EvAbridged, e abbiamo deciso di celebrare questa ricorrenza in modo speciale.
Tutti gli episodi di EvAbridged remixati, rivisitati e corretti in un'unica formula a mo' di film. Signori, ecco a voi il nostro Rebuild!
Ringraziamo Sabaku No Maiku, per averci passato i mate...
A while ago
Didn't remember it was dubbed by orion
Peak
orion is peak
Indeed
"ma come abbiamo sopravvissuto ad una bomba nucleare nascondendoci in macchina?"
"ah bho"
They did nothing for like, 3 years but still
unfortunately all peak ends
Peak is timeless
well, it's a ritual to rewatch everything of theirs every once in a while
Real
"I don't consume italian media"
okay but this one is 1
niche
2
peak
3
the english version isn't complete, to my knowledge
i had no choice
Fair
anyway, "NUCLEARIZZATE LO STRONZO"
Anyway
yes?
Tomorrow I expect great things from u
I shall
<3
do you know what NERV stands for
I will never succumb to the :3 curse
nervous system
suuuure
<3 till I die
kiss yay :3
:3
<3
If only
you should be
play both games <3
i'll make you
I would have already funked your ass
playing both teams? italian spirit
PLEASE DO :3
Real
A bottom is speaking
I don't have them :(
GO GET THEM
No way I'm typing "boykisser images" into google
boikysser
he kysses bois
My dyslexic ass
i mean it was a misinput
Always swapping Is and Ys
But dyslexia stops me from noticing
blindness stops me from noticing that AND everything 20m further than my nose
amateur
just did a commit and added some more loc
yeah, I can, I think, tho, 2 things-
1: What are the various "sticker-compat" names?
2: You never did respond to whether mini mice should be blueprint compatible or not, do to the +mult
Sticker compat are just perishible_compat and eternal_compat
Mini mice should be blueprint compat yes
Also, for all the blueprint conpat joker, you need to make sure that you exclude the non copiable effects
Like, tree should be compat but the scaling effect should not
mmm, I see
For the stickers, remember that all jokers that kill themselves can't be eternal and all the scaling ones can't be perishible
ok, that's good info
my joker fr
Ones like bull still can
(Niko should be immune because pure plot armor)
oh, btw, we still need to change sigma to actually transform instead of self destroying
Since they scale even when you don't have them
Right
We can use the same function as unbound honestly
Maybe just a small tweak
Because unbound shows "unbound" message when transforming
We need to change that
Yes
I forgot
All the effects that change values about the joker should not be copiable
went through everything, it's done I think
gn!
you misspelled perishable
ohg, lmao
i fixed them
also added an extra blueprint thing for tree
oo?
you forgot to exclude the transformation
before it tried to transform blueprint
that would have caused a crash though
okey, good to know! 👍
i'm changing some loc to be more in line with vanilla
okey!
do u mind telling me which so I can learn how to make em better myself in the future?
changed papyrus to "If hand has only 1 card" like dna
making all numbers orange
i'm not sure if blue is an actual accepted color, but chips is
and making lines a bit shorter
super wide text boxes are ugly imo
i prefer them as square as possible
ok, I'll see what I can learn from this
also, btw, I made the loc for the Rubber card and tweak u may have noticed, but I made it pretty quick, so it's pretty much a line on both of em, so they'll both need a couple extra line breaks
i fixed it already
thankuu
okey, thanks for the info :3 👍
@night prism I changed gaster so that the loc would work right lol
i did too lol
lmao
i merged the commits together
i made so that gaster uses the same wording as invisible
Currently 0/66
what?
I'll fix this rq lol, u forgor to change the value it's set to
lol
every 6 gives 6 negative tags
yeah i forgot lol
i also used a loop to make the 6 tags
instead of writing it 6 times
just to make the code more readable
thanku, I actually wanted to do that myself but couldn't remember how on the top of my head lol
or rather, idk if I ever fully learned lol, in lua at least
trying to make some art for alphys rn
hehehe, I'll see if I can 🫡
in case u were wondering my secret sauce I recently discovered for making my sprites better, is to make them in higher res first then doing pixel art over a shrunken version of the og image
combining 2 mid art skills into 1 ok one lol
lol
well, if it works it works
i think it would make sense to make all jokers with unbound versions non perishable
oh, I didn't know that
imagine using the soul and finding eternal chicot 💀
lmao
all randomly generated jokers are without stickers
so the soul ones are too
otherwise imagine rift raft giving you eternal commons lol
just unblurring it now, so I'm almost done (it is a legendary, so it's only a head lmao)
I have no idea if this is centered or not lmao
cute
I just realised I forgot to give her glasses any supports, she looks like a splatoon character lmao
there we go
lmao
what color are you making the background?
also yellow i assume
also, writhing her name should be easy, just copy the letters from the other legendaries
i guess it makes sense
we didn't fix it
we are waiting for ruby to fix it
ogh, I thought we did
sorry lol
it's an entropy issue
did you load an old run?
yeah
ok then
this is normal
since we just added the unboun thing
it was still not on the tree when you started the run
ahh, okey
I just uncovered the beautiful fact that cryptid's sticker deck works with out paints, hehe
just added sly
it was harder than expected lol
and still no unbound form
well, now i shall sleep
gn
gn!
okey, going to bed myself now
I added 3 new colors to the color thing in main.lua but I'm not sure if I did it correctly lol
what I added them for should be obvious by looking at what I named them I think, but they're each for one of the editions, 1 for divine, 1 for faustian, 1 for cursed
there might be problems or repeatition or something, as I'm kinda tired rn lol, but I tried lol
We need to add this angry Italian rat as a joker
when that screaming witch crossed MY BRIDGE
he... is Jimbo
Real

how can you make peak more peak
i wonder
we coding today when i get outta this hellhole
i have my ways
this is so fucking 1984 i can't even express it
it seems like the lesbians have been hit the hardest by this
though this is funny
well then i don't care personally
not a lesbian yet
YET
we are close
i also need to master this tbf
Imma do it rn
after it finishes exporting
the mastered version sounds so much better
but i will still tweak it in the future, i did this pretty fast
i messed up while exporting
but now it should be fine
probably final version
the sound quality is soooooo much better now
banana
i'll give it a listen shortly
good morning everyone :3
a true skonger does not need to see silkpost
cause it's literally written there
gm :3
this time i really think i cooked here
but i'm biased
sounds great
but question
did ya give it a title yet
no
would be funny if it referenced dm dokuro
i'm putting it into the mod
if my brother didn't interrupt me i'd have no grays too
also god damn it mentions CDs
lol
anyway, unironically going into my playlist
@dusty river i saw you added colors to the editions, though in vanilla all editions have the same color
it should be possible to chanage the badge color
but i'd need to patch the smods code i think
huh
so how did she do it if it's not possible
without patching
which i doubt she did
she just added the colors i think
we need to specifically add them first
loc colors are not automatic
anyway, we need colors for the rarities
i'd use a gradient for them, like exotic
are you colorblind too? or just regular blind
i wasn't looking at the exotic tag to see it shift yk
i saw wondorous jokers do that in jen's cause the descs are infinite
but not exotic
as they're usually straightforward and i'm a fast reader
ironically
indeed
ogh, lmao
well, it might be good refrence for future shaders i suppose lmao
@dusty river so what color are we making primordials and unbounds?
what colors do you have in mind
orange and black for primordials and yellow white for unbound imo but idk what you think
so whenever you are holding a promordial it triggers?
yeah
I just realized I'll need to make music for augments and music cards too 💀
Unless you are unsatisfied with what i did so far and want to find another musician
i mean this is GREAT why would i ever be
also it's not like musicians grow on trees
real
I come straight from the ground
you come straight?
Indeed
unacceptable, guess i gotta find someone else
nothing for now as my mom is teaching some rando french in the literal next room
and i can't concentrate with her yapping
french is one of the things that gets under my skin
lol
me fr
ironic cause i main spy
Well, spy is based
One of the good ones
All the other ones, straight to hell
Maybe even gay to hell if I feel like it
nah, pyro is just :3
and literally me
they're all gay
so hell is straight
Real
What do you have in mind though?
Other than French
didn't even think about it :3
i guess some more VS jokers as uh
i made them
real
ASSET RIPPING TIMEEE
Using the friends of jimbo as placeholder
Jimbo really has a lot of friends, couldn't be me
reaallll
The artist you recruited posted peak, didn't elaborate further and left
real 2
but alas
i'd like them to elaborate
Indeed
Though the flags are already gorgeous
We also got premium artship with gaussian
And railgun has been cooking too recently
well i'm the only useless one
as it should be
i know :3
who started doing anything (after you) before almost anyone else?
I see a potential in you
You are the chosen one
And I'm your mentor
Only I can see the potential
But one day, everyone will
And only because I believed
And you did too
No
It's your destiny
To become the ultimate balatro modder
And deliver us from evil
this is a buncha rpg lore
Evil being mediocre balatro mods
Please don't
You are the path trough darkness
only path through darkness i got is the gay one
Rainbow is light
Light in the black
Life over death
no my joke was gay sex
Gay sex is key
Key to salvation
Being an unfunny porn addicted gay furry is the only real state of nature
i'm unfunny?
damn 3:
All porn addicted gay ultrakill playing furries are
But you are one of the best at it
So feel proud
Never implied that
Just that u are the best at being unfunny
Tbf I could have just said unltrakill players, everithing else is included in that
real
but
you forgot trans girls
Well, are you one?
Silence speaks more that 1000 words they say
So I got the answer I needed
i am playing tf2 you bitch
They all say that
fuckin explode
the top idiot is cheating
and my votekick failed
I posted the music in the fanart channel and they barely cared for it lol
We truly live in a society
well their problem
horrible music tastes
my mom should be done in an hour
The French is powerful
(just like spy)
just took the best shower of my life, now we are back to work
what's there of important yet to code?
@static finch @dusty river
a bomb to kill french people
real, but i can't do that sadly
artifacts i guess
bacc, fell asleep, primordial black, unbound red
true, though most of those will be done individually
not much shared code between them
i'd prefer to use a gradient rather than static colors
sigma is still written weird, we need it to transform rather than be replaced thru destruction
at least for primordial
hmm
that's already on my list
yes
okey, so
primordial will get both black and red then i thinks
like ultrakill then?
unbound tho, hmm
maybe red and bright yellow?
we can also use multiple shades of the same color
hmm, for primordial, I guess I'd say vampirica red, shifting to a dark purple
unbound would be a red shifting shades from dark to light
we really like red, don't we?
yes lol
it's our mods sigil lol
SIGIL? OF A MOD? IN BALATRO?
NO
NOT JEN'S AGAIN
mhh idk
I feel like orange doesn't have enough Fire to it, u know?
well orange was supposed to represent literal flames
orange and red?
some of them would, some wouldn't
u can see which are which next to they're names somewhere
also, they are way more common than they should be i think lol
well, it's hard to balance this kind of effects
you could get one in the first shop lol
and have no money to buy it
tbf i think we could make so that they can only spawn after ante 4 or something
hmm, we could balance it by making them locked by ante
and maybe, they become more common after ante 8
yeah
eh
i still think my little apocalypse difficulty shenanigans are cool
and those should be the main method to get them reliably
that too, most naturally spawning ones are balanced around endless stuffs so it makes sense
dunno
they can be a side thing
yeah
I ALEADY SAID
U CAN MAKE
A NEW RARITY-
hah
i could but why should it be completely separate
what's your vision for primordials anyway
also, artifact color?
i think orange would work here fr
silver, light blue
yeah i get it
never played that
so anyway
if that rarity is so fervently desired
i got an idea for one joker
k i can code
wanted to start with silent old sanctuary but someone thinks negatives aren't broken
so uh, how do i check empty joker slots?
@night prism
well, you can just check joker slots - jokers