#⚙・modding-general
1 messages · Page 1027 of 1
Lovely
like idk, if it would copy Even Steven, it would give mult based on how Even Steven would give mult, not just +4 mult or whatever :P
that's why i'm confused cuz i thought you'd have to create the joker to even copy it's functionality...
Patches
How do you draw a spectral card?
this is where I found everything
Go back in utdr
like how do you capture the feel of a spectral card
Yes, it works almost the same as creating a real card.
wich I'm guessing is just something for lovely to acess and ge t the names and code for everything
but then how would i copy what a joker does in a fake card? and how would i even get that without creating the card itself? anywhere i looked in the game's code when it came to copying a joker the table structure is always different in a way i can't just easily copy it and have it work 🤔
does bunco conflict with new talisman
A fake card, is almost the same as a real card, except that it is not made with the Card() function.
why is it trying to be compatable lmao
cryptid and ut/dr use differnt smods versions
speaking of cryptid time to figure out how pointer works so I don't have to edit the code of my custom deck every time I wanna do somethign different
-# (I still have 0 idea how lua works)
I mean you download an older version
Or newer
Idk
older is only UT, no DR
...so then why would i need to make a fake card if it's the same as a real card? wouldn't the difference be the same? or is there some stuff that a real card would fuck up?
ah almost
hello
well i mean, if it's a better approach, how do i adjust my code to create a fake card and use that instead? (sorry for the thousand questions btw i'm still learning about balatro modding as we speak ._.)
Hello
i'm still asking
And I still dont know
questions are better than not knowing dw
cuz my code is this rn-- if this gonna create problems then how i would change this?
I can't answer either of your questions cuase I know basicly nothing, but don't feel afraid the ask
Yes, but the second option is perhaps less confusing and more efficient I think.
well i do agree with that-- i just kinda need to know how i can poll a random common joker and then somehow copy that without actually creating it <.<
Rare Somethingcom515 sighting
Very sorry but I don't know, I think you've been in the wrong time because there's currently a conversation rn
ok :(
Come back later ?
I don't think bunco likes talisman anyways
Idk I've never played with bunco
if you're able to select a random card, you might be able to call its calculate function
ehhh ik i just don't wanna seem like an idiot for stuff that might be baby work for others :P
Also when copying a joker that doesn't calculate, you would want to use Card:calculate_joker() directly, instead of SMODS.blueprint_effect
i see 🤔
everyone's on different stages
you're (from what I'm gathering) new to modding
Some people on here (also guessing), like Somethingcom515 have expierence
then you have me who knows nothing about lua and is making guesses based on various mods source code
somehow my guess was right (i think) okay
i THINK i'm able to? i can technically just pull a joker out of the pool itself, no?
🤷
my guess was based on this random snippet
wait lemme pull up ace equillibrium cryptid code and see if I can find anything
got no idea ;-;
if context.setting_blind then
card.ability.extra.currentJoker = pseudorandom_element(G.P_JOKER_RARITY_POOLS[1], 'seed').key
end
if card.ability.extra.currentJoker then
local key = card.ability.extra.currentJoker
G.modprefix_savedjokercards = G.modprefix_savedjokercards or {}
G.modprefix_savedjokercards[card.sort_id] = G.modprefix_savedjokercards[card.sort_id] or {}
if not G.modprefix_savedjokercards[card.sort_id][key] then
local old_ability = copy_table(card.ability)
local old_center = card.config.center
local old_center_key = card.config.center_key
card:set_ability(key, nil, 'quantum')
card:update(0.016)
G.modprefix_savedjokercards[card.sort_id][key] = SMODS.shallow_copy(card)
G.modprefix_savedjokercards[card.sort_id][key].ability = copy_table(G.modprefix_savedjokercards[card.sort_id][key].ability)
for k, v in pairs({'T', 'VT', 'CT'}) do
G.modprefix_savedjokercards[card.sort_id][key][v] = copy_table(G.modprefix_savedjokercards[card.sort_id][key][v])
end
G.modprefix_savedjokercards[card.sort_id][key].config = SMODS.shallow_copy(G.modprefix_savedjokercards[card.sort_id][key].config)
card.ability = old_ability
card.config.center = old_center
card.config.center_key = old_center_key
for k, v in pairs({'juice_up', 'start_dissolve', 'remove', 'flip'}) do
G.modprefix_savedjokercards[card.sort_id][key][v] = function(_, ...)
return card[v](card, ...)
end
end
end
return G.modprefix_savedjokercards[card.sort_id][key]:calculate_joker(context)
end
Oh my god what did I come back to
Sorry for the ping
oh my o_O
I'm so glad I asked how you did your joker
This replicates a card that already exists, so there should be minimal issues.
this should also work for modded jokers right?
Yes.
alrighty, lemme try this then
this should be fine then? 🤔
No, it should be modprefix_ not .modprefix.
oh, so I shouldn't put it in another table inside of G?
hm
You're so smert
nope
cardareas only get saved if they are directly in the G table
no subtables
no nothing
huh... interesting 🤔
This is not a card area.
i would recommend just a cardarea though tbh
hrmm...
i love nothing
hold on let me send the loggg, my bad ._.
Add .key after pseudorandom_element()
hi
hi aiko
Trick Room effect that flips stun/sleep and retrigger counters 🤔
Also wrap everything except the context.setting_blind in if card.ability.extra.currentJoker
ah right, good idea :P
I'm cooked
Did yk 100,000,001 is divisible by 17
what the fuck is this
i mean 999999999 is divisible by 37 so it makes sense
still getting the same error 🤔
not as impressive but still
maybe i need to start a new run
Are you setting currentJoker = "" in your config?
yep :P
haya what in the everloving fuck is this
mugen
hey hey could i ask what i did wrong possibly? i was trying to update my mods because it all stopped working so i downloaded the new lovely and steammodded
after some digging, it's crashing at set_ability it seems
Yes, it's because you're setting currentJoker = '' in your config.
Yes.
ok! it worked! but it seems to also change the joker's sprite too
Nxkoo
ah prolly cuz i'm setting the center of the copied joker
shut up im thinking
We should make out
???
Put our Minecraft beds together
Play my mod.
I'm not okay
no rizzing in modding chat please
wait so
And then it's been awhile since I looked at it
Try card:set_ability(key, nil, 'quantum')
is it just people not playing my mod
What
or people do play it but it's stable
You might just be that goated
ah was about to try a different approach but i'll try this as well 👌
aikoyori's shenanigans is pretty based i think
It is based
stability wise
@wind turtle it seems to work as intended now! thank you for your help :)
gimme a sec
trying to find some fun gimmicks
Where is this
Physics
im NOT doing physics
LOVE2D documentations
yeah no please don't
well i have nothing to say actually since i implemented some shit myself but still
physics
Physics
Bleh
Joker that’s affected by physics
physics
shut the FUCK up
Physics
What is it copying
counter up
Physics
you'll see once the mod releases
ok but what if it never releases
what kinda question is that 😭
a hypothetical
It's never gonna release 😔
hello guys
Helo
yeah sorry guys it's canceled 😔
Good wbu
y'all are not getting gdash on balatro
Have you seen my tier list joker
I can't
yeah no sleep dude don't be like me where you stay up for hours 😭
Nah I'd win
same timezone shenanigans
I'd win
Yes
scarpped
Good morning modchat nation.
Scrapped is when I wanna make jokers
But it might possibly not be in the main game
So it's just there
Add a printer to S tier as an easter egg
Modded tier list joker
Good morning
Fire
https://github.com/icyethics/Blockbuster-Counters/wiki
Counters have a wiki now. Go do crossmod 🔫
But all the modded jokers are in J tier
You guys got a better idea what this joker could do or nah
what if you wanted to play grab bag but you had 52 random hexed cards added to your deck
Maybe something with ranks being in order from high to low but that may be Straightslop
Gayslop
That's just balatro
hol up why does that go hard
ferret!!! ! !!
gambling
Mix around
+mult based off card chip value (can be increased alongside hiker)
Pear
Is that you
Haters will say no
Yes, that's what I look like. Although sometimes I am a seal too.
You look adorable
: ]
Jokers give more mult based on rarity
Aight
roll 1 million jokers at the start of the game and use their average amounts divided by total amount as the drop rate 🔥
Uh
killing aikoshen
?
ok but i really should make letter modifier
which means sacrificing nxkoo
What about math boss blinds
math deck:
Also, when stream will be approximately
I want math puzzles
idk I'm lazy
okay this may be a very dumb question, but are the versions of steamodded and lovely listed on thunderstore up to date or are they outdated? trying to put together a thunderstore version of my mod but if the versions are off then screw that lol
Very outdated, as far as I know
Oof that's all I need to know lol rip thunderstore
Poor metherul
At least Nexus got my back. Can't believe I uploaded my first ever mod today (yippee!)!
bad news
do not use thunderstore or nexusmods for balatro
Changed the joker I see
I mean if thunderstore's stuff is outdated i can see why, but what's wrong with nexusmods?
Couldn't copy the ability of last bought card working?
use thunderstore when there's enough incentive to it (not now)
still can be outdated lol
wtf tachyon
only github is 100% up to date
nexus is almost up to date funnily enough
What about Win+D?
but yeah use the github releases
my goat
yep
couldnt be arsed since no one does it too
ortalab
how about you win D'z nuts
haya
aikoyori
crimson would kill me
wtf!
Funny I was literally looking at how you did it
i love yggdrasil giving me a cyptid-lite experice fr
You should 7 (Seven) magic bullets yourself
So I'm.like welp
sorry but need to make sure you have seen my mod sorry
my mod has cute anime girls and horses in it
And Hatoving did the sans thing so I'll be waiting for that
Mine has Teto
maybe ill look into that
Are the smods and lovely versions on nexus uploaded by meth/Aure/eremel? Or is it just someone else providing the git releases?
Waiting for it to release so
the author says it's steamo but im not sure
reminder these are the old sprites
We shilling out the ass with this one 🔥 🗣️ (alr have it installed)
can someone
PLEASE
tell me how this works
I'm not sure but on my mod page i just made sure to provide direct links anyways
which part
the joker im coding
"Played Heart suits now counts as Lucky Card"
My mod no longer has shitpost
It is truly vanilla adjacent
Check their lovely and search up the joker name
Also, nothing wrong with uploading your mod to Nexus. I just recommend making a thread here with a GitHub repo, too, as that's the community default
just replace the gambling check for an is_suit check and remove the after part
You'll see what you wanna see
PTA is numberslop
mint??
My mod is still a bit unbalanced, but I now made it work without cryptid
Read Nxkoo read
nxkoo this is why i hate you
hey thats me
Psa 10
die
paya's scoring additions
PTA works fine and balanced in my modpack
i think i should make a mechanic based around sacrifices
it doesnt WORK
get rid of the ahead jokers ez
(we don't talk about rigged shitim deck)
do u have them enabled
have you checked out gacha deck with gambling sleeve
yES
also is_suit i think crashes
huh
Just disable ahead jokers and some of legs
It does
Yes
you would need to use other_card.base.suit
Peak balatro gaming
if it doesnt crash then its never getting there
What am I holding
BALLS
this is quite the sentence to open moddingchat to
fuck I got too many neg antes and got -nan
blunder emoji simulator
stOP BLUNDGERING me
it crashes now
blundgering
thunk????
This is in the lovely Nxkoo
im following what N' said
Okay
good, change it to .base.suit == "Hearts"
You're old
Anytime
i did
L
also banned from the tcoaal server
and numerous other servers i probably can't name here
What did you do
gayyy
?????????
Gay
Wtf
eremel please accept my pr
give eremel a break
i already made an LSP for it 😭
as you should
10???!?!?!
one does not simply blunder THAT hard
can u check if i did it correctly
ok
I just realize it doesn't work with smeared joker since it's the base suit
Oh well
Still a W tho it works
fuck me 5 dimensions
god damnit
DEROGATORY
cant even post gifs here
good
why cant you WORK
Cause you suck
keep sucking on it
is that physcics
no
Sir yessir
fuck you
hi bachatro
Fym you lied
this is if (not love.window.hasMouseFocus) and love.window.hasFocus()
but i want it to check if the player alt tabbed tho
no
jSHUT Up

Rust
haiiiii :3
why not the second one
why only mouse
haaaaaaaaaaaaaiiiiiiiiiiiiiiiii
so many good screenshots from you
i mean that's what you wrote essentially

I love having sigma rizz circus from fnaf blasting in the background with pyrocynical as the back of the deck with GM_Construct as the background
this is like undertale coding
you wrote if not blahblah and blahblah and blahblah when you meant if not (blahblah and blahblah and blahblah)
does anyone know why the demo versions of the game files werent decompiled? im guessing it was to prevent notepad editing to just unlock the full game and such, but maybe it was just an oversight cause it clearly didnt stop it
(thats why the demos were taken off steam, cause u could just unlock the full game basically)
I need reward tag ideas
no infos yet
someone tried to archive the demo
no chance
unless the admin of this server can be contacted
i have one version archived 0.9.0q
im a good modder
Chat do you like harder challenges or easier ones ? Or a mix of both
so like
im confused
the “good modding” in question
hard but fun, easy but short
Hmmm
I think its the best design so far for Red++
Oh no
Hello S
Yeah we dont talk about the stone card
I love stone cards
interesting
Morning pear
hi metherul
hey peeto
METH
hey opal
We need a Purple++ Seal /j
Haiii
hiiiiiiiiii
nxkink!
Fuck you Niko
I have one
bye* nxkoo*
how are you doing friend
Purple ++ seals should give you a mega arcana pack tag when discarded
I need to sleep
drop everything and immediately open a mega arcana pack
Sorry give me a second i need to gamble
half seal
1 in 2 chance to create a double tag when scored
good! not working today bcauz sick
but not bad sick
sick af perchance
Its like that the purple++
You need the space for the 3
A pack would’ve been better honestly
Im gonna playtest it and see if its as strong as the other ++ seals
What does blue seal do
but im considering the pack tbh
okay time to the work i still need to finish to be able to feed myself, now. And then start going through every mod thread and see if I can bully people into using counters
kinda goo fr
can we get oops! all oops! all 6s
But I really like my gold++
7
pearto
8
Development resumes during my semester break
I wrote it wrong it gain 2$ after hand played if stay in hand and it reset at end of round
ice necroing smods 0.7 mod threads to recommend counters
So you can litteraly gain 26$ with one card without retrigger
Update Description
i really like that channel that does english covers of teto songs
😭
sorry
https://milkyproduxions.bandcamp.com/album/butcher-vanity-milky-p-remix finally locked in
hi chat
Hi Aven
hello aven
i need to lock in
i am going to play more adofai
had to ask ai because i am too stupid in linear algebra
i
uh
i read what i said and
i am stupid
cant believe i got myself to lock in on music
my brain did not calculate
Results of interaction with Nxkoo
oh… ai… ai koyori…
progress
im going to university for maths (i start next week actually)
wtf is linear algebra
pp...
pp
im going to university for art (i also start next week)
Are we r/anarchychess
so my joker art is gonna be so good once i get a degree
my ipad is not ipadding
/j
going to university for balatro joker art
everything you turn in is 71x95 pixels maximum
(i hope it goes well :3)
its online too so i dont need to leave my balatro dungeon
i will be travelling by train for 8 hours a week
one of us
one of us
@main path how do i do linear transformation
are you asking in general or do you have a specific problem in mind
I absolve you for your sins
i have a problerm because instead of studying i fucking mod balatro
^q^
^q^
uk government testing the emergency alert system on sunday… can’t wait for my phone to make a loud noise
these loud noises are pissing me off
-# im not a uk citizen but if i was id probably be pissed
turning alerts off runs the risk of not knowing if the planet will collapse in the next 5 days
to prove a function f is a linear transformation you just need to verify that for any two vectors u,v in the input space and all real number scalars c, f(u) + f(v) = f(u + v) and c * f(u) = f(c * u)
Chat, I am dumb.
I forgot to disable my mod and debug plus when actually playing
ok this makes sense
Computer, 500 joker concepts that i will never make
just steal the code i did for it in entropy
ctrl+f for can_use_joker
how do you do that
is useable jokers something worthwhile to pr into smods or is this too niche of a feature
cause its setup to be fully dynamic and everything
imo i think it would be nice to have in smods
code is pretty simple too since the main thing is just adding a new button
Consumables can have calculate right
Rework it
hehehe
hello, this guy is crashing my game and i cant find a way to make it work, can you guys pls help me ? (ping me)
Cryptid in 2017
Did the performance change at all?
slightly; i feel like it was a factor but obviously theres a lot going on
I mean, it being noticable's already pretty neat
well im not entirely sure because of various factors that may have influenced it (read: stacked effects) but using the philosophical deck+sleeve combo (spawn with 10 philosophical jokers) seeeeeeemed to be smoother
do you guys like crossmod ?
i like crossmod
autumn i know you do don't answer
oh
you're john crossmod
crossmod is good
Cross-mod is fun
I should figure out what I wanna do for the final Morefluff enhancements for Kino
Supervillain card, and I guess Mystery cards should be eh... Hysteria cards? Is that anything?
aikoyori can you link me to the gui tab for the hardcore challenge please
i cba
ill make it open source or something
it's some patch
and the shader ?
some flame thing
what method are you using to display it
oh god
how did u change where maximus was placed
times new roman is crazy
Worst mod (after tangents)(I need to add content)
with a hammer
maximus goes kino
Guyse i require assistance
yea
And they activate while they're held right
oh hey i found (i think) my first joker
yes?
Oh cool i have to suffer slightly less
literally just
I wonder who that could be
which lua
milky’s multiverse maximus goes kino
wait is multiverse thing out
hooks.lua iirc
milky’s ortalab multiverse maximus goes kino
the hook to add the buttons is very large and you only need one part though
and then youve got me doin whatever this is
You should download mayhem it also has a title card now
it's even funnier because I have 3 title screen things
solar ace, entropy card, and shoe late loading background colours
Oh wait i told someone to download mayhem
i have failed
Oops all mayhem
execution
Correct
Aseprite multiplayer /j
Moral even
Oops! Too Many Titlecards!

i fucking hate this tab it blocks all the menus
X0.1 mult for each titlecard card
and i have to wait like 10 seconds
benefit of using Linux where activity detection just doesn't work for no reason
i never get that menu
@wanton lintel WHAT ARE "what the fucking" CARDS???
:3
chat im debuffing u
what the fucking cards
did you not read the text
it says a calamity
IT JUST SAID A CALAMITY
and calamaties are bad
IDK THE CALAMITY MOD IS PRETTY FIRE???
wait until you see soul of soul of soul of soul of soul
do you ever shower
i just did
why are you scared of The Water
cat
oh no i made a consumable that fucks ppl over and lumiii used it
maybe with tears
draw
then reduce pixel and draw
i like the tears
i would like more contrast
so you get +6 hand size in exchange for 0 hands and discards
i wish you luck on you venture, lumiii, you have gone down an irrecoverable path.
i might make a joker based on this tiny me
but i would need to finish the ones i planned first
tiny me kinda ass but idk
New reaction image
damn

okay so i have this whole set of gamebreaking cards
how exactly would i give access to these guys without just putting them in the shop like a lunatic
(consumables)
didnt i let you use my code
smh
GHBWRUIOSDHJV
yeah but ive been lazy
aiko why are you keysmash
WTF
Does main_end not work on seals? I'm trying to make a seal that copies the last used planet or Tarot at end of round but I can't get the main_end node to display.
is there a way to delete files you put in the main branch of your github project? This shit is lowkey making me want to throw my laptop into the fucking sun
i think main_end doesnt work well on non-card stuff
why must this game be so cruel to me
kills self
what do you want to delete
entity players goes nuts bro
this is what I want to delete
Doing fake jokers family
what the fucking
what in the revo's vault
misprint - joker
misprinted - enhancement
misprint - edition
misprint seal - seal
you want to delete it from the entire history or just from the current version? because you can just delete it and commit again
im telling aikoyori you said that
holy peak
delete the entire history, i want it nuked. Its an old version of my mod that I forgot to delete, uploaded it by mistake
ok
:3
:3? cryptposting reference /j
Btw, with what mods I should add crossmod with
all of them
Never played it.
Saw one of stock jokerforge textures and made it negative
i mean it is possible but unless there's like personal information there or something i think its just easier to delete it from the branch
🔥
judgement never
thats the cryptposting sprite lmao
keep cooking
i'm trying to but it's not letting me for some reason
I just realised that 95% of my mod ideas consist of: ? cards, Fake jokers and Ace themed jokers
today will be the sacrifice of the aikoyori
if the whole mod gets art i'll fix the mod too
are you doing it from here?
Which Ace combat cover I should use for joker?
What kind of fucking
i don't think so im trying to delete it through here
What kind of fucking card would that look like
0x mult
indeed
click on the zip and then
idk the consumables are like neon green n shit
then commit changes
Add missed print
bet
oh my god your a life saver thank you :')
I love when mods interact in funny ways
aiko are you adding tributing from joyousspring
lyre you should be banned from this chat
we all have gamblig addictions here
Very funny run
dear god my old joker card temblate was very off colorwise
I am dumb and forgot to make layers
HIDEOGAMES...
Play with my Hideo Games
i dont love that
it's actually fun
is it
what if i go up here instead
find my bug in my 30000 lines code
can you somehow make a 18-way crossmod
me reading the cardsleeves code
yes try working with unorganized 1.5k lines of code
only 1.5k?
i started yesterday autumn
oh ok
i don't even have jokers it's an api mod
i was gonna say my stacked effect file alone is like 2520
i organize by item type and fucking nothing else
that's pretty stacked
any ideas for misprint seal
i think i like the idea of staring ominously from over the collection
it's staring into my soul
conflicts with where mine is
10/10 would play again
please
what ?
i mean it's not impossible
atp its probably possible if you count stacked effects....
i added furina to my mod
you're behind aikoyori
they got tooltips for that joker now? neat
PLEASE
aikoyori crashout
???
goodnotes supporting latex is really cool
- fool's gambit
when are we getting Garbshit Ortalab repainted Multiverse Maximus goes kino + fool's gambit
Milky's Ortalab Cryptposting VallKarri AikoSken Entropy Finity [idk the other mods] Multiverse Maximus Goes Kino
anyway misprint seal progress
guys
my gmail
wtf
What
aikoyori branded gmail
my favorite tech company, aikoyori
adding challenges is so fun
right off the card
5/10
peam
this is the best seal i've seen so far
just needs a bit more polishing
anyway guyse
ive gotten the s seal of approval (ba dum tiss)
i have access to google workspace
i'm pretty sure you can randomise all values and replace them with dynatext lyre
lily u ok?
i’m hanging in there
go to the doctor
im using jokerforge for beta testing to see if this shit is fun
if you need it
gm, hope u feel better :)
aikoyori i'm adding you as an easter egg
i think i am fine i just get really bad anxiety sometimes even if i don’t actually feel nervous
aikoyori i'm going to force you to add crossmod
Hii, does anyone know what could be wrong here? Its from themed jokers: retriggered and everything but the pieces of the mischievous one work?
chat
where did u get all these mods
mod tried to play a music that dont exist
Yeah but can i fix that?
Github and nexus mod, why?
I could send you the files if you wanna?
i would advise against getting balatro mods from nexus lmao
and about github
is it that one awesome balatro page
"WHY ARE YOU BUYING MODS AT THE NEXUS STORE?" /ref
its a reference
what arguments would i give my friend to make him stop editing the exe to change the textures
/ref means reference ? i thought it meant refrigerator
Where else if i may ask? And where else? Its very reliable by stardew
malverk is faster
ah yes, the casual refridgerator tone tag
smart people don't
Can i fix it? I mean it plays a laugh when i just look at the jokers
Most of them are from github tho
yes, you have to find joker's code in mod and delete that play_sound()
So i just go into the mods code?
yup
someone send the furina mods installation image
github stays on the newest update, nexus not so likely
#1209506514763522108 has a bunch of mods you might not have seen before
they are on github but they are usually not listed publicly
which sucks lmao
furina...
this is the buff of being addicted to a different dirt water (tea)
Oh i looked at it and i already have like, 500 jokers. All i want is fusion mods, or thingies that make it more roguelike (I guess? like Yggdrasil?)
i added aikoyori reference
😭
show it
500 felt like nothing now help
you won't guess what it is
sorry?
brilliant guess
i have 550 jokers and i only have 1 content mod :3
you are better at modding than me
fool seal
i have 3 content mod and my fps is 10
Fair but still to much for me (Can't stop tho)
now get joyousspring + entropy for the same screenshot with only 2 mods
My fave mod is the mewing jokers, it's so silly
Maybe i will
Then i can fex 1000 jokers i guess?
Done so after the most foolish seal, Ponsuke.
i dont know what youre making
Looking in the moddin channel again, if my laptop dies it's your fault
bingo and i need a challenge
without crossmod , i'll add crossmod challenges later
i need to work on my mods so misprinted, misprint, and misprint seal will be a part of notepad++
hmmm
i dont think there are many joyousspring memes other than you should try joyousspring which is already taken by haya
any advice as to why this makes debugplus yell at me with "DefaultLogger: Found effect table with no assigned repetitions during repetition check"
calculate = function(self, card, context)
if context.end_of_round
and context.cardarea == G.hand
and context.other_card == card
and #G.consumeables.cards + G.GAME.consumeable_buffer < G.consumeables.config.card_limit
and G.GAME.last_tarot_planet then
G.GAME.consumeable_buffer = G.GAME.consumeable_buffer + 1
G.E_MANAGER:add_event(Event({
trigger = "before",
delay = 0.0,
func = function()
SMODS.add_card({ key = G.GAME.last_tarot_planet })
G.GAME.consumeable_buffer = 0
return true
end
}))
local created_c = G.P_CENTERS[G.GAME.last_tarot_planet]
if created_c and created_c.set == "Tarot" then
return { message = localize("k_plus_tarot"), colour = G.C.SECONDARY_SET.Tarot }
elseif created_c and created_c.set == "Planet" then
return { message = localize("k_plus_planet"), colour = G.C.SECONDARY_SET.Planet }
else
return { message = localize("k_plus_consumable"), colour = G.C.GREEN }
end
end
end,
do i just need to put like, repetitions = 0 somewhere or
play joyous spring
it's my mod
add and context.individual
Another question, why won't my straight to gay mod work? It's not mine, but i really wanna be able to read the joke and not have it in my head everytime i score a straight
Its real, trust me
maybe you have mods that override each other or the straight hand
again and again
what if you guys play my mod and aikoyoris mod and the autumn circus and entropy all at the same time
i think that would be prosperous
i forgot i made this
play joyousspring it adds hanafuda hands https://balatromods.miraheze.org/wiki/JoyousSpring/Card_Modifiers
yes only hands


