balatro-mods/Cartomancer-v.4.10-fix-fix/lovely/hidden-jokers.toml
2025-01-19 15:01:49 +08:00

29 lines
538 B
TOML

[manifest]
version = "1.0.0"
dump_lua = true
priority = 69
[[patches]]
[patches.pattern]
target = "cardarea.lua"
pattern = "self.children.area_uibox:draw()"
position = "after"
payload = '''
if self == G.jokers then
Cartomancer.add_visibility_controls()
end
'''
match_indent = true
[[patches]]
[patches.pattern]
target = "cardarea.lua"
pattern = "function CardArea:emplace(card, location, stay_flipped)"
position = "after"
payload = '''
if self == G.jokers then
Cartomancer.handle_joker_added(card)
end
'''
match_indent = true