forked from SpectralPack/Cryptid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
28 lines (28 loc) · 1016 Bytes
/
config.lua
File metadata and controls
28 lines (28 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
return {
["Cryptid"] = {
["jimball_music"] = true, -- plays funkytown when jimball
["code_music"] = true, -- plays code music when code pack
["exotic_music"] = true, -- plays exotic music when exotic joker
["big_music"] = true, -- plays music when sufficiently high score
["alt_bg_music"] = true, -- plays alternate title screen music based on gameset
},
["family_mode"] = false, -- removes f*ck
["experimental"] = false, -- experimental stuff
["force_tooltips"] = true, -- acivates lovely patch to always show the desc
["HTTPS"] = true, -- your internet connection
["menu"] = true, -- 99% sure it makes the ace of spades in the menu glitched
}
-- force tooltips:
--[[
# Make description UI always appear if card is highlighted
[[patches]]
--[[
[patches.pattern]
target = "engine/node.lua"
pattern = "if self.children.h_popup then"
position = 'at'
match_indent = true
payload = '''
if self.children.h_popup and not (self.force_popup and self:force_popup() and Cryptid["force_tooltips"]) then
'''
]]